Skip to content

Commit

Permalink
Merge pull request #317 from DeployGate/jmatsu/fix/multi_xml_constraint
Browse files Browse the repository at this point in the history
Restrict multi_xml version on Ruby 3.0 or lower
  • Loading branch information
jmatsu authored May 2, 2024
2 parents 9fc5bfc + 0b119e2 commit e82c1b2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ jobs:
with:
ruby-version: ${{ matrix.ruby_version }}
bundler-cache: true
- run: gem update --system
- run: gem update --system 3.4.22 # The latest of Ruby 2.x support
- run: bundle exec rake
4 changes: 4 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,7 @@ source 'https://rubygems.org'

# Specify your gem's dependencies in deploygate.gemspec
gemspec

if Gem::Version.create(RUBY_VERSION) < Gem::Version.create("3.1.0")
gem "multi_xml", "~> 0.6.0"
end

0 comments on commit e82c1b2

Please sign in to comment.