Sha256: e87476ddf05c7bdb51c4a198a59ddf5bd84ea5edb315fda2ec7fa381bd30e949
Contents?: true
Size: 1.15 KB
Versions: 12
Compression:
Stored size: 1.15 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 'minitest' gem 'minitest-reporters', '< 1.0.18' gem 'minitest-debugger', :require => false gem 'rack-test' if RUBY_VERSION < '1.9.3' gem 'rake', '< 11.0' gem 'bson', '<= 1.12.5' gem 'puma', '< 3.0' else gem 'rake' gem 'bson', '< 4.0' gem 'puma', '< 3.1.0' end end if defined?(JRUBY_VERSION) gem 'sinatra', :require => false gem 'activerecord-jdbc-adapter' gem 'jdbc-postgresql' else gem 'sinatra' gem 'pg', '< 0.17' gem 'mysql' gem 'mysql2', '< 0.4.0' 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
12 entries across 12 versions & 1 rubygems