Sha256: ecdf87a867c2f4a34ab0323b6470097495cd395966e410848912096bb3e14f43
Contents?: true
Size: 1.07 KB
Versions: 2
Compression:
Stored size: 1.07 KB
Contents
source "https://rubygems.org" if RUBY_VERSION < '1.9.3' # i18n 0.7.0 dropped support for Ruby 1.9.2 and older. ActiveSupport # depends on i18n 0.7.0 since v 4.0.5. For < 1.9.2 Ruby support, lock # down to these versions to maintain functionality. gem 'i18n', '< 0.7.0' gem 'activesupport', '< 4.0' end if RUBY_VERSION < '2.0.0' # rack-cache dropped support for Ruby 1.9 gem 'rack-cache', '1.2' end group :development, :test do gem 'rake' gem 'minitest' gem 'minitest-reporters', '< 1.0.18' gem 'minitest-debugger', :require => false gem 'rack-test' if RUBY_VERSION < '1.9.3' gem 'bson', '<= 1.12.3' gem 'puma', '< 3.0' else gem 'bson', '< 4.0' gem 'puma' end end if defined?(JRUBY_VERSION) gem 'sinatra', :require => false gem 'activerecord-jdbc-adapter' gem 'jdbc-postgresql' else gem 'sinatra' gem 'pg', '< 0.17' end if RUBY_VERSION < '1.9' # Newer Rails is incompatible with Ruby 1.8.7 gem "rails", "3.2.19" else gem "rails", "~> 3.2.22" end gemspec :path => File.expand_path(File.dirname(__FILE__) + '/../') # vim:syntax=ruby
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
traceview-3.6.0-java | gemfiles/rails32.gemfile |
traceview-3.6.0 | gemfiles/rails32.gemfile |