Sha256: 48fa866c5a7309c35ace525532dbd4f58385a69dd8e7df66ed4a65662a452776

Contents?: true

Size: 885 Bytes

Versions: 3

Compression:

Stored size: 885 Bytes

Contents

source "https://rubygems.org"

group :development, :test do
  gem 'rake'
  gem 'minitest'
  gem 'minitest-reporters', '< 1.0.18'
  gem 'minitest-debugger', :require => false
  gem 'mocha'
  gem 'rack-test'
  gem 'puma' #, '< 3.1.0'
  if RUBY_VERSION < '1.9.3'
    gem 'bson', '<= 1.12.3'
  else
    gem 'bson', '< 4.0'
  end
end

# New mime-types/mime-types-data requires ruby 2.0
if RUBY_VERSION < '2.0'
  # these gems dropped suport for < ruby version 2.0
  gem 'json', '< 2.0.0'
end

if defined?(JRUBY_VERSION)
  gem 'sinatra', :require => false
else
  gem 'sinatra'
end

if RUBY_VERSION > '1.9.3'
  gem "grape"

  if defined?(JRUBY_VERSION)
    # Limit padrino gem under JRuby as version 0.13.0 throws
    # a bundler load error
    gem "padrino", '< 0.13.0'
  else
    gem 'padrino'
  end
end


gemspec :path => File.expand_path(File.dirname(__FILE__) + '/../')
# vim:syntax=ruby

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
appoptics_apm-4.0.3 gemfiles/frameworks.gemfile
appoptics_apm-4.0.2 gemfiles/frameworks.gemfile
appoptics_apm-4.0.1-x86_64-linux gemfiles/frameworks.gemfile