From cb1398b8fbd11a2fe4af91937602fe19ff660fb6 Mon Sep 17 00:00:00 2001 From: Ivan Shamatov Date: Sat, 30 Oct 2021 19:16:58 +0300 Subject: [PATCH] Removing versioning from gemspec dependencies --- Gemfile | 6 ++--- Gemfile.lock | 64 ++++++++++++++++++++++++------------------------ yookassa.gemspec | 3 --- 3 files changed, 35 insertions(+), 38 deletions(-) diff --git a/Gemfile b/Gemfile index a162d37..6a4c784 100644 --- a/Gemfile +++ b/Gemfile @@ -9,10 +9,10 @@ gemspec group :development, :test do gem "pry" - gem "pry-byebug" + gem "pry-byebug", "~> 3.8.0" gem "rake", "~> 13.0" - gem "rspec", "~> 3.0" - gem "rubocop", "~> 1.21" + gem "rspec", "~> 3.5" + gem "rubocop", "~> 1.22" gem "rubocop-rake", "~> 0.6.0" gem "rubocop-rspec", "~> 2.5" gem "webmock", "~> 3.14" diff --git a/Gemfile.lock b/Gemfile.lock index 4724c10..94f6472 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,12 +11,12 @@ GEM addressable (2.8.0) public_suffix (>= 2.0.2, < 5.0) ast (2.4.2) - byebug (11.0.1) - coderay (1.1.2) + byebug (11.1.3) + coderay (1.1.3) crack (0.4.5) rexml - diff-lcs (1.3) - docile (1.3.1) + diff-lcs (1.4.4) + docile (1.4.0) domain_name (0.5.20190701) unf (>= 0.0.5, < 1.0.0) dry-initializer (3.0.4) @@ -25,26 +25,25 @@ GEM ffi (>= 1.0.0) rake hashdiff (1.0.1) - http (5.0.1) - addressable (~> 2.3) + http (5.0.4) + addressable (~> 2.8) http-cookie (~> 1.0) http-form_data (~> 2.2) - llhttp-ffi (~> 0.3.0) + llhttp-ffi (~> 0.4.0) http-cookie (1.0.4) domain_name (~> 0.5) http-form_data (2.3.0) - json (2.2.0) - llhttp-ffi (0.3.1) + llhttp-ffi (0.4.0) ffi-compiler (~> 1.0) rake (~> 13.0) - method_source (0.9.2) + method_source (1.0.0) parallel (1.21.0) parser (3.0.2.0) ast (~> 2.4.1) - pry (0.12.2) - coderay (~> 1.1.0) - method_source (~> 0.9.0) - pry-byebug (3.7.0) + pry (0.14.1) + coderay (~> 1.1) + method_source (~> 1.0) + pry-byebug (3.8.0) byebug (~> 11.0) pry (~> 0.10) public_suffix (4.0.6) @@ -52,19 +51,19 @@ GEM rake (13.0.6) regexp_parser (2.1.1) rexml (3.2.5) - rspec (3.8.0) - rspec-core (~> 3.8.0) - rspec-expectations (~> 3.8.0) - rspec-mocks (~> 3.8.0) - rspec-core (3.8.0) - rspec-support (~> 3.8.0) - rspec-expectations (3.8.3) + rspec (3.10.0) + rspec-core (~> 3.10.0) + rspec-expectations (~> 3.10.0) + rspec-mocks (~> 3.10.0) + rspec-core (3.10.1) + rspec-support (~> 3.10.0) + rspec-expectations (3.10.1) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.8.0) - rspec-mocks (3.8.0) + rspec-support (~> 3.10.0) + rspec-mocks (3.10.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.8.0) - rspec-support (3.8.0) + rspec-support (~> 3.10.0) + rspec-support (3.10.2) rubocop (1.22.3) parallel (~> 1.10) parser (>= 3.0.0.0) @@ -81,11 +80,12 @@ GEM rubocop-rspec (2.5.0) rubocop (~> 1.19) ruby-progressbar (1.11.0) - simplecov (0.16.1) + simplecov (0.21.2) docile (~> 1.1) - json (>= 1.8, < 3) - simplecov-html (~> 0.10.0) - simplecov-html (0.10.2) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) + simplecov-html (0.12.3) + simplecov_json_formatter (0.1.3) unf (0.1.4) unf_ext unf_ext (0.0.8) @@ -100,10 +100,10 @@ PLATFORMS DEPENDENCIES pry - pry-byebug + pry-byebug (~> 3.8.0) rake (~> 13.0) - rspec (~> 3.0) - rubocop (~> 1.21) + rspec (~> 3.5) + rubocop (~> 1.22) rubocop-rake (~> 0.6.0) rubocop-rspec (~> 2.5) simplecov (~> 0.16) diff --git a/yookassa.gemspec b/yookassa.gemspec index 181bf86..0fd5d03 100644 --- a/yookassa.gemspec +++ b/yookassa.gemspec @@ -25,9 +25,6 @@ Gem::Specification.new do |spec| spec.add_runtime_dependency "dry-initializer" spec.add_runtime_dependency "http", "~> 5.0.1" - spec.add_development_dependency "rake", ">= 10.0" spec.add_development_dependency "rspec", "~> 3.5" - spec.add_development_dependency "rubocop", "~> 0.71" spec.add_development_dependency "simplecov", "~> 0.16" - spec.add_development_dependency "webmock", "~> 3.14" end