-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6711903
commit 4f83875
Showing
4 changed files
with
11 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,16 +2,18 @@ | |
|
||
Gem::Specification.new do |s| | ||
s.name = 'configsl' | ||
s.version = '0.1.0' | ||
s.version = '1.0.0' | ||
s.licenses = ['MIT'] | ||
s.summary = 'ConfigSL is a simple configuration DSL.' | ||
s.summary = 'A simple DSL for declarative configuration in ruby.' | ||
s.description = 'A simple, modular, extensible DSL for configuration.' | ||
s.authors = ['James I. Armes'] | ||
s.email = '[email protected]' | ||
s.files = Dir['lib/**/*'] + Dir['Gemfile'] | ||
s.extra_rdoc_files = %w[README.md CHANGELOG.md] | ||
s.homepage = 'https://github.com/jamesiarmes/configsl' | ||
s.metadata = { | ||
'bug_tracker_uri' => 'https://github.com/jamesiarmes/configsl/issues', | ||
'changelog_uri' => 'https://github.com/jamesiarmes/configsl/blob/main/CHANGELOG.md', | ||
'homepage_uri' => s.homepage, | ||
'rubygems_mfa_required' => 'true', | ||
'source_code_uri' => 'https://github.com/jamesiarmes/configsl' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,5 +3,5 @@ | |
require_relative 'configsl/config' | ||
|
||
module ConfigSL | ||
VERSION = '0.1.0' | ||
VERSION = '1.0.0' | ||
end |