Sha256: 1912e065d9f5cb161fca51b1f7da41443cfdc88028093e5f5aa163c29f498b8f
Contents?: true
Size: 515 Bytes
Versions: 36
Compression:
Stored size: 515 Bytes
Contents
# encoding: utf-8 # This file is distributed under New Relic's license terms. # See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details. set :application, 'test' # Since Capistrano 3 doesn't allow settings direct from command-line, add any # settings we want to conditionally toggle from tests in the following manner. ENV.keys.each do |key| if key.match(/NEWRELIC_CAPISTRANO_/) name = key.gsub('NEWRELIC_CAPISTRANO_', '').downcase set "newrelic_#{name}".to_sym, ENV[key] end end
Version data entries
36 entries across 36 versions & 2 rubygems