Sha256: cceede4b047d1aab9e1b40d4e0f363d9c71ad4e5535ee52e8127be353cf8cbd6

Contents?: true

Size: 800 Bytes

Versions: 9

Compression:

Stored size: 800 Bytes

Contents

source 'https://rubygems.org'

group :development, :test do
  gem 'rake'
  gem 'minitest', '5.9.1'
  gem 'minitest-reporters'
  gem 'minitest-debugger', :require => false
  gem 'webmock'
  gem 'puma'

  # Rack v2 dropped support for Ruby 2.2 and higher.
  if RUBY_VERSION < '2.2'
    gem 'rack', '~> 1.6'
  end
  gem 'rack-test'

  # public_suffix dropped support for Ruby 2.1 and earlier.
  gem 'public_suffix', '< 3.0'
end

group :development do
  gem 'ruby-debug',   :platforms => [:mri_18, :jruby]
  gem 'debugger',     :platform  =>  :mri_19
  gem 'stackprof'

  if RUBY_VERSION > '1.8.7'
    gem 'pry'

    if RUBY_VERSION < '2.2'
      gem 'byebug', '< 9.1.0'
      gem 'pry-byebug'
    else
      gem 'pry-byebug'
    end
  else
    gem 'pry', '0.9.12.4'
  end
end

# instana.gemspec
gemspec

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
instana-1.10.0 Gemfile
instana-1.10.0.slimfast Gemfile
instana-1.9.7 Gemfile
instana-1.9.6 Gemfile
instana-1.9.5 Gemfile
instana-1.9.4 Gemfile
instana-1.9.3 Gemfile
instana-1.9.2 Gemfile
instana-1.9.1 Gemfile