Sha256: 1e3ce6930a47d1974f953f806af9a3dab4844eb91dafd61f080329a2c6559c45
Contents?: true
Size: 1.65 KB
Versions: 8
Compression:
Stored size: 1.65 KB
Contents
gem 'resque', :require => "resque/server" say_wizard 'Applying fix suggested in https://github.com/defunkt/resque/pull/403...' append_file "Rakefile", "\ntask 'resque:setup' => :environment # for https://github.com/defunkt/resque/pull/403\n" if scroll? "eycloud_recipes_on_deploy" gem 'eycloud-recipe-resque', :group => :eycloud create_file "config/initializers/resque.rb", <<-RUBY resque_yml = File.expand_path('../../resque.yml', __FILE__) if File.exist?(resque_yml) Resque.redis = YAML.load_file(resque_yml)["redis_uri"] end RUBY end after_bundler do say_wizard 'Adding resque.rake task to lib/tasks' create_file "lib/tasks/resque.rake", <<-RAKE require 'resque/tasks' RAKE route %Q{match "/resque/#{config['resque_admin_secret']}", :to => Resque::Server, :anchor => false} if scroll? "eycloud_recipes_on_deploy" say_wizard 'Installing deploy hooks to restart resque after deploys' run "touch deploy/before_restart.rb" append_file "deploy/before_restart.rb", <<-RUBY on_app_servers_and_utilities do node[:applications].each do |app_name, data| sudo 'echo "sleep 20 && monit -g \#{app_name}_resque restart all" | at now' end end RUBY append_file "deploy/cookbooks/main/recipes/default.rb", "\nrequire_recipe 'resque'\n" end end __END__ name: Resque description: Add Resque to handle background jobs author: drnic website: https://github.com/defunkt/resque requires: [redis] run_after: [redis, eycloud_recipes_on_deploy] category: worker tags: [background, worker] exclusive: worker config: - resque_admin_secret: type: string prompt: "Enter a secret string for the route /resque/YOUR-SECRET-STRING:"
Version data entries
8 entries across 8 versions & 1 rubygems