We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6074cde commit 6e55900Copy full SHA for 6e55900
.travis.yml
@@ -2,7 +2,7 @@ script: bundle exec rspec spec
2
env:
3
matrix:
4
- RAILS=4.0.13
5
- - RAILS=4.1.5
+ - RAILS=4.1.15
6
- RAILS=4.2.6
7
rvm:
8
- 1.9.3
Gemfile
@@ -16,5 +16,9 @@ group :test do
16
gem 'capybara'
17
gem 'selenium-webdriver'
18
gem 'poltergeist'
19
- gem "mime-types", (RUBY_VERSION >= "2.0" ? "~> 3.0" : "~> 2.99")
+ if RUBY_VERSION >= '2.0'
20
+ gem 'mime-types', '~> 3.0'
21
+ else
22
+ gem 'mime-types', '< 3.0.0'
23
+ end
24
end
0 commit comments