Sha256: 51a8111256d615c624e69dcb318e2949b589b0fe7b994c4be246b94f5b9fc490

Contents?: true

Size: 677 Bytes

Versions: 16

Compression:

Stored size: 677 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 'rubygems'
require 'rake/testtask'
require "#{File.dirname(__FILE__)}/tasks/all.rb"

task :default => :test

task :console do
  require 'pry' if ENV['ENABLE_PRY']
  require 'infinite_tracing'
  ARGV.clear
  Pry.start
end

Rake::TestTask.new do |t|
  ROOT = File.join(File.dirname(__FILE__))
  $LOAD_PATH << ROOT

  file_pattern = "#{ROOT}/**/*_test.rb"

  t.libs << "#{ROOT}/test"
  t.libs << "#{ROOT}/lib"
  t.pattern = Array(file_pattern).join(',')
  t.verbose = ENV['VERBOSE']
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
newrelic-infinite_tracing-9.17.0 Rakefile
newrelic-infinite_tracing-9.16.1 Rakefile
newrelic-infinite_tracing-9.16.0 Rakefile
newrelic-infinite_tracing-9.15.0 Rakefile
newrelic-infinite_tracing-9.14.0 Rakefile
newrelic-infinite_tracing-9.13.0 Rakefile
newrelic-infinite_tracing-9.12.0 Rakefile
newrelic-infinite_tracing-9.11.0 Rakefile
newrelic-infinite_tracing-9.10.2 Rakefile
newrelic-infinite_tracing-9.10.1 Rakefile
newrelic-infinite_tracing-9.10.0 Rakefile
newrelic-infinite_tracing-9.9.0 Rakefile
newrelic-infinite_tracing-9.8.0 Rakefile
newrelic-infinite_tracing-9.7.1 Rakefile
newrelic-infinite_tracing-9.7.0 Rakefile
newrelic-infinite_tracing-9.6.0 Rakefile