dynamic_configuration 0.3.3 → 0.3.4
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/VERSION +1 -1
- data/dynamic_configuration.gemspec +10 -10
- data/lib/dynamic_configuration.rb +1 -1
- metadata +10 -5
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.3.
|
|
1
|
+
0.3.4
|
|
@@ -4,14 +4,14 @@
|
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
|
-
s.name =
|
|
8
|
-
s.version = "0.3.
|
|
7
|
+
s.name = "dynamic_configuration"
|
|
8
|
+
s.version = "0.3.4"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
-
s.authors = [
|
|
12
|
-
s.date =
|
|
13
|
-
s.description =
|
|
14
|
-
s.email =
|
|
11
|
+
s.authors = ["Jaros\u{142}aw Rzesz\u{f3}tko"]
|
|
12
|
+
s.date = "2013-04-03"
|
|
13
|
+
s.description = "Flexible configuration library for Ruby and Rails applications."
|
|
14
|
+
s.email = "jrzeszotko@gmail.com"
|
|
15
15
|
s.extra_rdoc_files = [
|
|
16
16
|
"LICENSE",
|
|
17
17
|
"README",
|
|
@@ -32,10 +32,10 @@ Gem::Specification.new do |s|
|
|
|
32
32
|
"spec/options/test/main.rb",
|
|
33
33
|
"spec_helper.rb"
|
|
34
34
|
]
|
|
35
|
-
s.homepage =
|
|
36
|
-
s.require_paths = [
|
|
37
|
-
s.rubygems_version =
|
|
38
|
-
s.summary =
|
|
35
|
+
s.homepage = "http://github.com/jaroslawr/dynamic_configuration"
|
|
36
|
+
s.require_paths = ["lib"]
|
|
37
|
+
s.rubygems_version = "1.8.24"
|
|
38
|
+
s.summary = "Flexible configuration library for Ruby and Rails applications."
|
|
39
39
|
|
|
40
40
|
if s.respond_to? :specification_version then
|
|
41
41
|
s.specification_version = 3
|
|
@@ -98,7 +98,7 @@ module DynamicConfiguration
|
|
|
98
98
|
@settings[mod_name.intern] ||= Settings.new(@const_name, mod_name, @modules[mod_name.intern].settings)
|
|
99
99
|
end
|
|
100
100
|
|
|
101
|
-
def respond_to_missing?(name)
|
|
101
|
+
def respond_to_missing?(name, include_private=false)
|
|
102
102
|
@settings && @settings[name]
|
|
103
103
|
end
|
|
104
104
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dynamic_configuration
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.4
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,11 +9,11 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-
|
|
12
|
+
date: 2013-04-03 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: blankslate
|
|
16
|
-
requirement:
|
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
|
17
17
|
none: false
|
|
18
18
|
requirements:
|
|
19
19
|
- - ! '>='
|
|
@@ -21,7 +21,12 @@ dependencies:
|
|
|
21
21
|
version: '0'
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
|
-
version_requirements:
|
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
26
|
+
requirements:
|
|
27
|
+
- - ! '>='
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: '0'
|
|
25
30
|
description: Flexible configuration library for Ruby and Rails applications.
|
|
26
31
|
email: jrzeszotko@gmail.com
|
|
27
32
|
executables: []
|
|
@@ -64,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
64
69
|
version: '0'
|
|
65
70
|
requirements: []
|
|
66
71
|
rubyforge_project:
|
|
67
|
-
rubygems_version: 1.8.
|
|
72
|
+
rubygems_version: 1.8.24
|
|
68
73
|
signing_key:
|
|
69
74
|
specification_version: 3
|
|
70
75
|
summary: Flexible configuration library for Ruby and Rails applications.
|