Sha256: 57592452cf20fd99e6cf701ade4e333566fa41a1d84dcbec52683f57d74b88f5
Contents?: true
Size: 669 Bytes
Versions: 24
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
24 entries across 24 versions & 1 rubygems