File: factory_bot_rails.gemspec

package info (click to toggle)
ruby-factory-bot-rails 5.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 272 kB
  • sloc: ruby: 462; makefile: 6; sh: 4
file content (19 lines) | stat: -rw-r--r-- 750 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Gem::Specification.new do |s|
  s.name        = "factory_bot_rails"
  s.version     = "5.1.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 4.2 or newer"
  s.description = "factory_bot_rails provides integration between "\
                  "factory_bot and rails 4.2 or newer"

  s.files = Dir["lib/**/*"] + %w[CONTRIBUTING.md LICENSE NEWS.md README.md]
  s.require_paths = ["lib"]
  s.executables   = []
  s.license       = "MIT"

  s.add_runtime_dependency("factory_bot", "~> 5.1.0")
  s.add_runtime_dependency("railties", ">= 4.2.0")
end