configatron 2.9.1 → 2.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +21 -0
- data/.rvmrc +2 -0
- data/.travis.yml +8 -0
- data/Gemfile +7 -0
- data/{README.textile → README.md} +59 -61
- data/Rakefile +7 -0
- data/configatron.gemspec +49 -0
- data/lib/configatron/store.rb +11 -3
- data/lib/configatron/version.rb +1 -1
- data/spec/configatron/proc_spec.rb +67 -0
- data/spec/configatron/rails_spec.rb +66 -0
- data/spec/lib/class_spec.rb +45 -0
- data/spec/lib/complex.yml +13 -0
- data/spec/lib/configatron_spec.rb +613 -0
- data/spec/lib/futurama.yml +6 -0
- data/spec/lib/lost.yml +14 -0
- data/spec/lib/math.yml +2 -0
- data/spec/lib/merge.yml +14 -0
- data/spec/spec_helper.rb +4 -0
- data/spec/support/rails.rb +7 -0
- metadata +51 -17
data/spec/lib/lost.yml
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
others:
|
2
|
+
on_island:
|
3
|
+
ben: Benjamin Linus
|
4
|
+
richard: Richard Alpert
|
5
|
+
deceased:
|
6
|
+
goodwin: Goodwin Stanhope
|
7
|
+
mikhail: Mikhail Bakunin
|
8
|
+
survivors:
|
9
|
+
on_island:
|
10
|
+
jack: Jack Shepherd
|
11
|
+
locke: John Locke
|
12
|
+
deceased:
|
13
|
+
charlie: Charlie Pace
|
14
|
+
michael: Michael Dawson
|
data/spec/lib/math.yml
ADDED
data/spec/lib/merge.yml
ADDED
data/spec/spec_helper.rb
ADDED
metadata
CHANGED
@@ -1,19 +1,19 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: configatron
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.10.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
|
-
-
|
8
|
+
- Mark Bates
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2013-02-08 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: yamler
|
16
|
-
requirement:
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ! '>='
|
@@ -21,14 +21,29 @@ dependencies:
|
|
21
21
|
version: 0.1.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements:
|
25
|
-
|
26
|
-
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ! '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: 0.1.0
|
30
|
+
description: A powerful Ruby configuration system.
|
31
|
+
email:
|
32
|
+
- mark@markbates.com
|
27
33
|
executables: []
|
28
34
|
extensions: []
|
29
|
-
extra_rdoc_files:
|
30
|
-
- LICENSE
|
35
|
+
extra_rdoc_files: []
|
31
36
|
files:
|
37
|
+
- .gitignore
|
38
|
+
- .rvmrc
|
39
|
+
- .travis.yml
|
40
|
+
- Gemfile
|
41
|
+
- Gemfile.lock
|
42
|
+
- LICENSE
|
43
|
+
- README.md
|
44
|
+
- Rakefile
|
45
|
+
- configatron.gemspec
|
46
|
+
- lib/configatron.rb
|
32
47
|
- lib/configatron/configatron.rb
|
33
48
|
- lib/configatron/core_ext/class.rb
|
34
49
|
- lib/configatron/core_ext/kernel.rb
|
@@ -39,15 +54,23 @@ files:
|
|
39
54
|
- lib/configatron/rails.rb
|
40
55
|
- lib/configatron/store.rb
|
41
56
|
- lib/configatron/version.rb
|
42
|
-
- lib/configatron.rb
|
43
57
|
- lib/generators/configatron/install/install_generator.rb
|
44
58
|
- lib/generators/configatron/install/templates/configatron/defaults.rb
|
45
59
|
- lib/generators/configatron/install/templates/configatron/development.rb
|
46
60
|
- lib/generators/configatron/install/templates/configatron/production.rb
|
47
61
|
- lib/generators/configatron/install/templates/configatron/test.rb
|
48
62
|
- lib/generators/configatron/install/templates/initializers/configatron.rb
|
49
|
-
-
|
50
|
-
-
|
63
|
+
- spec/configatron/proc_spec.rb
|
64
|
+
- spec/configatron/rails_spec.rb
|
65
|
+
- spec/lib/class_spec.rb
|
66
|
+
- spec/lib/complex.yml
|
67
|
+
- spec/lib/configatron_spec.rb
|
68
|
+
- spec/lib/futurama.yml
|
69
|
+
- spec/lib/lost.yml
|
70
|
+
- spec/lib/math.yml
|
71
|
+
- spec/lib/merge.yml
|
72
|
+
- spec/spec_helper.rb
|
73
|
+
- spec/support/rails.rb
|
51
74
|
homepage: http://www.metabates.com
|
52
75
|
licenses: []
|
53
76
|
post_install_message:
|
@@ -62,7 +85,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
62
85
|
version: '0'
|
63
86
|
segments:
|
64
87
|
- 0
|
65
|
-
hash:
|
88
|
+
hash: 1910409013164072675
|
66
89
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
67
90
|
none: false
|
68
91
|
requirements:
|
@@ -71,11 +94,22 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
71
94
|
version: '0'
|
72
95
|
segments:
|
73
96
|
- 0
|
74
|
-
hash:
|
97
|
+
hash: 1910409013164072675
|
75
98
|
requirements: []
|
76
|
-
rubyforge_project:
|
77
|
-
rubygems_version: 1.8.
|
99
|
+
rubyforge_project:
|
100
|
+
rubygems_version: 1.8.25
|
78
101
|
signing_key:
|
79
102
|
specification_version: 3
|
80
103
|
summary: A powerful Ruby configuration system.
|
81
|
-
test_files:
|
104
|
+
test_files:
|
105
|
+
- spec/configatron/proc_spec.rb
|
106
|
+
- spec/configatron/rails_spec.rb
|
107
|
+
- spec/lib/class_spec.rb
|
108
|
+
- spec/lib/complex.yml
|
109
|
+
- spec/lib/configatron_spec.rb
|
110
|
+
- spec/lib/futurama.yml
|
111
|
+
- spec/lib/lost.yml
|
112
|
+
- spec/lib/math.yml
|
113
|
+
- spec/lib/merge.yml
|
114
|
+
- spec/spec_helper.rb
|
115
|
+
- spec/support/rails.rb
|