0
我希望有人能幫助我。Ruby如何擴展接受新參數的方法
我有紅寶石此方法:
def puppetrun_oneClass!
ProxyAPI::Puppet.new({:url => puppet_proxy.url}).runSingle fqdn
end
然後我此另一種方法中調用:
def update_multiple_puppetrun_oneClass_deploy
if @hosts.map(&:puppetrun_oneClass!).uniq == [true]
notice "Successfully executed, check reports and/or log files for more details"
else
error "Some or all hosts execution failed, Please check log files for more information"
end
end
其中@hosts是主機名的陣列。
現在,我想擴展puppetrun_oneClass!接受@myDeploy參數,其中@myDeploy參數是一個包含字符串的變量。
我該怎麼做?那麼我應該如何調用修改的方法?
謝謝!
嗨@tadman!是!我的代碼現在正在工作!非常感謝! – MrTeleBird 2013-05-14 06:55:33