dynamic_configuration 0.3.5 → 0.3.6
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 +1 -1
- data/lib/dynamic_configuration.rb +2 -2
- metadata +1 -1
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.3.
|
|
1
|
+
0.3.6
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = "dynamic_configuration"
|
|
8
|
-
s.version = "0.3.
|
|
8
|
+
s.version = "0.3.6"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Jaros\u{142}aw Rzesz\u{f3}tko"]
|
|
@@ -112,8 +112,6 @@ module DynamicConfiguration
|
|
|
112
112
|
end
|
|
113
113
|
|
|
114
114
|
class Group < ::BlankSlate
|
|
115
|
-
reveal :send
|
|
116
|
-
|
|
117
115
|
attr_accessor :settings
|
|
118
116
|
|
|
119
117
|
def initialize
|
|
@@ -127,6 +125,8 @@ module DynamicConfiguration
|
|
|
127
125
|
end
|
|
128
126
|
|
|
129
127
|
class Settings < ::BlankSlate
|
|
128
|
+
reveal :send
|
|
129
|
+
|
|
130
130
|
def initialize(const_name, module_name, settings)
|
|
131
131
|
@const_name = const_name
|
|
132
132
|
@module_name = module_name
|