Skip to content

Commit

Permalink
Merge pull request #231 from gerrywastaken/fix-travis-mime-types-issue
Browse files Browse the repository at this point in the history
Fix Travis mime-types dependency issue
  • Loading branch information
gerrywastaken committed May 6, 2016
2 parents 7234e44 + 0e34116 commit 28901dc
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,26 @@ end

appraise 'rails-4.0' do
gem 'rails', '~> 4.0.0'

# The last version that doesn't need Ruby 2.0 and works with version 4.0 of
# Rails. This addresses a build problem with Travis for version 1.9.3 of Ruby
gem 'mime-types', '2.6.2', :platforms => :ruby_19
end

appraise 'rails-4.1' do
gem 'rails', '~> 4.1.0'

# The last version that doesn't need Ruby 2.0 and works with version 4.1 of
# Rails. This addresses a build problem with Travis for version 1.9.3 of Ruby
gem 'mime-types', '2.6.2', :platforms => :ruby_19
end

appraise 'rails-4.2' do
gem 'rails', '~> 4.2.0'

# The last version that doesn't need Ruby 2.0 and works with version 4.2 of
# Rails. This addresses a build problem with Travis for version 1.9.3 of Ruby
gem 'mime-types', '2.6.2', :platforms => :ruby_19
end

appraise 'mongoid-3.0' do
Expand Down
1 change: 1 addition & 0 deletions gemfiles/rails_4.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
source "https://rubygems.org"

gem "rails", "~> 4.0.0"
gem "mime-types", "2.6.2", :platforms => :ruby_19

gemspec :path => "../"
1 change: 1 addition & 0 deletions gemfiles/rails_4.1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
source "https://rubygems.org"

gem "rails", "~> 4.1.0"
gem "mime-types", "2.6.2", :platforms => :ruby_19

gemspec :path => "../"
1 change: 1 addition & 0 deletions gemfiles/rails_4.2.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
source "https://rubygems.org"

gem "rails", "~> 4.2.0"
gem "mime-types", "2.6.2", :platforms => :ruby_19

gemspec :path => "../"

0 comments on commit 28901dc

Please sign in to comment.