Sha256: b0a67c97c54651e2f01e7004ef3f99ede9d80de55f13adb840cdaab2b0824ef6
Contents?: true
Size: 1.21 KB
Versions: 4
Compression:
Stored size: 1.21 KB
Contents
if RUBY_VERSION >= '1.9.3' gemfile <<-RB gem 'rails', '~>4.1.0' # Multiverse has an incompatibility with Minitest 5.3.0, so lock here for # now gem 'minitest', '5.2.3' # Load error with beta haml + rails, so hold require until test needs it. gem 'haml', '~>4.1.0.beta1', :require => false RB gemfile <<-RB gem 'rails', '~>4.0.4' gem 'haml', '4.0.2' # Getting load issues with haml 4.0.3 RB end gemfile <<-RB gem 'rails', '~>3.2.16' gem 'haml', '4.0.2' # Getting load issues with haml 4.0.3 gem 'minitest_tu_shim', :require => false RB gemfile <<-RB gem 'rails', '~>3.1.12' gem 'haml', '4.0.2' # Getting load issues with haml 4.0.3 gem 'minitest_tu_shim', :require => false RB gemfile <<-RB gem 'rails', '~>3.0.20' gem 'haml', '4.0.2' # Getting load issues with haml 4.0.3 gem 'minitest_tu_shim', :require => false RB if RUBY_VERSION <= '1.9.3' && (!defined?(RUBY_ENGINE) || RUBY_ENGINE != 'jruby') gemfile <<-RB gem 'newrelic_rpm', :require => false, :path => File.expand_path('../../../../') gem 'rails', '~> 2.3.18' gem 'haml', '~> 3.1.0' # last haml version that supports Rails 2 gem 'minitest_tu_shim', :require => false gem 'sqlite3' RB end
Version data entries
4 entries across 4 versions & 1 rubygems