mirror of
https://github.com/thoughtbot/factory_bot_rails.git
synced 2022-11-09 11:49:18 -05:00
879b47f70d
This partially addresses #293. Since rubocop generated quite a few todos, the commits addressing them are split up into a few different PRs that cover different files.
20 lines
829 B
Ruby
20 lines
829 B
Ruby
Gem::Specification.new do |s|
|
|
s.name = "factory_bot_rails"
|
|
s.version = "4.11.1"
|
|
s.authors = ["Joe Ferris"]
|
|
s.email = "jferris@thoughtbot.com"
|
|
s.homepage = "https://github.com/thoughtbot/factory_bot_rails"
|
|
s.summary = "factory_bot_rails provides integration between "\
|
|
"factory_bot and rails 3 or newer"
|
|
s.description = "factory_bot_rails provides integration between "\
|
|
"factory_bot and rails 3 or newer (currently just automatic "\
|
|
"factory definition loading)"
|
|
|
|
s.files = Dir["lib/**/*"] + %w[CONTRIBUTING.md LICENSE NEWS README.md]
|
|
s.require_paths = ["lib"]
|
|
s.executables = []
|
|
s.license = "MIT"
|
|
|
|
s.add_runtime_dependency("factory_bot", "~> 4.11.1")
|
|
s.add_runtime_dependency("railties", ">= 3.0.0")
|
|
end
|