nested_config 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.travis.yml +8 -0
- data/README.rdoc +6 -1
- data/lib/nested_config/version.rb +1 -1
- data/nested_config.gemspec +2 -1
- metadata +19 -2
data/.travis.yml
ADDED
data/README.rdoc
CHANGED
@@ -2,6 +2,11 @@
|
|
2
2
|
|
3
3
|
Simple, static, nested application configuration
|
4
4
|
|
5
|
+
Gem[https://rubygems.org/gems/nested_config] |
|
6
|
+
Source[https://github.com/neopoly/nested_config] |
|
7
|
+
RDoc[http://rubydoc.info/github/neopoly/nested_config/master/file/README.rdoc] |
|
8
|
+
{<img src="https://secure.travis-ci.org/neopoly/nested_config.png?branch=master" alt="Build Status" />}[http://travis-ci.org/neopoly/nested_config]
|
9
|
+
|
5
10
|
== Usage
|
6
11
|
|
7
12
|
require 'nested_config'
|
@@ -15,7 +20,7 @@ Simple, static, nested application configuration
|
|
15
20
|
@config ||= MyConfig.new
|
16
21
|
end
|
17
22
|
|
18
|
-
class MyConfig < NestedConfig
|
23
|
+
class MyConfig < NestedConfig
|
19
24
|
end
|
20
25
|
end
|
21
26
|
|
data/nested_config.gemspec
CHANGED
@@ -7,7 +7,7 @@ Gem::Specification.new do |s|
|
|
7
7
|
s.version = NestedConfig::VERSION
|
8
8
|
s.authors = ["Peter Suschlik"]
|
9
9
|
s.email = ["ps@neopoly.de"]
|
10
|
-
s.homepage = "https://
|
10
|
+
s.homepage = "https://rubygems.org/gems/nested_config"
|
11
11
|
s.summary = %q{Simple, static, nested config}
|
12
12
|
s.description = %q{}
|
13
13
|
|
@@ -18,4 +18,5 @@ Gem::Specification.new do |s|
|
|
18
18
|
|
19
19
|
s.add_development_dependency "rake"
|
20
20
|
s.add_development_dependency "minitest"
|
21
|
+
s.add_development_dependency "rdoc"
|
21
22
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nested_config
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -43,6 +43,22 @@ dependencies:
|
|
43
43
|
- - ! '>='
|
44
44
|
- !ruby/object:Gem::Version
|
45
45
|
version: '0'
|
46
|
+
- !ruby/object:Gem::Dependency
|
47
|
+
name: rdoc
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
50
|
+
requirements:
|
51
|
+
- - ! '>='
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '0'
|
54
|
+
type: :development
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ! '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
46
62
|
description: ''
|
47
63
|
email:
|
48
64
|
- ps@neopoly.de
|
@@ -53,6 +69,7 @@ files:
|
|
53
69
|
- .gitignore
|
54
70
|
- .rvmrc
|
55
71
|
- .simplecov
|
72
|
+
- .travis.yml
|
56
73
|
- Gemfile
|
57
74
|
- README.rdoc
|
58
75
|
- Rakefile
|
@@ -64,7 +81,7 @@ files:
|
|
64
81
|
- test/neopoly_config_evaluate_once_test.rb
|
65
82
|
- test/nested_config_evaluate_once_test.rb
|
66
83
|
- test/nested_config_test.rb
|
67
|
-
homepage: https://
|
84
|
+
homepage: https://rubygems.org/gems/nested_config
|
68
85
|
licenses: []
|
69
86
|
post_install_message:
|
70
87
|
rdoc_options: []
|