diff --git a/CHANGELOG.md b/CHANGELOG.md index bd3eb40..2f3c18d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## 7.4.1 - 2024-01-19 +### Changed +- Fix incorrect factory bot configuration + ## 7.4.0 - 2024-01-14 ### Changed - Add rubocop-factory_bot diff --git a/Gemfile.lock b/Gemfile.lock index 8338af2..864272f 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,8 +1,7 @@ PATH remote: . specs: - ws-style (7.4.0) - rubocop-factory_bot (>= 2.25.1) + ws-style (7.4.1) rubocop-rspec (>= 2.2.0) rubocop-vendor (>= 0.11) standard (>= 1.30.1) diff --git a/core.yml b/core.yml index a71bf4e..2078a09 100644 --- a/core.yml +++ b/core.yml @@ -11,7 +11,6 @@ require: - standard-custom - rubocop-performance - rubocop-vendor - - rubocop-factory_bot inherit_gem: standard: config/base.yml diff --git a/lib/ws/style/version.rb b/lib/ws/style/version.rb index ab247f2..30eba82 100644 --- a/lib/ws/style/version.rb +++ b/lib/ws/style/version.rb @@ -1,5 +1,5 @@ module Ws module Style - VERSION = '7.4.0'.freeze + VERSION = '7.4.1'.freeze end end diff --git a/rspec.yml b/rspec.yml index 5f4c887..2a1fc85 100644 --- a/rspec.yml +++ b/rspec.yml @@ -4,6 +4,9 @@ require: RSpec: Enabled: true +FactoryBot: + Enabled: true + # rubocop-rspec overrides RSpec/AnyInstance: Enabled: false diff --git a/ws-style.gemspec b/ws-style.gemspec index 7928961..22d20b0 100644 --- a/ws-style.gemspec +++ b/ws-style.gemspec @@ -27,7 +27,6 @@ Gem::Specification.new do |s| s.add_dependency 'standard-rails', '>= 0.1.0' s.add_dependency 'rubocop-rspec', '>= 2.2.0' s.add_dependency 'rubocop-vendor', '>= 0.11' - s.add_dependency 'rubocop-factory_bot', '>= 2.25.1' s.add_development_dependency 'bundler' s.add_development_dependency 'bundler-audit'