Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

rubocop-capybara

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rubocop-capybara

  • 2.21.0
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

RuboCop Capybara

Join the chat at https://gitter.im/rubocop-rspec/Lobby Gem Version CI

Capybara-specific analysis for your projects, as an extension to RuboCop.

Installation

Just install the rubocop-capybara gem

gem install rubocop-capybara

or if you use bundler put this in your Gemfile

gem 'rubocop-capybara', require: false

Usage

You need to tell RuboCop to load the Capybara extension. There are three ways to do this:

RuboCop configuration file

Put this into your .rubocop.yml.

require: rubocop-capybara

Alternatively, use the following array notation when specifying multiple extensions.

require:
  - rubocop-other-extension
  - rubocop-capybara

Now you can run rubocop and it will automatically load the RuboCop Capybara cops together with the standard cops.

Command line

rubocop --require rubocop-capybara

Rake task

RuboCop::RakeTask.new do |task|
  task.requires << 'rubocop-capybara'
end

Documentation

You can read more about RuboCop Capybara in its official manual.

The Cops

All cops are located under lib/rubocop/cop/capybara, and contain examples/documentation.

In your .rubocop.yml, you may treat the Capybara cops just like any other cop. For example:

Capybara/SpecificMatcher:
  Exclude:
    - spec/my_spec.rb

Contributing

Checkout the contribution guidelines.

License

rubocop-capybara is MIT licensed. See the accompanying file for the full text.

FAQs

Package last updated on 08 Jun 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc