Sha256: 4274b0ab94dd9e2c2629ab0e9827e7e42ff54175c96c4c489bb29afd0b1c44b7
Contents?: true
Size: 611 Bytes
Versions: 6
Compression:
Stored size: 611 Bytes
Contents
# For testing against different releases of Rails. This is in a # separate fragment so that it can be sourced from the test # application's Gemfile in addition to the main development Gemfile. if ENV['RAILS_VERSION'] case ENV['RAILS_VERSION'] when /3.0$/ gem 'rails', '~> 3.0.15' when /3.1$/ gem 'rails', '~> 3.1.0' # A JS runtime is required for Rails 3.1+ gem 'therubyracer', '~> 0.10.2' when /3.2$/ gem 'rails', '~> 3.2.0' # A JS runtime is required for Rails 3.1+ gem 'therubyracer', '~> 0.10.2' else fail "Unknown Rails version #{ENV['RAILS_VERSION']}" end end
Version data entries
6 entries across 6 versions & 2 rubygems