1
0
Fork 0
mirror of https://github.com/thoughtbot/factory_bot_rails.git synced 2022-11-09 11:49:18 -05:00

Use pessimistic version for sass-rails

Rails 6.0.0 generates a Gemfile with sass-rails at `~> 5`. Our
Appraisals need to match, or else we end up installing version 6 on CI
and the tests fail with the wrong version.
This commit is contained in:
Daniel Colson 2019-08-19 13:04:43 -04:00
parent dfeb7a66fb
commit 01051ad6ae
2 changed files with 2 additions and 2 deletions

View file

@ -36,7 +36,7 @@ appraise "rails6.0" do
gem "jbuilder"
gem "listen"
gem "puma", "~> 3.11"
gem "sass-rails"
gem "sass-rails", "~> 5"
gem "selenium-webdriver"
gem "spring"
gem "spring-watcher-listen"

View file

@ -24,7 +24,7 @@ gem "capybara"
gem "jbuilder"
gem "listen"
gem "puma", "~> 3.11"
gem "sass-rails"
gem "sass-rails", "~> 5"
gem "selenium-webdriver"
gem "spring"
gem "spring-watcher-listen"