░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/var/www/canvas/vendor/bundle/ruby/3.1.0/gems/rubocop-factory_bot-2.23.1
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: README.md
# RuboCop factory_bot [](https://gitter.im/rubocop-rspec/Lobby) [](https://rubygems.org/gems/rubocop-factory_bot)  [factory_bot](https://github.com/thoughtbot/factory_bot/blob/main/GETTING_STARTED.md)-specific analysis for your projects, as an extension to [RuboCop](https://github.com/rubocop/rubocop). ## Installation Just install the `rubocop-factory_bot` gem ```bash gem install rubocop-factory_bot ``` or if you use bundler put this in your `Gemfile` ```ruby gem 'rubocop-factory_bot', require: false ``` ## Usage You need to tell RuboCop to load the factory_bot extension. There are three ways to do this: ### RuboCop configuration file Put this into your `.rubocop.yml`. ```yaml require: rubocop-factory_bot ``` Alternatively, use the following array notation when specifying multiple extensions. ```yaml require: - rubocop-other-extension - rubocop-factory_bot ``` Now you can run `rubocop` and it will automatically load the RuboCop factory_bot cops together with the standard cops. ### Command line ```bash rubocop --require rubocop-factory_bot ``` ### Rake task ```ruby RuboCop::RakeTask.new do |task| task.requires << 'rubocop-factory_bot' end ``` ## Documentation You can read more about RuboCop factory_bot in its [official manual](https://docs.rubocop.org/rubocop-factory_bot). ## The Cops All cops are located under [`lib/rubocop/cop/factory_bot`](lib/rubocop/cop/factory_bot), and contain examples/documentation. In your `.rubocop.yml`, you may treat the factory_bot cops just like any other cop. For example: ```yaml FactoryBot/AttributeDefinedStatically: Exclude: - spec/factories/my_factory.rb ``` ## Contributing Checkout the [contribution guidelines](.github/CONTRIBUTING.md). ## License `rubocop-factory_bot` is MIT licensed. [See the accompanying file](MIT-LICENSE.md) for the full text.
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📁 config/
DIR
—
2023-09-24 03:48
📁 lib/
DIR
—
2023-09-24 03:48
📄 CHANGELOG.md
MD
5.7 KB
2023-09-24 03:48
EDIT
📄 CODE_OF_CONDUCT.md
MD
889 B
2023-09-24 03:48
EDIT
📄 MIT-LICENSE.md
MD
1.1 KB
2023-09-24 03:48
EDIT
📄 README.md
MD
2.1 KB
2023-09-24 03:48
EDIT