From cbc2113c1a5cdc83f504c577835702fbeb240ce8 Mon Sep 17 00:00:00 2001 From: Brice TEXIER Date: Thu, 27 Mar 2025 08:29:24 +0100 Subject: [PATCH] Remove Gemfile.lock --- .github/workflows/main.yml | 21 +++++++----- .gitignore | 1 + Gemfile.lock | 69 -------------------------------------- 3 files changed, 13 insertions(+), 78 deletions(-) delete mode 100644 Gemfile.lock diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6cfe9e6..bb2a2a8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,14 +14,17 @@ jobs: strategy: matrix: ruby: - - '3.1.3' + - "3.1" + - "3.2" + - "3.3" + - "3.4" steps: - - uses: actions/checkout@v4 - - name: Set up Ruby - uses: ruby/setup-ruby@v1 - with: - ruby-version: ${{ matrix.ruby }} - bundler-cache: true - - name: Run the default task - run: bundle exec rake + - uses: actions/checkout@v4 + - name: Set up Ruby + uses: ruby/setup-ruby@v1 + with: + ruby-version: ${{ matrix.ruby }} + bundler-cache: true + - name: Run the default task + run: bundle exec rake diff --git a/.gitignore b/.gitignore index 9106b2a..4ea5798 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ /pkg/ /spec/reports/ /tmp/ +Gemfile.lock diff --git a/Gemfile.lock b/Gemfile.lock deleted file mode 100644 index cf3ef14..0000000 --- a/Gemfile.lock +++ /dev/null @@ -1,69 +0,0 @@ -PATH - remote: . - specs: - capistrano-solid_queue (0.1.0) - capistrano (>= 3.0) - -GEM - remote: https://rubygems.org/ - specs: - airbrussh (1.4.1) - sshkit (>= 1.6.1, != 1.7.0) - ast (2.4.2) - capistrano (3.17.1) - airbrussh (>= 1.0.0) - i18n - rake (>= 10.0.0) - sshkit (>= 1.9.0) - concurrent-ruby (1.2.0) - i18n (1.12.0) - concurrent-ruby (~> 1.0) - json (2.6.3) - language_server-protocol (3.17.0.3) - minitest (5.22.3) - net-scp (4.0.0) - net-ssh (>= 2.6.5, < 8.0.0) - net-ssh (7.0.1) - parallel (1.22.1) - parser (3.2.1.0) - ast (~> 2.4.1) - rainbow (3.1.1) - rake (13.0.6) - regexp_parser (2.7.0) - rexml (3.2.5) - rubocop (1.44.1) - json (~> 2.3) - parallel (~> 1.10) - parser (>= 3.2.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.24.1, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.26.0) - parser (>= 3.2.1.0) - rubocop-performance (1.15.2) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - ruby-progressbar (1.11.0) - sshkit (1.21.3) - net-scp (>= 1.1.2) - net-ssh (>= 2.8.0) - standard (1.24.3) - language_server-protocol (~> 3.17.0.2) - rubocop (= 1.44.1) - rubocop-performance (= 1.15.2) - unicode-display_width (2.4.2) - -PLATFORMS - ruby - -DEPENDENCIES - capistrano-solid_queue! - minitest (~> 5.16) - rake (~> 13.0) - standard (~> 1.3) - -BUNDLED WITH - 2.4.7