Skip to content

Commit

Permalink
Temporary restrict Roda version in CI on Ruby <2.3
Browse files Browse the repository at this point in the history
One of the Rails 4 monkey patches breaks Roda's capture_erb
plugin after the changes in Roda 3.82.  I think I'll fix
this in Roda, but in the meantime, this should get CI passing.
  • Loading branch information
jeremyevans committed Sep 12, 2024
1 parent 2711709 commit dfd2cd9
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .ci.gemfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
source 'https://rubygems.org'

gem "minitest-global_expectations"
gem "roda"
gem "rack_csrf"
gem "erubi", '>= 1.13'
gem "tilt"

if RUBY_VERSION < '2.3'
gem "roda", '< 3.82'
else
gem "roda"
end

if RUBY_VERSION < '2.0'
gem 'mime-types', '< 2'
gem 'concurrent-ruby', '<1.1.10'
Expand Down

0 comments on commit dfd2cd9

Please sign in to comment.