我正在尝试编写一个扩展 Execute 资源的 LWRP。我希望notifies
LWRP 中的属性/方法传递给notifies
Execute 资源的方法
在我拥有的资源中:
attribute :notifies, :kind_of => Array, :default => []
在我有的提供者中
execute something do
...
r.notifies.empty? ? nil : notifies(*r.notifies)
end
作为回报得到一个参数错误:
ArgumentError: wrong number of arguments (3 for 1)
感谢任何提示或提示。