File tree 2 files changed +14
-6
lines changed
2 files changed +14
-6
lines changed Original file line number Diff line number Diff line change @@ -12,24 +12,32 @@ gem "rspec", "~> 3.0"
12
12
13
13
gem "dotenv"
14
14
15
- git "https://github.com/rom-rb/rom.git" , branch : "release-5.3 " do
15
+ git "https://github.com/rom-rb/rom.git" , branch : "release-5.4 " do
16
16
gem "rom"
17
17
gem "rom-changeset"
18
18
gem "rom-core"
19
19
gem "rom-repository"
20
20
end
21
21
22
22
group :test do
23
- gem "pry"
24
- gem "pry-byebug" , "~> 3.8" , platforms : :ruby
25
- gem "rom-sql" , github : "rom-rb/rom-sql" , branch : "release-3.6"
23
+ if Gem ::Version . new ( RUBY_VERSION ) >= Gem ::Version . new ( "3.4" )
24
+ gem 'debug'
25
+ else
26
+ gem "pry"
27
+ gem "pry-byebug" , "~> 3.8" , platforms : :ruby
28
+ end
29
+ gem "rom-sql" , github : "rom-rb/rom-sql" , branch : "release-3.7"
26
30
27
31
gem "jdbc-postgres" , platforms : :jruby
28
32
gem "pg" , "~> 1.5" , platforms : :ruby
29
33
end
30
34
31
35
group :tools do
32
- gem "byebug" , platform : :mri
36
+ if Gem ::Version . new ( RUBY_VERSION ) >= Gem ::Version . new ( "3.4" )
37
+ gem "byebug" , platform : :mri
38
+ else
39
+ gem "pry-byebug" , "~> 3.8" , platforms : :ruby
40
+ end
33
41
gem "redcarpet" # for yard
34
42
end
35
43
Original file line number Diff line number Diff line change 16
16
17
17
group :tools do
18
18
# this is the same version that we use on codacy
19
- gem "rubocop", "1.26.1 "
19
+ gem "rubocop", "1.69.2 "
20
20
end
You can’t perform that action at this time.
0 commit comments