Sha256: 690609aca20b05dd169e959e6dd1e2d65a13ee8fa2ebcf7693969daa01eec308
Contents?: true
Size: 958 Bytes
Versions: 10
Compression:
Stored size: 958 Bytes
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' gem 'puma' if RUBY_VERSION < '1.9.3' gem 'bson', '<= 1.12.3' else gem 'bson' 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 gem "rails", "~> 3.1.12" gemspec :path => File.expand_path(File.dirname(__FILE__) + '/../') # vim:syntax=ruby
Version data entries
10 entries across 10 versions & 1 rubygems