Skip to content

Commit

Permalink
Restrict activemodel on travis to <4.0.0
Browse files Browse the repository at this point in the history
ActiveModel 4.0.0+ doesn't work on ruby 1.8.7.  This could be
conditional so that ruby 1.8.7 uses <4.0.0 and other ruby versions
are not restricted, but looking at Gemfile(5) I'm not sure how
to do that so that jruby 1.8 mode uses <4.0.0 and jruby 1.9 mode
is not restricted.
  • Loading branch information
jeremyevans committed Jun 27, 2013
1 parent 94632a3 commit 04c6d3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.gemfile
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ gem 'rspec', '<2.10.0'


# Plugin/Extension Dependencies # Plugin/Extension Dependencies
gem 'tzinfo' gem 'tzinfo'
gem 'activemodel' gem 'activemodel', '<4.0.0'
gem 'nokogiri', '<1.6.0' gem 'nokogiri', '<1.6.0'
gem 'json' gem 'json'


Expand Down

0 comments on commit 04c6d3f

Please sign in to comment.