Sha256: a1ece367795cf0f1a6e418cdec1856793bbc34328469b769c97bd0514fb7bdc0
Contents?: true
Size: 1.33 KB
Versions: 4
Compression:
Stored size: 1.33 KB
Contents
require 'capistrano' module Opbeat module Capistrano def self.load_into(configuration) configuration.load do after "deploy", "opbeat:notify" namespace :opbeat do desc "Notifies Opbeat of new deployments" task :notify, :except => { :no_release => true } do scm = fetch(:scm) if scm.to_s != "git" puts "Skipping Opbeat deployment notification because scm is not git." next end branches = capture("cd #{current_release}; /usr/bin/env git branch --contains #{current_revision}").split if branches.length == 1 branch = branch[0].sub("* ") else branch = nil end notify_command = "cd #{current_release}; REV=#{current_revision} " notify_command << "BRANCH=#{branch} " if branch rails_env = fetch(:rails_env, "production") notify_command << "RAILS_ENV=#{rails_env} " executable = fetch(:rake, 'bundle exec rake ') notify_command << "#{executable} opbeat:deployment" capture notify_command, :once => true end end end end end end if Capistrano::Configuration.instance Opbeat::Capistrano.load_into(Capistrano::Configuration.instance) end
Version data entries
4 entries across 4 versions & 1 rubygems