From afa0d8b6ab0cf4038fc9ceed30e962172ed4652f Mon Sep 17 00:00:00 2001 From: Topher Bullock Date: Tue, 20 May 2025 10:24:06 -0400 Subject: [PATCH] remove Gemfile.lock ci on #10 is failing due to darwin deps in the lockfile. fix ci by removing the gemfile and adding `bundle install` to ci steps --- .github/workflows/ci.yml | 4 +- .gitignore | 1 + Gemfile.lock | 117 --------------------------------------- 3 files changed, 4 insertions(+), 118 deletions(-) delete mode 100644 Gemfile.lock diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6279cda..567689e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,6 +17,8 @@ jobs: - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.entry.ruby }} - bundler-cache: true + bundler-cache: false + - name: Bundle install + run: bundle install - run: bundle exec rake test continue-on-error: ${{ matrix.entry.allowed-failure }} diff --git a/.gitignore b/.gitignore index 9106b2a..177d799 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 a54b619..0000000 --- a/Gemfile.lock +++ /dev/null @@ -1,117 +0,0 @@ -PATH - remote: . - specs: - model_context_protocol (0.7.0) - json_rpc_handler (~> 0.1) - -GEM - remote: https://rubygems.org/ - specs: - activesupport (8.0.2) - base64 - benchmark (>= 0.3) - bigdecimal - concurrent-ruby (~> 1.0, >= 1.3.1) - connection_pool (>= 2.2.5) - drb - i18n (>= 1.6, < 2) - logger (>= 1.4.2) - minitest (>= 5.1) - securerandom (>= 0.3) - tzinfo (~> 2.0, >= 2.0.5) - uri (>= 0.13.1) - ansi (1.5.0) - ast (2.4.3) - base64 (0.2.0) - benchmark (0.4.0) - bigdecimal (3.1.9) - builder (3.3.0) - concurrent-ruby (1.3.5) - connection_pool (2.5.3) - date (3.4.1) - debug (1.10.0) - irb (~> 1.10) - reline (>= 0.3.8) - drb (2.2.1) - i18n (1.14.7) - concurrent-ruby (~> 1.0) - io-console (0.8.0) - irb (1.15.2) - pp (>= 0.6.0) - rdoc (>= 4.0.0) - reline (>= 0.4.2) - json (2.11.3) - json_rpc_handler (0.1.1) - language_server-protocol (3.17.0.4) - lint_roller (1.1.0) - logger (1.7.0) - minitest (5.25.5) - minitest-reporters (1.7.1) - ansi - builder - minitest (>= 5.0) - ruby-progressbar - mocha (2.7.1) - ruby2_keywords (>= 0.0.5) - parallel (1.27.0) - parser (3.3.8.0) - ast (~> 2.4.1) - racc - pp (0.6.2) - prettyprint - prettyprint (0.2.0) - prism (1.4.0) - psych (5.2.4) - date - stringio - racc (1.8.1) - rainbow (3.1.1) - rake (13.2.1) - rdoc (6.13.1) - psych (>= 4.0.0) - regexp_parser (2.10.0) - reline (0.6.1) - io-console (~> 0.5) - rubocop (1.75.5) - json (~> 2.3) - language_server-protocol (~> 3.17.0.2) - lint_roller (~> 1.1.0) - parallel (~> 1.10) - parser (>= 3.3.0.2) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 2.9.3, < 3.0) - rubocop-ast (>= 1.44.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 4.0) - rubocop-ast (1.44.1) - parser (>= 3.3.7.2) - prism (~> 1.4) - rubocop-shopify (2.17.0) - rubocop (~> 1.62) - ruby-progressbar (1.13.0) - ruby2_keywords (0.0.5) - securerandom (0.4.1) - stringio (3.1.7) - tzinfo (2.0.6) - concurrent-ruby (~> 1.0) - unicode-display_width (3.1.4) - unicode-emoji (~> 4.0, >= 4.0.4) - unicode-emoji (4.0.4) - uri (1.0.3) - -PLATFORMS - arm64-darwin-23 - ruby - -DEPENDENCIES - activesupport - debug - minitest (~> 5.1) - minitest-reporters - mocha - model_context_protocol! - rake (~> 13.0) - rubocop-shopify - -BUNDLED WITH - 2.5.9