Sha256: d663813423663d895e3f022de91702b74157700e2009f6dfd0fe137241ff453f
Contents?: true
Size: 801 Bytes
Versions: 2
Compression:
Stored size: 801 Bytes
Contents
if RUBY_VERSION >= '1.9.3' # padrino v0.12.0 dropped support for ruby 1.8.7 and requres ruby 1.9.3 or greater gemfile <<-RB gem 'activesupport', '~> 3' gem 'padrino', '~> 0.13.0' gem 'rack-test', :require => 'rack/test' RB end if RUBY_VERSION > '1.8.7' # padrino-core 0.11.0 requires http_router 0.11.0 which has syntax errors in 1.8.7. gemfile <<-RB gem 'activesupport', '~> 3' gem 'padrino', '~> 0.11.0' gem 'rack-test', :require => 'rack/test' gem 'i18n', '< 0.7' if RUBY_VERSION < '1.9.3' # i18n >= 0.7.0 only works on Ruby 1.9.3 and newer RB end gemfile <<-RB gem 'activesupport', '~> 3' gem 'padrino', '~> 0.10.0' gem 'rack-test', :require => 'rack/test' gem 'i18n', '< 0.7' if RUBY_VERSION < '1.9.3' # i18n >= 0.7.0 only works on Ruby 1.9.3 and newer RB # vim: ft=ruby
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
newrelic_rpm-3.18.1.330 | test/multiverse/suites/padrino/Envfile |
newrelic_rpm-3.18.0.329 | test/multiverse/suites/padrino/Envfile |