-
-
Notifications
You must be signed in to change notification settings - Fork 374
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3c300ec
commit df44185
Showing
2 changed files
with
7 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,19 @@ | ||
Gem::Specification.new do |s| | ||
s.name = "factory_bot_rails" | ||
s.version = "5.0.0.rc2" | ||
s.version = "5.0.0" | ||
s.authors = ["Joe Ferris"] | ||
s.email = "[email protected]" | ||
s.homepage = "https://github.com/thoughtbot/factory_bot_rails" | ||
s.summary = "factory_bot_rails provides integration between "\ | ||
"factory_bot and rails 3 or newer" | ||
"factory_bot and rails 4.2 or newer" | ||
s.description = "factory_bot_rails provides integration between "\ | ||
"factory_bot and rails 3 or newer (currently just automatic "\ | ||
"factory definition loading)" | ||
"factory_bot and rails 4.2 or newer" | ||
|
||
s.files = Dir["lib/**/*"] + %w[CONTRIBUTING.md LICENSE NEWS README.md] | ||
s.require_paths = ["lib"] | ||
s.executables = [] | ||
s.license = "MIT" | ||
|
||
s.add_runtime_dependency("factory_bot", "~> 5.0.0.rc2") | ||
s.add_runtime_dependency("factory_bot", "~> 5.0.0") | ||
s.add_runtime_dependency("railties", ">= 4.2.0") | ||
end |