Sha256: 5883207ed598d514d6e070bc03be965b602c7c093fcfd80df31f5444756ccb1b
Contents?: true
Size: 785 Bytes
Versions: 9
Compression:
Stored size: 785 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
Version data entries
9 entries across 9 versions & 2 rubygems