diff --git a/.gitignore b/.gitignore index f8f587d..ce0f604 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ /spec/reports/ /tmp/ /.idea/ +/vendor/ diff --git a/Gemfile b/Gemfile index bda1b5b..2e01b1d 100644 --- a/Gemfile +++ b/Gemfile @@ -3,4 +3,4 @@ source "https://rubygems.org" # Specify your gem's dependencies in easy_style.gemspec gemspec -gem "rake", "~> 12.0" +gem "rake", "~> 13.0" diff --git a/Gemfile.lock b/Gemfile.lock index 79d9858..f8bcc3d 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -2,45 +2,50 @@ PATH remote: . specs: easy_style (0.7.1) - rubocop (~> 1.73) - rubocop-rails (~> 2.30) + rubocop (~> 1.81) + rubocop-rails (~> 2.33) GEM remote: https://rubygems.org/ specs: - activesupport (7.1.3.2) + activesupport (8.0.3) base64 + benchmark (>= 0.3) bigdecimal - concurrent-ruby (~> 1.0, >= 1.0.2) + concurrent-ruby (~> 1.0, >= 1.3.1) connection_pool (>= 2.2.5) drb i18n (>= 1.6, < 2) + logger (>= 1.4.2) minitest (>= 5.1) - mutex_m - tzinfo (~> 2.0) - ast (2.4.2) - base64 (0.2.0) - bigdecimal (3.1.7) - concurrent-ruby (1.2.3) - connection_pool (2.4.1) - drb (2.2.1) - i18n (1.14.4) + securerandom (>= 0.3) + tzinfo (~> 2.0, >= 2.0.5) + uri (>= 0.13.1) + ast (2.4.3) + base64 (0.3.0) + benchmark (0.4.1) + bigdecimal (3.2.3) + concurrent-ruby (1.3.5) + connection_pool (2.5.4) + drb (2.2.3) + i18n (1.14.7) concurrent-ruby (~> 1.0) - json (2.7.2) - language_server-protocol (3.17.0.3) + json (2.15.0) + language_server-protocol (3.17.0.5) lint_roller (1.1.0) - minitest (5.22.3) - mutex_m (0.2.0) - parallel (1.24.0) - parser (3.3.1.0) + logger (1.7.0) + minitest (5.25.5) + parallel (1.27.0) + parser (3.3.9.0) ast (~> 2.4.1) racc - racc (1.7.3) - rack (3.0.10) + prism (1.5.1) + racc (1.8.1) + rack (3.2.1) rainbow (3.1.1) - rake (12.3.3) - regexp_parser (2.10.0) - rubocop (1.73.2) + rake (13.3.0) + regexp_parser (2.11.3) + rubocop (1.81.1) json (~> 2.3) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.1.0) @@ -48,21 +53,26 @@ GEM parser (>= 3.3.0.2) rainbow (>= 2.2.2, < 4.0) regexp_parser (>= 2.9.3, < 3.0) - rubocop-ast (>= 1.38.0, < 2.0) + rubocop-ast (>= 1.47.1, < 2.0) ruby-progressbar (~> 1.7) unicode-display_width (>= 2.4.0, < 4.0) - rubocop-ast (1.38.1) - parser (>= 3.3.1.0) - rubocop-rails (2.30.3) + rubocop-ast (1.47.1) + parser (>= 3.3.7.2) + prism (~> 1.4) + rubocop-rails (2.33.4) activesupport (>= 4.2.0) lint_roller (~> 1.1) rack (>= 1.1) - rubocop (>= 1.72.1, < 2.0) - rubocop-ast (>= 1.38.0, < 2.0) + rubocop (>= 1.75.0, < 2.0) + rubocop-ast (>= 1.44.0, < 2.0) ruby-progressbar (1.13.0) + securerandom (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) + unicode-display_width (3.2.0) + unicode-emoji (~> 4.1) + unicode-emoji (4.1.0) + uri (1.0.3) PLATFORMS arm64-darwin-22 @@ -74,7 +84,7 @@ PLATFORMS DEPENDENCIES easy_style! - rake (~> 12.0) + rake (~> 13.0) BUNDLED WITH 2.6.5 diff --git a/easy_style.gemspec b/easy_style.gemspec index 7089fb9..d1b723b 100644 --- a/easy_style.gemspec +++ b/easy_style.gemspec @@ -10,7 +10,7 @@ Gem::Specification.new do |spec| spec.description = "Rubocop configs" spec.homepage = "https://github.com/easysoftware/easy_style" spec.license = "MIT" - spec.required_ruby_version = ">= 3.1.2" + spec.required_ruby_version = ">= 3.2.0" spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = spec.homepage @@ -25,6 +25,6 @@ Gem::Specification.new do |spec| spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] - spec.add_dependency "rubocop", "~> 1.73" - spec.add_dependency "rubocop-rails", "~> 2.30" + spec.add_dependency "rubocop", "~> 1.81" + spec.add_dependency "rubocop-rails", "~> 2.33" end