File: factory_bot_rails.gemspec

package info (click to toggle)
ruby-factory-bot-rails 6.4.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 316 kB
  • sloc: ruby: 635; makefile: 6; sh: 4
file content (22 lines) | stat: -rw-r--r-- 816 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Gem::Specification.new do |s|
  s.name = "factory_bot_rails"
  s.version = "6.4.2"
  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 5.0 or newer"
  s.description = "factory_bot_rails provides integration between " \
                  "factory_bot and rails 5.0 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", "~> 6.4")
  s.add_runtime_dependency("railties", ">= 5.0.0")

  s.add_development_dependency("sqlite3")
  s.add_development_dependency("activerecord", ">= 5.0.0")
end