Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix issue with missing standard-custom require #185

Merged
merged 1 commit into from
Jul 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## 7.1.2 - 2023-07-13
### Changed
- Fix missing cop error with standard 1.3.0

## 7.1.1 - 2023-06-19
### Changed
- Added Gitleaks as a pre-commit step
Expand Down
22 changes: 12 additions & 10 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
PATH
remote: .
specs:
ws-style (7.1.1)
ws-style (7.1.2)
rubocop-rspec (>= 2.2.0)
rubocop-vendor (>= 0.11)
standard (>= 1.28.2)
standard (>= 1.30.1)
standard-custom (>= 1.0.2)
standard-rails (>= 0.1.0)

GEM
Expand All @@ -30,16 +31,16 @@ GEM
concurrent-ruby (~> 1.0)
json (2.6.3)
language_server-protocol (3.17.0.3)
lint_roller (1.0.0)
lint_roller (1.1.0)
minitest (5.18.1)
parallel (1.23.0)
parse_a_changelog (1.2.0)
parse_a_changelog (1.3.0)
treetop (~> 1.6)
parser (3.2.2.3)
ast (~> 2.4.1)
racc
polyglot (0.3.5)
public_suffix (5.0.1)
public_suffix (5.0.3)
racc (1.7.1)
rack (3.0.8)
rainbow (3.1.1)
Expand All @@ -56,7 +57,7 @@ GEM
rspec-expectations (3.12.3)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.12.0)
rspec-mocks (3.12.5)
rspec-mocks (3.12.6)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.12.0)
rspec-support (3.12.1)
Expand Down Expand Up @@ -90,16 +91,17 @@ GEM
rubocop-vendor (0.11.0)
rubocop (>= 0.53.0)
ruby-progressbar (1.13.0)
standard (1.29.0)
standard (1.30.1)
language_server-protocol (~> 3.17.0.2)
lint_roller (~> 1.0)
rubocop (~> 1.52.0)
standard-custom (~> 1.0.0)
standard-performance (~> 1.1.0)
standard-custom (1.0.1)
lint_roller (~> 1.0)
standard-performance (1.1.0)
standard-custom (1.0.2)
lint_roller (~> 1.0)
rubocop (~> 1.50)
standard-performance (1.1.1)
lint_roller (~> 1.1)
rubocop-performance (~> 1.18.0)
standard-rails (0.1.0)
lint_roller (~> 1.0)
Expand Down
1 change: 1 addition & 0 deletions core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ inherit_mode:

require:
- standard
- standard-custom
- rubocop-performance
- rubocop-vendor

Expand Down
2 changes: 1 addition & 1 deletion lib/ws/style/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Ws
module Style
VERSION = '7.1.1'.freeze
VERSION = '7.1.2'.freeze
end
end
3 changes: 2 additions & 1 deletion ws-style.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ Gem::Specification.new do |s|
s.require_paths = ['lib']
s.required_ruby_version = '>= 3.2.0'

s.add_dependency 'standard', '>= 1.28.2'
s.add_dependency 'standard', '>= 1.30.1'
s.add_dependency 'standard-custom', '>= 1.0.2'
s.add_dependency 'standard-rails', '>= 0.1.0'
s.add_dependency 'rubocop-rspec', '>= 2.2.0'
s.add_dependency 'rubocop-vendor', '>= 0.11'
Expand Down