File: factory_bot.gemspec

package info (click to toggle)
ruby-factory-bot 6.5.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,372 kB
  • sloc: ruby: 7,827; makefile: 6
file content (44 lines) | stat: -rw-r--r-- 1,554 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
$LOAD_PATH << File.expand_path("lib", __dir__)
require "factory_bot/version"

Gem::Specification.new do |s|
  s.name = "factory_bot"
  s.version = FactoryBot::VERSION
  s.summary = "factory_bot provides a framework and DSL for defining and " \
                  "using model instance factories."
  s.description = "factory_bot provides a framework and DSL for defining and " \
                  "using factories - less error-prone, more explicit, and " \
                  "all-around easier to work with than fixtures."

  s.files =
    Dir.glob("lib/**/*") +
    %w[CONTRIBUTING.md GETTING_STARTED.md LICENSE NAME.md NEWS.md README.md .yardopts]

  s.require_path = "lib"
  s.required_ruby_version = Gem::Requirement.new(">= 3.0.0")

  s.authors = ["Josh Clayton", "Joe Ferris"]
  s.email = ["jclayton@thoughtbot.com", "jferris@thoughtbot.com"]

  s.homepage = "https://github.com/thoughtbot/factory_bot"

  s.metadata = {
    "changelog_uri" => "https://github.com/thoughtbot/factory_bot/blob/main/NEWS.md"
  }

  s.add_dependency("activesupport", ">= 6.1.0")

  s.add_development_dependency("activerecord")
  s.add_development_dependency("appraisal")
  s.add_development_dependency("aruba")
  s.add_development_dependency("cucumber")
  s.add_development_dependency("mutex_m")
  s.add_development_dependency("rake")
  s.add_development_dependency("rspec")
  s.add_development_dependency("rspec-its")
  s.add_development_dependency("standard")
  s.add_development_dependency("simplecov")
  s.add_development_dependency("yard")

  s.license = "MIT"
end