diff --git a/Gemfile b/Gemfile index f6fcf97..62996d8 100644 --- a/Gemfile +++ b/Gemfile @@ -4,3 +4,8 @@ source 'https://rubygems.org' # Specify your gem's dependencies in rspec-github.gemspec gemspec + +group :development do + gem 'rspec', '~> 3.0' + gem 'rubocop', '~> 1.56.4' +end diff --git a/Gemfile.lock b/Gemfile.lock index f906b8d..b0effc0 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -8,14 +8,18 @@ GEM remote: https://rubygems.org/ specs: ast (2.4.2) + base64 (0.1.1) diff-lcs (1.5.0) json (2.6.3) - parallel (1.22.1) - parser (3.2.2.0) + language_server-protocol (3.17.0.3) + parallel (1.23.0) + parser (3.2.2.3) ast (~> 2.4.1) + racc + racc (1.7.1) rainbow (3.1.1) - regexp_parser (2.7.0) - rexml (3.2.5) + regexp_parser (2.8.1) + rexml (3.2.6) rspec (3.12.0) rspec-core (~> 3.12.0) rspec-expectations (~> 3.12.0) @@ -29,20 +33,22 @@ GEM diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.12.0) rspec-support (3.12.0) - rubocop (1.50.2) + rubocop (1.56.4) + base64 (~> 0.1.1) json (~> 2.3) + language_server-protocol (>= 3.17.0) parallel (~> 1.10) - parser (>= 3.2.0.0) + parser (>= 3.2.2.3) rainbow (>= 2.2.2, < 4.0) regexp_parser (>= 1.8, < 3.0) rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.0, < 2.0) + rubocop-ast (>= 1.28.1, < 2.0) ruby-progressbar (~> 1.7) unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.28.0) + rubocop-ast (1.29.0) parser (>= 3.2.1.0) ruby-progressbar (1.13.0) - unicode-display_width (2.4.2) + unicode-display_width (2.5.0) PLATFORMS ruby @@ -50,7 +56,7 @@ PLATFORMS DEPENDENCIES rspec (~> 3.0) rspec-github! - rubocop (~> 1.50.2) + rubocop (~> 1.56.4) BUNDLED WITH 2.2.19 diff --git a/rspec-github.gemspec b/rspec-github.gemspec index 05d8f6b..a9d02fe 100644 --- a/rspec-github.gemspec +++ b/rspec-github.gemspec @@ -22,6 +22,4 @@ Gem::Specification.new do |spec| spec.files = Dir['{lib}/**/*'] spec.add_runtime_dependency 'rspec-core', '~> 3.0' - spec.add_development_dependency 'rspec', '~> 3.0' - spec.add_development_dependency 'rubocop', '~> 1.50.2' end