File tree Expand file tree Collapse file tree 3 files changed +4
-6
lines changed
Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 3131 - ruby : " 2.7.0"
3232 fail_on_warnings : " true"
3333 dry_types_from_master : " true"
34- rom_core_from_master : " true"
3534 sequel_from_master : " true"
3635 env :
3736 APT_DEPS : " libpq-dev libmysqlclient-dev libsqlite3-dev"
3837 FAIL_ON_WARNINGS : ${{matrix.fail_on_warnings}}
3938 DRY_TYPES_FROM_MASTER : ${{matrix.dry_types_from_master}}
40- ROM_CORE_FROM_MASTER : ${{matrix.rom_core_from_master}}
4139 SEQUEL_FROM_MASTER : ${{matrix.sequel_from_master}}
Original file line number Diff line number Diff line change @@ -4,16 +4,16 @@ gemspec
44
55eval_gemfile 'Gemfile.devtools'
66
7- if ENV [ 'ROM_CORE_FROM_MASTER' ] . eql? ( 'true' )
8- gem 'rom-core' , git : 'https://github.com/rom-rb/rom.git' , branch : 'master'
9- end
7+ gem 'rom' , git : 'https://github.com/rom-rb/rom.git' , branch : 'master'
108
119if ENV [ 'DRY_TYPES_FROM_MASTER' ] . eql? ( 'true' )
1210 gem 'dry-types' , git : 'https://github.com/dry-rb/dry-types.git' , branch : 'master'
1311end
1412
1513if ENV [ 'SEQUEL_FROM_MASTER' ] . eql? ( 'true' )
1614 gem 'sequel' , git : 'https://github.com/jeremyevans/sequel.git' , branch : 'master'
15+ else
16+ gem 'sequel' , '5.31.0'
1717end
1818
1919group :test do
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ Gem::Specification.new do |spec|
2727 spec . add_runtime_dependency 'dry-equalizer' , '~> 0.2'
2828 spec . add_runtime_dependency 'dry-types' , '~> 1.0'
2929 spec . add_runtime_dependency 'dry-core' , '~> 0.4'
30- spec . add_runtime_dependency 'rom-core ' , '~> 5.2' , '>= 5.2.1'
30+ spec . add_runtime_dependency 'rom' , '~> 5.2' , '>= 5.2.1'
3131
3232 spec . add_development_dependency 'bundler'
3333 spec . add_development_dependency 'rake' , '~> 13.0'
You can’t perform that action at this time.
0 commit comments