-
-
Notifications
You must be signed in to change notification settings - Fork 373
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Rename files and code * Change factory_girl dependency to factory_bot This change will bring _rails name in line with factory_bot thoughtbot/factory_bot@c716ce0
- Loading branch information
Avielle Wolfe
authored and
Avielle
committed
Oct 20, 2017
1 parent
dca3731
commit c5d1151
Showing
26 changed files
with
156 additions
and
135 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ agree to abide by the thoughtbot [code of conduct]. | |
|
||
Fork, then clone the repo: | ||
|
||
git clone [email protected]:your-username/factory_girl_rails.git | ||
git clone [email protected]:your-username/factory_bot_rails.git | ||
|
||
Set up your machine: | ||
|
||
|
@@ -23,7 +23,7 @@ Make your change. Add tests for your change. Make the tests pass: | |
|
||
Push to your fork and [submit a pull request][pr]. | ||
|
||
[pr]: https://github.com/thoughtbot/factory_girl_rails/compare/ | ||
[pr]: https://github.com/thoughtbot/factory_bot_rails/compare/ | ||
|
||
At this point you're waiting on us. We like to at least comment on pull requests | ||
within three business days (and, typically, one business day). We may suggest | ||
|
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,6 +1,6 @@ | ||
source 'https://rubygems.org' | ||
|
||
gemspec | ||
gemspec name: 'factory_bot_rails' | ||
|
||
gem 'appraisal' | ||
gem 'aruba' | ||
|
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
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
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
Gem::Specification.new do |s| | ||
s.name = %q{factory_bot_rails} | ||
s.version = '4.8.0' | ||
s.authors = ["Joe Ferris"] | ||
s.email = %q{[email protected]} | ||
s.homepage = "http://github.com/thoughtbot/factory_bot_rails" | ||
s.summary = %q{factory_bot_rails provides integration between | ||
factory_bot and rails 3 or newer} | ||
s.description = %q{factory_bot_rails provides integration between | ||
factory_bot and rails 3 or newer (currently just automatic factory definition | ||
loading)} | ||
|
||
s.files = Dir['**/*'].keep_if { |file| File.file?(file) } | ||
s.require_paths = ["lib"] | ||
s.executables = [] | ||
s.license = "MIT" | ||
|
||
s.add_runtime_dependency('railties', '>= 3.0.0') | ||
s.add_runtime_dependency('factory_bot', '~> 4.8.2') | ||
end |
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
Oops, something went wrong.