Greg Karékinian 4fb5390f9b Update cookbooks
* Replace old nginx cookbook with new chef_nginx cookbooks
* Update application cookbook
2017-04-28 11:59:11 +02:00

10 lines
321 B
Ruby

if defined?(ChefSpec)
def install_xcode_command_line_tools(resource_name)
ChefSpec::Matchers::ResourceMatcher.new(:xcode_command_line_tools, :install, resource_name)
end
def install_build_essential(resource_name)
ChefSpec::Matchers::ResourceMatcher.new(:build_essential, :install, resource_name)
end
end