Skip to content

Commit

Permalink
Merge pull request #34 from alpaca-tc/drop-eol-ruby
Browse files Browse the repository at this point in the history
Drop eol ruby
  • Loading branch information
alpaca-tc authored Aug 13, 2024
2 parents fdc66aa + 4f6582c commit 5a5e06d
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
ruby-version: ['3.1']

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
Expand All @@ -31,7 +31,7 @@ jobs:
strategy:
matrix:
gemfile: ['6.1_stable', '7.0_stable', '7.1_stable']
ruby-version: ['3.0', '3.1', '3.2']
ruby-version: ['3.1', '3.2', '3.3']
services:
mysql:
image: mysql:5.7
Expand All @@ -44,7 +44,7 @@ jobs:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
ACTIVERECORD_ENCRYPTION_PASSWORD: 'password'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
Expand Down
3 changes: 3 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,15 @@

appraise '6.1-stable' do
gem 'activerecord', '~> 6.1.0'
gem 'sqlite3', '~> 1.7.0'
end

appraise '7.0-stable' do
gem 'activerecord', '~> 7.0.0'
gem 'sqlite3', '~> 1.7.0'
end

appraise '7.1-stable' do
gem 'activerecord', '~> 7.1.0'
gem 'sqlite3', '~> 1.7.0'
end
2 changes: 1 addition & 1 deletion active_record_encryption.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Gem::Specification.new do |spec|
spec.license = 'MIT'

spec.require_paths = ['lib']
spec.required_ruby_version = '>= 3.0.0'
spec.required_ruby_version = '>= 3.1.0'

spec.files = %w[
CHANGELOG.md
Expand Down
1 change: 1 addition & 0 deletions gemfiles/6.1_stable.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
source "https://rubygems.org"

gem "activerecord", "~> 6.1.0"
gem "sqlite3", "~> 1.7.0"

gemspec path: "../"
1 change: 1 addition & 0 deletions gemfiles/7.0_stable.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
source "https://rubygems.org"

gem "activerecord", "~> 7.0.0"
gem "sqlite3", "~> 1.7.0"

gemspec path: "../"
1 change: 1 addition & 0 deletions gemfiles/7.1_stable.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
source "https://rubygems.org"

gem "activerecord", "~> 7.1.0"
gem "sqlite3", "~> 1.7.0"

gemspec path: "../"

0 comments on commit 5a5e06d

Please sign in to comment.