1
0
Fork 0
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:
ohbarye 2017-10-22 01:13:10 +09:00
parent 5dc306cca7
commit 3f6ff8b06d

View file

@ -2,6 +2,6 @@
source "https://rubygems.org"
gem "rails", ">= 5.0.0.racecar1", "< 5.1"
gem "rails", "~> 5.0.0"
gemspec :path => "../"