diff --git a/CHANGELOG.md b/CHANGELOG.md index 82f84aa..a2e6771 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. +## [1.1.2] - 2024-10-23 +### Changed +- Enforced double quotes in RuboCop configuration for `config/**/*` and `spec/**/*` directories. + ## [1.1.1] - 2024-10-21 ### Added - Added some default rules for RuboCop configuration. diff --git a/lib/rubocop/rails/suite/version.rb b/lib/rubocop/rails/suite/version.rb index 5ea7d6c..4ed799f 100644 --- a/lib/rubocop/rails/suite/version.rb +++ b/lib/rubocop/rails/suite/version.rb @@ -3,7 +3,7 @@ module Rubocop module Rails module Suite - VERSION = "1.1.1" + VERSION = "1.1.2" end end end diff --git a/rubocop.yml b/rubocop.yml index 2902183..7084378 100644 --- a/rubocop.yml +++ b/rubocop.yml @@ -17,7 +17,6 @@ AllCops: TargetRubyVersion: 3.0 Exclude: - "db/schema.rb" - - "config/**/*" - "bin/*" # Enable Rails-related cops @@ -69,6 +68,7 @@ Style/StringLiterals: - "app/**/*" - "config/**/*" - "lib/**/*" + - "spec/**/*" - "test/**/*" - "Gemfile"