From f2321c6c53f5ba089a96782dc976c1d5fd42249a Mon Sep 17 00:00:00 2001 From: Tate Thurston Date: Tue, 2 Jul 2024 17:50:49 -0700 Subject: [PATCH] use private package in gemfiles --- .github/workflows/{test.yml => ci.yml} | 3 +-- gemfiles/rails_6.0.gemfile | 5 +++++ gemfiles/rails_6.1.gemfile | 5 +++++ gemfiles/rails_7.0.gemfile | 5 +++++ gemfiles/rails_7.1.gemfile | 7 ++++++- 5 files changed, 22 insertions(+), 3 deletions(-) rename .github/workflows/{test.yml => ci.yml} (92%) diff --git a/.github/workflows/test.yml b/.github/workflows/ci.yml similarity index 92% rename from .github/workflows/test.yml rename to .github/workflows/ci.yml index 11286e40..23131d5e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/ci.yml @@ -44,9 +44,8 @@ jobs: steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 - env: - BUNDLE_RUBYGEMS__PKG__GITHUB__COM: ${{ secrets.GITHUB_TOKEN }} with: + env: BUNDLE_RUBYGEMS__PKG__GITHUB__COM: ${{ secrets.GITHUB_TOKEN }} ruby-version: ${{ matrix.ruby }} bundler-cache: true - run: | diff --git a/gemfiles/rails_6.0.gemfile b/gemfiles/rails_6.0.gemfile index eaa7a49f..72f14dfc 100644 --- a/gemfiles/rails_6.0.gemfile +++ b/gemfiles/rails_6.0.gemfile @@ -4,4 +4,9 @@ source "https://rubygems.org" gem "activemodel", "~> 6.0.6" +# pull the ART19 patched version of cassandra-driver +source 'https://rubygems.pkg.github.com/art19' do + gem 'cassandra-driver', '~> 3.5.2.1' +end + gemspec :path => "../" diff --git a/gemfiles/rails_6.1.gemfile b/gemfiles/rails_6.1.gemfile index 905777f6..a93f56e9 100644 --- a/gemfiles/rails_6.1.gemfile +++ b/gemfiles/rails_6.1.gemfile @@ -4,4 +4,9 @@ source "https://rubygems.org" gem "activemodel", "~> 6.1" +# pull the ART19 patched version of cassandra-driver +source 'https://rubygems.pkg.github.com/art19' do + gem 'cassandra-driver', '~> 3.5.2.1' +end + gemspec :path => "../" diff --git a/gemfiles/rails_7.0.gemfile b/gemfiles/rails_7.0.gemfile index 19c23339..a0e0e021 100644 --- a/gemfiles/rails_7.0.gemfile +++ b/gemfiles/rails_7.0.gemfile @@ -4,4 +4,9 @@ source "https://rubygems.org" gem "activemodel", "~> 7.0" +# pull the ART19 patched version of cassandra-driver +source 'https://rubygems.pkg.github.com/art19' do + gem 'cassandra-driver', '~> 3.5.2.1' +end + gemspec :path => "../" diff --git a/gemfiles/rails_7.1.gemfile b/gemfiles/rails_7.1.gemfile index 0c9bb4c5..26d418dc 100644 --- a/gemfiles/rails_7.1.gemfile +++ b/gemfiles/rails_7.1.gemfile @@ -4,4 +4,9 @@ source "https://rubygems.org" gem "activemodel", "~> 7.1" -gemspec :path => "../" \ No newline at end of file +# pull the ART19 patched version of cassandra-driver +source 'https://rubygems.pkg.github.com/art19' do + gem 'cassandra-driver', '~> 3.5.2.1' +end + +gemspec :path => "../"