+ execute "/srv/#{year}.stateofthemap.org/Gemfile" do
+ action :nothing
+ command "bundle install --deployment --jobs #{node[:cpu][:total]}"
+ cwd "/srv/#{year}.stateofthemap.org"
+ user "root"
+ group "root"
+ notifies :run, "execute[/srv/#{year}.stateofthemap.org]"
+ only_if { ::File.exist?("/srv/#{year}.stateofthemap.org/Gemfile") }
+ end
+