spiderfw 0.5.2 → 0.5.3
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/spiderfw/config/configuration.rb +1 -1
- data/spider.gemspec +1 -1
- metadata +1 -1
@@ -97,7 +97,7 @@ module Spider
|
|
97
97
|
end
|
98
98
|
elsif (!@options[key][:params] || @options[key][:params][:type] != Hash) # sub conf
|
99
99
|
@values[key] ||= Configuration.new(@prefix+".#{key}")
|
100
|
-
val.each { |k, v| self[key]
|
100
|
+
val.each { |k, v| self[key].set(k.to_s, v) }
|
101
101
|
else
|
102
102
|
self[key] = val
|
103
103
|
end
|
data/spider.gemspec
CHANGED