File tree Expand file tree Collapse file tree 3 files changed +37
-0
lines changed Expand file tree Collapse file tree 3 files changed +37
-0
lines changed Original file line number Diff line number Diff line change 4343 - " 7.0"
4444 - " 7.1"
4545 - " 7.2"
46+ - " 8.0"
4647 sequel :
4748 - " ~> 5.0"
4849 ruby :
8687 rails : " 7.2"
8788 - ruby : " jruby"
8889 rails : " 7.2"
90+ - ruby : " 2.6"
91+ rails : " 8.0"
92+ - ruby : " 2.7"
93+ rails : " 8.0"
94+ - ruby : " 3.0"
95+ rails : " 8.0"
96+ - ruby : " jruby"
97+ rails : " 8.0"
8998 name : Rails ${{ matrix.rails }}, Ruby ${{ matrix.ruby }}, Sequel ${{ matrix.sequel }}
9099
91100 env :
Original file line number Diff line number Diff line change 11dev
22===
33
4+ * Configure CI to include tests for Rails ~ > 8.0.0 (Jonathan Tron)
45
561.2.3 (2024-09-15)
67==================
Original file line number Diff line number Diff line change 1+ source 'https://rubygems.org'
2+
3+ gem 'railties', '~> 8.0.0'
4+ gem 'activemodel', '~> 8.0.0'
5+ gem 'actionpack', '~> 8.0.0'
6+
7+ gemspec :path => '../'
8+
9+ gem 'sequel', "#{ENV['SEQUEL']}"
10+
11+ gem 'fakefs', '>= 1.8.0', :require => 'fakefs/safe'
12+
13+ gem 'rspec-rails', '~> 5.0'
14+
15+ # MRI/Rubinius Adapter Dependencies
16+ platform :ruby do
17+ gem 'pg'
18+ gem 'mysql2'
19+ gem 'sqlite3'
20+ end
21+
22+ # JRuby Adapter Dependencies
23+ platform :jruby do
24+ gem 'jdbc-sqlite3'
25+ gem 'jdbc-mysql'
26+ gem 'jdbc-postgres'
27+ end
You can’t perform that action at this time.
0 commit comments