The ruby block device does not have a default action, even though the wiki says it does.
ruby_block "foo" do
block do
...
end
end
Will not execute, but:
ruby_block "foo" do
block do
...
end
action :create
end
Will.
Description
The ruby block device does not have a default action, even though the wiki says it does.
ruby_block "foo" do
block do
...
end
end
Will not execute, but:
ruby_block "foo" do
block do
...
end
action :create
end
Will.
Setting this to a blocker, as we can't release 0.8.0 without it being fixed.