Skip to content

Commit

Permalink
CRD-567: Add ostruct dependency (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicocedron authored Sep 3, 2024
1 parent 1054aef commit 06107a9
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 18 deletions.
34 changes: 18 additions & 16 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
rubocop-changes (0.8.0)
rubocop-changes (0.8.2)
git_diff_parser (~> 3.2)
rubocop (>= 1.0)

Expand All @@ -12,14 +12,16 @@ GEM
byebug (10.0.2)
diff-lcs (1.3)
git_diff_parser (3.2.0)
json (2.6.3)
parallel (1.22.1)
parser (3.2.0.0)
json (2.7.2)
language_server-protocol (3.17.0.3)
parallel (1.26.3)
parser (3.3.4.2)
ast (~> 2.4.1)
racc
racc (1.8.1)
rainbow (3.1.1)
rake (13.0.3)
regexp_parser (2.6.2)
rexml (3.2.5)
regexp_parser (2.9.2)
rspec (3.9.0)
rspec-core (~> 3.9.0)
rspec-expectations (~> 3.9.0)
Expand All @@ -33,20 +35,20 @@ GEM
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.9.0)
rspec-support (3.9.0)
rubocop (1.44.0)
rubocop (1.66.0)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
parallel (~> 1.10)
parser (>= 3.2.0.0)
parser (>= 3.3.0.2)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
rexml (>= 3.2.5, < 4.0)
rubocop-ast (>= 1.24.1, < 2.0)
regexp_parser (>= 2.4, < 3.0)
rubocop-ast (>= 1.32.1, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.24.1)
parser (>= 3.1.1.0)
ruby-progressbar (1.11.0)
unicode-display_width (2.4.2)
rubocop-ast (1.32.2)
parser (>= 3.3.1.0)
ruby-progressbar (1.13.0)
unicode-display_width (2.5.0)

PLATFORMS
ruby
Expand All @@ -59,4 +61,4 @@ DEPENDENCIES
rubocop-changes!

BUNDLED WITH
2.1.4
2.3.8
1 change: 1 addition & 0 deletions lib/rubocop/changes/checker.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
require 'git_diff_parser'
require 'rubocop'
require 'json'
require 'ostruct'

require 'rubocop/changes/check'
require 'rubocop/changes/shell'
Expand Down
2 changes: 1 addition & 1 deletion lib/rubocop/changes/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module Rubocop
module Changes
VERSION = '0.8.1'
VERSION = '0.8.2'
end
end
3 changes: 2 additions & 1 deletion rubocop-changes.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ Gem::Specification.new do |spec|

spec.metadata = {
'source_code_uri' => 'https://github.com/fcsonline/rubocop-changes',
'bug_tracker_uri' => 'https://github.com/fcsonline/rubocop-changes/issues'
'bug_tracker_uri' => 'https://github.com/fcsonline/rubocop-changes/issues',
'github_repo' => 'ssh://github.com/conekta/rubocop-changes'
}

# Specify which files should be added to the gem when it is released.
Expand Down

0 comments on commit 06107a9

Please sign in to comment.