From ced6eb78d27767e603491cfef4bb5c3e59690bfc Mon Sep 17 00:00:00 2001 From: ilyazub Date: Tue, 16 Apr 2024 17:06:02 +0200 Subject: [PATCH 1/2] Revert "Merge pull request #49 from lcmen/fix-hash-extensions-for-latest-json" This reverts commit 703121054c785a364bf4ab499eeb72868e61bf68, reversing changes made to b9e812e05df98836d62da0170e0469dd7200064b. --- Gemfile.lock | 2 -- lib/utils/hash_extension.rb | 2 +- turbo_tests.gemspec | 1 - 3 files changed, 1 insertion(+), 4 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 5a0e49c..e07b4e6 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -2,7 +2,6 @@ PATH remote: . specs: turbo_tests (2.2.1) - json (~> 2.3) parallel_tests (>= 3.3.0, < 5) rspec (>= 3.10) @@ -11,7 +10,6 @@ GEM specs: coderay (1.1.3) diff-lcs (1.5.0) - json (2.7.2) method_source (1.0.0) parallel (1.22.1) parallel_tests (4.2.0) diff --git a/lib/utils/hash_extension.rb b/lib/utils/hash_extension.rb index ba7cee6..c00bf6e 100644 --- a/lib/utils/hash_extension.rb +++ b/lib/utils/hash_extension.rb @@ -4,4 +4,4 @@ def to_struct Struct.new(*self.keys).new(*self.values.map { |value| value.is_a?(Hash) ? value.to_struct : value }) end end -end +end \ No newline at end of file diff --git a/turbo_tests.gemspec b/turbo_tests.gemspec index 7190410..52064e1 100644 --- a/turbo_tests.gemspec +++ b/turbo_tests.gemspec @@ -21,7 +21,6 @@ Gem::Specification.new do |spec| spec.add_dependency "rspec", ">= 3.10" spec.add_dependency "parallel_tests", ">= 3.3.0", "< 5" - spec.add_dependency "json", "~> 2.3" spec.add_development_dependency "pry", "~> 0.14" From ddf5fbd1290b3831881f79b922bc6b3bc3271abb Mon Sep 17 00:00:00 2001 From: ilyazub Date: Tue, 16 Apr 2024 17:10:23 +0200 Subject: [PATCH 2/2] Bump version to 2.2.3 --- Gemfile.lock | 2 +- lib/turbo_tests/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index e07b4e6..9e06c70 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - turbo_tests (2.2.1) + turbo_tests (2.2.3) parallel_tests (>= 3.3.0, < 5) rspec (>= 3.10) diff --git a/lib/turbo_tests/version.rb b/lib/turbo_tests/version.rb index af6fbac..3e7c830 100644 --- a/lib/turbo_tests/version.rb +++ b/lib/turbo_tests/version.rb @@ -1,3 +1,3 @@ module TurboTests - VERSION = "2.2.2" + VERSION = "2.2.3" end