Sha256: 08e835e099835346f5a64fdadf7b079c119f691e952739cb9b5242c727396228
Contents?: true
Size: 998 Bytes
Versions: 17
Compression:
Stored size: 998 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' gem 'mysql' gem 'mysql2', '< 0.4.0' end gem "rails", "~> 3.1.12" gemspec :path => File.expand_path(File.dirname(__FILE__) + '/../') # vim:syntax=ruby
Version data entries
17 entries across 17 versions & 2 rubygems