Skip to content

Commit

Permalink
Remove support for Rails 6.0 and Ruby 2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
orien committed Oct 8, 2023
1 parent 144e824 commit 80fdf89
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 20 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,9 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['2.7', '3.0', '3.1', '3.2']
ruby: ['3.0', '3.1', '3.2']
gemfile: [Gemfile.rails-6.1.x, Gemfile.rails-7.0.x]
db: [mysql, postgres, sqlite]
include:
- ruby: 2.7
gemfile: Gemfile.rails-6.0.x
db: mysql
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/spec/support/gemfiles/${{ matrix.gemfile }}
DB: ${{ matrix.db }}
Expand Down
1 change: 0 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
source 'https://rubygems.org'
ruby '>= 2.3.0'
gemspec
10 changes: 5 additions & 5 deletions double_entry.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ Gem::Specification.new do |gem|
f.match(%r{^(?:double_entry.gemspec|README|LICENSE|CHANGELOG|lib/)})
end
gem.require_paths = ['lib']
gem.required_ruby_version = '>= 2.7.0'
gem.required_ruby_version = '>= 3'

gem.add_dependency 'activerecord', '>= 6.0.0'
gem.add_dependency 'activesupport', '>= 6.0.0'
gem.add_dependency 'money', '>= 6.0.0'
gem.add_dependency 'railties', '>= 6.0.0'
gem.add_dependency 'activerecord', '>= 6.1.0'
gem.add_dependency 'activesupport', '>= 6.1.0'
gem.add_dependency 'money', '>= 6.1.0'
gem.add_dependency 'railties', '>= 6.1.0'

gem.add_development_dependency 'mysql2'
gem.add_development_dependency 'pg'
Expand Down
9 changes: 0 additions & 9 deletions spec/support/gemfiles/Gemfile.rails-6.0.x

This file was deleted.

0 comments on commit 80fdf89

Please sign in to comment.