Skip to content

Commit

Permalink
use private package in gemfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
Tate Thurston committed Jul 3, 2024
1 parent 0ea1856 commit f2321c6
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/test.yml → .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
5 changes: 5 additions & 0 deletions gemfiles/rails_6.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 => "../"
5 changes: 5 additions & 0 deletions gemfiles/rails_6.1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 => "../"
5 changes: 5 additions & 0 deletions gemfiles/rails_7.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 => "../"
7 changes: 6 additions & 1 deletion gemfiles/rails_7.1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,9 @@ source "https://rubygems.org"

gem "activemodel", "~> 7.1"

gemspec :path => "../"
# 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 => "../"

0 comments on commit f2321c6

Please sign in to comment.