Skip to content

Commit

Permalink
Bump edge to support Rails 8. Drop older rails support. Move Ruby sup…
Browse files Browse the repository at this point in the history
…port up to 3.3.
  • Loading branch information
kmcphillips committed Oct 2, 2024
1 parent fab982b commit 4770fdc
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 18 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@ jobs:
strategy:
matrix:
ruby:
- '3.0'
- '3.1'
- '3.2'
- '3.3'
gemfile:
- Gemfile
- gemfiles/rails-6.0.gemfile
- gemfiles/rails-6.1.gemfile
- gemfiles/rails-7.0.gemfile
- gemfiles/rails-7.1.gemfile
- gemfiles/rails-edge.gemfile
exclude:
# Rails Edge only supports Ruby >= 3.1
- ruby: '3.0'
- ruby: '3.1'
gemfile: gemfiles/rails-edge.gemfile
- ruby: '3.2'
gemfile: gemfiles/rails-edge.gemfile

name: Ruby ${{ matrix.ruby }} ${{ matrix.gemfile }}
Expand Down
6 changes: 0 additions & 6 deletions gemfiles/rails-6.0.gemfile

This file was deleted.

6 changes: 0 additions & 6 deletions gemfiles/rails-6.1.gemfile

This file was deleted.

6 changes: 6 additions & 0 deletions gemfiles/rails-7.1.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
source 'https://rubygems.org'

gemspec path: '..'

gem 'activesupport', '~> 7.1'
gem "activerecord", '~> 7.1'
2 changes: 1 addition & 1 deletion measured.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ Gem::Specification.new do |spec|
spec.add_development_dependency "mocha", ">= 1.4.0"
spec.add_development_dependency "pry"
spec.add_development_dependency "combustion"
spec.add_development_dependency "sqlite3", "~> 1.4"
spec.add_development_dependency "sqlite3", "> 1.4"
spec.add_development_dependency "tapioca"
end

0 comments on commit 4770fdc

Please sign in to comment.