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:
parent
c24a1da288
commit
a6e65666bf
2 changed files with 4 additions and 4 deletions
|
@ -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/
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue