options "--format-executable"
end
- file "/usr/lib/ruby/1.8/rack.rb" do
- action :delete
- end
-
- declare_resource :directory, "/usr/lib/ruby/1.8/rack" do
- action :delete
- recursive true
+ gem_package "bundler#{new_resource.ruby}" do
+ package_name "pkg-config"
+ gem_binary "gem#{new_resource.ruby}"
end
declare_resource :directory, rails_directory do
user new_resource.user
group new_resource.group
notifies :run, "execute[#{rails_directory}/Gemfile]"
+ notifies :run, "execute[#{rails_directory}/app/assets/javascripts/i18n]"
notifies :run, "execute[#{rails_directory}/public/assets]"
notifies :delete, "file[#{rails_directory}/public/export/embed.html]"
- notifies :run, "execute[#{rails_directory}]"
+ notifies :restart, "passenger_application[#{rails_directory}]"
end
declare_resource :directory, "#{rails_directory}/tmp" do
:name => new_resource.database_name,
:username => new_resource.database_username,
:password => new_resource.database_password
- notifies :run, "execute[#{rails_directory}]"
+ notifies :restart, "passenger_application[#{rails_directory}]"
end
application_yml = edit_file "#{rails_directory}/config/example.application.yml" do |line|
group "root"
environment "NOKOGIRI_USE_SYSTEM_LIBRARIES" => "yes"
subscribes :run, "gem_package[bundler#{new_resource.ruby}]"
- notifies :run, "execute[#{rails_directory}]"
+ notifies :restart, "passenger_application[#{rails_directory}]"
end
execute "#{rails_directory}/db/migrate" do
user new_resource.user
group new_resource.group
subscribes :run, "git[#{rails_directory}]"
- notifies :run, "execute[#{rails_directory}]"
+ notifies :restart, "passenger_application[#{rails_directory}]"
only_if { new_resource.run_migrations }
end
+ execute "#{rails_directory}/app/assets/javascripts/i18n" do
+ action :nothing
+ command "bundle#{new_resource.ruby} exec rake i18n:js:export"
+ environment "RAILS_ENV" => "production"
+ cwd rails_directory
+ user new_resource.user
+ group new_resource.group
+ notifies :run, "execute[#{rails_directory}/public/assets]"
+ end
+
execute "#{rails_directory}/public/assets" do
action :nothing
command "bundle#{new_resource.ruby} exec rake assets:precompile"
cwd rails_directory
user new_resource.user
group new_resource.group
- notifies :run, "execute[#{rails_directory}]"
+ notifies :restart, "passenger_application[#{rails_directory}]"
end
file "#{rails_directory}/public/export/embed.html" do
action :nothing
end
- execute rails_directory do
- action :nothing
- command "passenger-config restart-app --ignore-app-not-running #{rails_directory}"
- user "root"
- group "root"
+ passenger_application rails_directory do
only_if { ::File.exist?("/usr/bin/passenger-config") }
end
end
action :restart do
- execute rails_directory do
- action :run
- command "passenger-config restart-app --ignore-app-not-running #{rails_directory}"
- user "root"
- group "root"
+ passenger_application rails_directory do
+ action :restart
end
end