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