Skip to content
This repository was archived by the owner on Jan 16, 2018. It is now read-only.

Commit 80388cc

Browse files
committed
Release 2.0.0
1 parent 9b82c79 commit 80388cc

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## master
3+
## 2.0.0
44

55
- Remove deprecated SimpleConfig::Utilities.
66
- Remove deprecated SimpleConfig::ControllerMixin.

lib/simple_config/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ module Version
44
MAJOR = 2
55
MINOR = 0
66
PATCH = 0
7-
BUILD = 'dev'
7+
BUILD = nil
88

99
STRING = [MAJOR, MINOR, PATCH, BUILD].compact.join(".")
1010
end

simpleconfig.gemspec

+7-7
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22

33
Gem::Specification.new do |s|
44
s.name = "simpleconfig"
5-
s.version = "1.1.3"
5+
s.version = "2.0.0"
66

77
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8-
s.authors = ["Luke Redpath"]
9-
s.date = "2012-06-06"
8+
s.authors = ["Luke Redpath", "Simone Carletti"]
9+
s.date = "2012-06-27"
1010
s.description = "SimpleConfig is a plugin designed to make application-wide configuration settings (e.g. in a Rails app) easy to set and access in an object-oriented fashion."
11-
s.email = "[email protected]"
12-
s.files = [".gitignore", "CHANGELOG.md", "Gemfile", "MIT-LICENSE", "README.md", "Rakefile", "init.rb", "lib/simple_config.rb", "lib/simple_config/controller_mixin.rb", "lib/simple_config/utilities.rb", "lib/simpleconfig.rb", "lib/tasks/simple_config.rake", "simpleconfig.gemspec", "templates/configuration.rb", "test/controller_mixin_test.rb", "test/network_host_test.rb", "test/simple_config_functional_test.rb", "test/simple_config_test.rb", "test/test_helper.rb", "test/yaml_parser_test.rb"]
11+
12+
s.files = [".gitignore", "CHANGELOG.md", "Gemfile", "LICENSE", "README.md", "Rakefile", "lib/simple_config.rb", "lib/simple_config/railtie.rb", "lib/simple_config/version.rb", "lib/simpleconfig.rb", "simpleconfig.gemspec", "templates/configuration.rb", "test/simple_config_functional_test.rb", "test/simple_config_test.rb", "test/test_helper.rb", "test/yaml_parser_test.rb"]
1313
s.homepage = "http://github.com/lukeredpath/simpleconfig"
1414
s.require_paths = ["lib"]
15-
s.rubygems_version = "1.8.21"
15+
s.rubygems_version = "1.8.24"
1616
s.summary = "Simple object-oriented application settings for Ruby applications"
17-
s.test_files = ["test/controller_mixin_test.rb", "test/network_host_test.rb", "test/simple_config_functional_test.rb", "test/simple_config_test.rb", "test/test_helper.rb", "test/yaml_parser_test.rb"]
17+
s.test_files = ["test/simple_config_functional_test.rb", "test/simple_config_test.rb", "test/test_helper.rb", "test/yaml_parser_test.rb"]
1818

1919
if s.respond_to? :specification_version then
2020
s.specification_version = 3

0 commit comments

Comments
 (0)