From a2cf3027e24c20e7068717bf885fa7eaacf63d17 Mon Sep 17 00:00:00 2001 From: Alexandr Borisov Date: Wed, 18 May 2016 12:09:14 +0300 Subject: [PATCH] fixed gem mime-types version for 1.9.3 and JRuby --- Gemfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile b/Gemfile index 886a406..1e695dc 100644 --- a/Gemfile +++ b/Gemfile @@ -8,8 +8,8 @@ end gem 'jquery-rails' gem 'jquery-ui-rails' -if ENV['RAILS_VERSION'] == '~> 3.2.0' && (RUBY_VERSION == '1.9.3' || defined?(JRUBY_VERSION)) - gem 'mime-types-data', '3.2015.1120' +if RUBY_VERSION == '1.9.3' || defined?(JRUBY_VERSION) + gem 'mime-types', '2.6.2' end if defined?(JRUBY_VERSION)