Sha256: 93b68b12eeabe9e1e5367237859f2c65b5e39aeef314ec85886bd83fbb32da35

Contents?: true

Size: 802 Bytes

Versions: 34

Compression:

Stored size: 802 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

# When installed as a plugin, this is loaded automatically.
#
# When installed as a gem, you need to add
#  require 'new_relic/recipes'
# to deploy.rb
#
# Defines newrelic:notice_deployment, which sends information about the deploy
# to New Relic. The task will run on all app release roles. If it fails, it will
# not affect the execution of subsequent tasks or cause a rollback.
#
# @api public
#

require 'capistrano/version'

if defined?(Capistrano::VERSION) && Capistrano::VERSION.to_s.split('.').first.to_i >= 3
  require 'new_relic/recipes/capistrano3'
else
  require 'new_relic/recipes/capistrano_legacy'
end

Version data entries

34 entries across 34 versions & 1 rubygems

Version Path
newrelic_rpm-9.17.0 lib/new_relic/recipes.rb
newrelic_rpm-9.16.1 lib/new_relic/recipes.rb
newrelic_rpm-9.16.0 lib/new_relic/recipes.rb
newrelic_rpm-9.15.0 lib/new_relic/recipes.rb
newrelic_rpm-9.14.0 lib/new_relic/recipes.rb
newrelic_rpm-9.13.0 lib/new_relic/recipes.rb
newrelic_rpm-9.12.0 lib/new_relic/recipes.rb
newrelic_rpm-9.11.0 lib/new_relic/recipes.rb
newrelic_rpm-9.10.2 lib/new_relic/recipes.rb
newrelic_rpm-9.10.1 lib/new_relic/recipes.rb
newrelic_rpm-9.10.0 lib/new_relic/recipes.rb
newrelic_rpm-9.9.0 lib/new_relic/recipes.rb
newrelic_rpm-9.8.0 lib/new_relic/recipes.rb
newrelic_rpm-9.7.1 lib/new_relic/recipes.rb
newrelic_rpm-9.7.0 lib/new_relic/recipes.rb
newrelic_rpm-9.6.0 lib/new_relic/recipes.rb
newrelic_rpm-9.5.0 lib/new_relic/recipes.rb
newrelic_rpm-9.4.2 lib/new_relic/recipes.rb
newrelic_rpm-9.4.1 lib/new_relic/recipes.rb
newrelic_rpm-9.4.0 lib/new_relic/recipes.rb