mirror of
https://github.com/thoughtbot/factory_bot_rails.git
synced 2022-11-09 11:49:18 -05:00
9de5e2b765
* Skip Spring version 2.1.1 Changes introduced in spring 2.1.1 (https://github.com/rails/spring/pull/621) are breaking some tests. That change was reverted in https://github.com/rails/spring/pull/629, but hasn't been released yet. Until #629 is released, this PR skips Spring version 2.1.1. * Bump to latest standard to match CI We are using the latest standard on CI. This bumps the version in the dev Gemfile to match, and fixes one violation. Co-authored-by: Daniel J. Colson <daniel.colson@hey.com>
5 lines
188 B
Text
5 lines
188 B
Text
if Rails.gem_version < Gem::Version.new('6')
|
|
gsub_file "Gemfile", /^gem 'sqlite3'$/, 'gem "sqlite3", "~> 1.3.6"'
|
|
end
|
|
|
|
gsub_file "Gemfile", /^ gem 'spring'$/, ' gem "spring", "!= 2.1.1"'
|