Skip to content

Commit

Permalink
Fix tests for Ruby 1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
kiskoza committed Jan 2, 2024
1 parent 62defbb commit f145492
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ gemspec
gem "rake"
gem "minitest"

if RUBY_VERSION < '2.1'
if RUBY_VERSION < '2.0'
gem 'psych', '> 2.0.0'
gem 'rexml', '< 3.1'
elsif RUBY_VERSION < '2.1'
gem 'psych', '> 2.0.0'
gem 'rexml', '< 3.2.5'
end

0 comments on commit f145492

Please sign in to comment.