From 56c3f9d2002c45ec32f0e2e90ccc64e5fc826f53 Mon Sep 17 00:00:00 2001 From: David Rodriguez Date: Tue, 26 Sep 2023 12:39:27 +0200 Subject: [PATCH 1/3] Is Bundler a dependency of turbo tests? --- Gemfile.lock | 1 - turbo_tests.gemspec | 2 -- 2 files changed, 3 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index da4acac..7dd5f37 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -2,7 +2,6 @@ PATH remote: . specs: turbo_tests (2.1.1) - bundler (>= 2.1) parallel_tests (>= 3.3.0, < 5) rspec (>= 3.10) diff --git a/turbo_tests.gemspec b/turbo_tests.gemspec index 5636655..52064e1 100644 --- a/turbo_tests.gemspec +++ b/turbo_tests.gemspec @@ -24,8 +24,6 @@ Gem::Specification.new do |spec| spec.add_development_dependency "pry", "~> 0.14" - spec.add_runtime_dependency "bundler", ">= 2.1" - # Specify which files should be added to the gem when it is released. # The `git ls-files -z` loads the files in the RubyGem that have been added into git. spec.files = Dir.chdir(File.expand_path("..", __FILE__)) do From e803edc19a2a0709217ff732a011f2b48331767e Mon Sep 17 00:00:00 2001 From: David Rodriguez Date: Tue, 26 Sep 2023 12:39:44 +0200 Subject: [PATCH 2/3] Upgrade lockfile to latest Bundler --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index 7dd5f37..3e074bd 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -41,4 +41,4 @@ DEPENDENCIES turbo_tests! BUNDLED WITH - 2.4.6 + 2.4.19 From 2ae707ea3543bb6d2550166bf43baed54e4063b9 Mon Sep 17 00:00:00 2001 From: ilyazub Date: Thu, 28 Sep 2023 11:08:50 +0200 Subject: [PATCH 3/3] Remove unnecessary matrix.env from Tests workflow --- .github/workflows/tests.yml | 2 +- Gemfile.lock | 2 +- lib/turbo_tests/version.rb | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8b04a8d..8998222 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -26,4 +26,4 @@ jobs: - name: Run tests timeout-minutes: 5 run: | - ${{matrix.env}} bundle exec turbo_tests -n4 + bundle exec turbo_tests -n4 diff --git a/Gemfile.lock b/Gemfile.lock index 3e074bd..4657e0d 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - turbo_tests (2.1.1) + turbo_tests (2.2.0) parallel_tests (>= 3.3.0, < 5) rspec (>= 3.10) diff --git a/lib/turbo_tests/version.rb b/lib/turbo_tests/version.rb index 31cb4fd..8edc369 100644 --- a/lib/turbo_tests/version.rb +++ b/lib/turbo_tests/version.rb @@ -1,3 +1,3 @@ module TurboTests - VERSION = "2.1.1" + VERSION = "2.2.0" end