mirror of
https://github.com/thoughtbot/factory_bot.git
synced 2022-11-09 11:43:51 -05:00
5f1a1de114
This commit applies the changes from running `standardrb --fix`
40 lines
1.5 KiB
Ruby
40 lines
1.5 KiB
Ruby
$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(">= 2.5.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/master/NEWS.md"
|
|
|
|
s.add_dependency("activesupport", ">= 5.0.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("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
|