{"id":15101718,"url":"https://github.com/ydah/rubocop-rspec-extra","last_synced_at":"2026-03-04T00:33:51.412Z","repository":{"id":153352156,"uuid":"611275505","full_name":"ydah/rubocop-rspec-extra","owner":"ydah","description":"A RuboCop extension focused on enforcing RSpec. A place where no one is officially employed, but where useful cops can gather.","archived":false,"fork":false,"pushed_at":"2025-11-24T16:01:08.000Z","size":68,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-08T01:41:29.858Z","etag":null,"topics":["formatter","hacktoberfest","linter","rspec","rubocop","ruby"],"latest_commit_sha":null,"homepage":"","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ydah.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":".github/CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"MIT-LICENSE.md","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":"ydah"}},"created_at":"2023-03-08T13:46:38.000Z","updated_at":"2025-11-24T16:01:09.000Z","dependencies_parsed_at":"2025-03-18T16:32:41.263Z","dependency_job_id":"4345500b-9098-42b0-8bd3-a06135256d09","html_url":"https://github.com/ydah/rubocop-rspec-extra","commit_stats":{"total_commits":40,"total_committers":3,"mean_commits":"13.333333333333334","dds":0.35,"last_synced_commit":"6300abeaf57ef054cb001bbbf009979ede44e2b8"},"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/ydah/rubocop-rspec-extra","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ydah%2Frubocop-rspec-extra","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ydah%2Frubocop-rspec-extra/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ydah%2Frubocop-rspec-extra/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ydah%2Frubocop-rspec-extra/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ydah","download_url":"https://codeload.github.com/ydah/rubocop-rspec-extra/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ydah%2Frubocop-rspec-extra/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30067727,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-03T18:21:05.932Z","status":"ssl_error","status_checked_at":"2026-03-03T18:20:59.341Z","response_time":61,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["formatter","hacktoberfest","linter","rspec","rubocop","ruby"],"created_at":"2024-09-25T18:28:49.529Z","updated_at":"2026-03-04T00:33:51.384Z","avatar_url":"https://github.com/ydah.png","language":"Ruby","funding_links":["https://github.com/sponsors/ydah"],"categories":[],"sub_categories":[],"readme":"# Rubocop::Rspec::Extra [![Gem Version](https://badge.fury.io/rb/rubocop-rspec-extra.svg)](https://badge.fury.io/rb/rubocop-rspec-extra) [![CI](https://github.com/ydah/rubocop-rspec-extra/actions/workflows/ci.yml/badge.svg)](https://github.com/ydah/rubocop-rspec-extra/actions/workflows/ci.yml)\n\nA [RuboCop](https://github.com/rubocop/rubocop) extension focused on enforcing RSpec. A place where no one is officially employed, but where useful cops can gather.\n\n## Installation\n\nJust install the `rubocop-rspec-extra` gem\n\n```bash\ngem install rubocop-rspec-extra\n```\n\nor if you use bundler put this in your `Gemfile`\n\n```bash\ngem 'rubocop-rspec-extra', require: false\n```\n\n## Usage\n\nYou need to tell RuboCop to load the RSpec Extra extension. There are two\nways to do this:\n\n### RuboCop configuration file\n\nPut this into your `.rubocop.yml`.\n\n```yaml\nplugins: rubocop-rspec-extra\n```\n\nAlternatively, use the following array notation when specifying multiple extensions.\n\n```yaml\nplugins:\n  - rubocop-rspec\n  - rubocop-rspec-extra\n```\n\nNow you can run `rubocop` and it will automatically load the RuboCop RSpec Extra\ncops together with the standard cops.\n\n\u003e [!NOTE]\n\u003e The plugin system is supported in RuboCop 1.72+. In earlier versions, use `require` instead of `plugins`.\n\n### Command line\n\n```bash\nrubocop --plugins rubocop-rspec-extra\n```\n\n### Rake task\n\n```ruby\nRuboCop::RakeTask.new do |task|\n  task.plugins \u003c\u003c 'rubocop-rspec-extra'\nend\n```\n\n## The Cops\n\nAll cops are located under\n[`lib/rubocop/cop/rspec/extra`](lib/rubocop/cop/rspec/extra), and contain\nexamples/documentation.\n\nIn your `.rubocop.yml`, you may treat the RSpec extra cops just like any other\ncop. For example:\n\n```yaml\nRSpec/Extra/RestrictBlockTag:\n  Exclude:\n    - spec/my_poorly_named_spec_file.rb\n```\n\n## Contributing\n\nCheckout the [contribution guidelines](.github/CONTRIBUTING.md).\n\n## License\n\n`rubocop-rspec-extra` is MIT licensed. [See the accompanying file](MIT-LICENSE.md) for\nthe full text.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fydah%2Frubocop-rspec-extra","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fydah%2Frubocop-rspec-extra","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fydah%2Frubocop-rspec-extra/lists"}