Sha256: af2ed092dce419c9d014620544fcd49d059ed125401cacdc581aff406f50bd1c
Contents?: true
Size: 832 Bytes
Versions: 1
Compression:
Stored size: 832 Bytes
Contents
# When Hoptoad is installed as a plugin this is loaded automatically. # # When Hoptoad installed as a gem, you need to add # require 'hoptoad_notifier/recipes/hoptoad' # to your deploy.rb # # Defines deploy:notify_hoptoad which will send information about the deploy to Hoptoad. # after "deploy", "deploy:notify_hoptoad" after "deploy:migrations", "deploy:notify_hoptoad" namespace :deploy do desc "Notify Hoptoad of the deployment" task :notify_hoptoad do rails_env = fetch(:rails_env, "production") local_user = ENV['USER'] || ENV['USERNAME'] notify_command = "rake hoptoad:deploy TO=#{rails_env} REVISION=#{current_revision} REPO=#{repository} USER=#{local_user}" puts "Notifying Hoptoad of Deploy (#{notify_command})" `#{notify_command}` puts "Hoptoad Notification Complete." end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
base_rails_app-0.0.1 | lib/vendor/plugins/hoptoad_notifier/recipes/hoptoad.rb |