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

Bump to rails 5 in gemspec

factory_bot_rails 6 will not support rails 4.2
This commit is contained in:
Daniel Colson 2020-04-25 22:45:31 -04:00
parent c24a1da288
commit a6e65666bf
No known key found for this signature in database
GPG key ID: 88A364BBE77B1353
2 changed files with 4 additions and 4 deletions

View file

@ -3,7 +3,7 @@ PATH
specs: specs:
factory_bot_rails (5.1.1) factory_bot_rails (5.1.1)
factory_bot (~> 5.1.0) factory_bot (~> 5.1.0)
railties (>= 4.2.0) railties (>= 5.0.0)
GEM GEM
remote: https://rubygems.org/ remote: https://rubygems.org/

View file

@ -5,9 +5,9 @@ Gem::Specification.new do |s|
s.email = "jferris@thoughtbot.com" s.email = "jferris@thoughtbot.com"
s.homepage = "https://github.com/thoughtbot/factory_bot_rails" s.homepage = "https://github.com/thoughtbot/factory_bot_rails"
s.summary = "factory_bot_rails provides integration between "\ s.summary = "factory_bot_rails provides integration between "\
"factory_bot and rails 4.2 or newer" "factory_bot and rails 5.0 or newer"
s.description = "factory_bot_rails provides integration between "\ s.description = "factory_bot_rails provides integration between "\
"factory_bot and rails 4.2 or newer" "factory_bot and rails 5.0 or newer"
s.files = Dir["lib/**/*"] + %w[CONTRIBUTING.md LICENSE NEWS.md README.md] s.files = Dir["lib/**/*"] + %w[CONTRIBUTING.md LICENSE NEWS.md README.md]
s.require_paths = ["lib"] s.require_paths = ["lib"]
@ -15,5 +15,5 @@ Gem::Specification.new do |s|
s.license = "MIT" s.license = "MIT"
s.add_runtime_dependency("factory_bot", "~> 5.1.0") s.add_runtime_dependency("factory_bot", "~> 5.1.0")
s.add_runtime_dependency("railties", ">= 4.2.0") s.add_runtime_dependency("railties", ">= 5.0.0")
end end