-
-
Notifications
You must be signed in to change notification settings - Fork 372
/
factory_bot_rails.gemspec
27 lines (23 loc) · 1.05 KB
/
factory_bot_rails.gemspec
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
$LOAD_PATH << File.expand_path("lib", __dir__)
require "factory_bot_rails/version"
Gem::Specification.new do |s|
s.name = "factory_bot_rails"
s.version = FactoryBotRails::VERSION
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.metadata["changelog_uri"] = "https://github.com/thoughtbot/factory_bot_rails/blob/main/NEWS.md"
s.require_paths = ["lib"]
s.required_ruby_version = Gem::Requirement.new(">= 3.0.0")
s.executables = []
s.license = "MIT"
s.add_runtime_dependency("factory_bot", "~> 6.5")
s.add_runtime_dependency("railties", ">= 5.0.0")
s.add_development_dependency("sqlite3")
s.add_development_dependency("activerecord", ">= 5.0.0")
end