opscode-mixlib-config 1.0.8 → 1.0.9
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.yml +1 -1
- data/lib/mixlib/config.rb +1 -1
- metadata +2 -2
data/VERSION.yml
CHANGED
data/lib/mixlib/config.rb
CHANGED
@@ -118,7 +118,7 @@ module Mixlib
|
|
118
118
|
#
|
119
119
|
def internal_set(method_symbol,value)
|
120
120
|
method_name = method_symbol.id2name
|
121
|
-
if self.public_methods.include?("#{method_name}=")
|
121
|
+
if (self.public_methods - ["[]="]).include?("#{method_name}=")
|
122
122
|
self.send("#{method_name}=", value)
|
123
123
|
else
|
124
124
|
@@configuration[method_symbol] = value
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: opscode-mixlib-config
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Opscode, Inc.
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-06-
|
12
|
+
date: 2009-06-25 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies: []
|
15
15
|
|