Hope to save people some time here. This gem no longer works with the newer releases of Chef.
Using the given example I got this error:
ArgumentError: wrong number of arguments (3 for 2)
This is caused by line 23 in /lib/chef-deploy.rb
class Deploy < Chef::Resource
```
def initialize(name, collection=nil, node=nil)
super(name, collection, node)
```
The super method, defined in Chef itself, now expects different arguments.
Hope to save people some time here. This gem no longer works with the newer releases of Chef.
Using the given example I got this error:
This is caused by line 23 in /lib/chef-deploy.rb
The super method, defined in Chef itself, now expects different arguments.