diff --git a/.rubocop-rspec.yml b/.rubocop-rspec.yml index 70d03d5..22700ef 100644 --- a/.rubocop-rspec.yml +++ b/.rubocop-rspec.yml @@ -264,3 +264,15 @@ RSpec/RepeatedExampleGroupBody: RSpec/EmptyHook: Enabled: true + +# TODO Cops +Rails/AfterCommitOverride: # (new in 2.8) + Enabled: false +Rails/AttributeDefaultBlockValue: # (new in 2.9) + Enabled: false +Rails/SquishedSQLHeredocs: # (new in 2.8) + Enabled: false +Rails/WhereEquals: # (new in 2.9) + Enabled: false +Rails/WhereNot: # (new in 2.8) + Enabled: false \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index fe56ba2..d9d22d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] -## [1.0.0] - 05 Febuary 2021 +## [1.0.1] - 05 February 2021 + +### Fixed + +- Fixed projects without Rubocop-Rails + +## [1.0.0] - 05 February 2021 ### Changed diff --git a/README.md b/README.md index abf91ec..faf62be 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ This is the common configuration for ruby-style checks by [Rubocop](https://gith Add this line to your application's Gemfile under the `development` and `test` groups to include a specific version of this gem: ```ruby -gem 'rubocopital', '~> 1.0.0', require: false +gem 'rubocopital', '~> 1.0.1', require: false ``` And then execute: diff --git a/lib/rubocopital/version.rb b/lib/rubocopital/version.rb index 287a5ac..6680378 100644 --- a/lib/rubocopital/version.rb +++ b/lib/rubocopital/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Rubocopital - VERSION = "1.0.0" + VERSION = "1.0.1" end diff --git a/new_cops.yml b/new_cops.yml index e7b23ec..fc59a71 100644 --- a/new_cops.yml +++ b/new_cops.yml @@ -87,13 +87,3 @@ Style/NilLambda: # (new in 1.3) Style/RedundantArgument: # (new in 1.4) Enabled: false -Rails/AfterCommitOverride: # (new in 2.8) - Enabled: false -Rails/AttributeDefaultBlockValue: # (new in 2.9) - Enabled: false -Rails/SquishedSQLHeredocs: # (new in 2.8) - Enabled: false -Rails/WhereEquals: # (new in 2.9) - Enabled: false -Rails/WhereNot: # (new in 2.8) - Enabled: false