Sha256: 12979e86fa7daf0b8e7ee1636b40e5b0ecff10be6213d4f9c56b28cd6dac25dc

Contents?: true

Size: 669 Bytes

Versions: 8

Compression:

Stored size: 669 Bytes

Contents

# This file is distributed under New Relic's license terms.
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
# frozen_string_literal: true

require 'capistrano/framework'
require_relative 'helpers/send_deployment'

namespace :newrelic do
  include SendDeployment
  # notifies New Relic of a deployment
  desc "Record a deployment in New Relic (newrelic.com)"
  task :notice_deployment do
    if fetch(:newrelic_role)
      on roles(fetch(:newrelic_role)) do
        send_deployment_notification_to_newrelic
      end
    else
      run_locally do
        send_deployment_notification_to_newrelic
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
newrelic_rpm-9.0.0 lib/new_relic/recipes/capistrano3.rb
newrelic_rpm-8.16.0 lib/new_relic/recipes/capistrano3.rb
newrelic_rpm-8.15.0 lib/new_relic/recipes/capistrano3.rb
newrelic_rpm-8.14.0 lib/new_relic/recipes/capistrano3.rb
newrelic_rpm-8.13.1 lib/new_relic/recipes/capistrano3.rb
newrelic_rpm-8.13.0 lib/new_relic/recipes/capistrano3.rb
newrelic_rpm-8.12.0 lib/new_relic/recipes/capistrano3.rb
newrelic_rpm-8.11.0 lib/new_relic/recipes/capistrano3.rb