mirror of
https://github.com/awesome-print/awesome_print
synced 2023-03-27 23:22:34 -04:00
Fix rails version to pass tests
With `gem "rails", ">= 5.0.0.racecar1", "< 5.1"`, it installs not `5.0.x` but `5.1.0rc2`. So `activerecord_5_0?` returns `false` then some tests fail.
This commit is contained in:
parent
5dc306cca7
commit
3f6ff8b06d
1 changed files with 1 additions and 1 deletions
|
@ -2,6 +2,6 @@
|
|||
|
||||
source "https://rubygems.org"
|
||||
|
||||
gem "rails", ">= 5.0.0.racecar1", "< 5.1"
|
||||
gem "rails", "~> 5.0.0"
|
||||
|
||||
gemspec :path => "../"
|
||||
|
|
Loading…
Reference in a new issue