diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-01-07 01:00:16 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-01-07 01:00:16 -0300 |
commit | 6cb70240df0d45afc9ac05d0c80c230a36f2846f (patch) | |
tree | 8b55b4d524f4023a53bbac31369e1f54502dabb4 /Gemfile | |
parent | 8f92edb2b4b6beb5c778283be7cbcef6bf7e596c (diff) | |
download | rails-6cb70240df0d45afc9ac05d0c80c230a36f2846f.tar.gz rails-6cb70240df0d45afc9ac05d0c80c230a36f2846f.tar.bz2 rails-6cb70240df0d45afc9ac05d0c80c230a36f2846f.zip |
Only use old i18n when version is not compatible
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -17,8 +17,10 @@ else gem 'journey' end -gem 'i18n', '~> 0.6.11' -gem 'test-unit', '~> 3.0' +if RUBY_VERSION < '1.9.3' + gem 'i18n', '~> 0.6.11' +end +gem 'test-unit', '~> 3.0' # This needs to be with require false to avoid # it being automatically loaded by sprockets |