this should restore compatibillity with ruby below 1.9.3-p125, not sure if we should hotfix this, if anyone wants to...
This commit is contained in:
parent
6ccdb40f6f
commit
bbad82c5d2
1 changed files with 1 additions and 1 deletions
|
|
@ -34,7 +34,7 @@ ARGV.each do |arg|
|
|||
var, setting_name = arg.split("=")
|
||||
setting_name = var unless setting_name
|
||||
setting = AppConfig.send(setting_name)
|
||||
setting = setting.get if setting.is_a?(Configuration::Proxy)
|
||||
setting = setting.get if setting.respond_to?(:_proxy?)
|
||||
if var != setting_name
|
||||
puts "#{var}=#{setting}"
|
||||
else
|
||||
|
|
|
|||
Loading…
Reference in a new issue