Skip to content

Commit

Permalink
Conditionally relax ox version to install properly on Windows with ru…
Browse files Browse the repository at this point in the history
…by 3.x and solve fastlane#21684
  • Loading branch information
lacostej committed Feb 26, 2024
1 parent 7599961 commit 63a7323
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@ gem "danger-junit", "~> 1.0"
# Version 1.9+ requires Ruby >=2.7, while fastlane uses a `required_ruby_version` of `>= 2.6`.
gem "fakefs", "1.8"
# Fast XML parser and object marshaller.
gem "ox", "2.13.2"
if RUBY_VERSION < '2.7.0'
gem "ox", "2.13.2"
else
gem "ox", "~> 2.13"
end
# Provides an interactive debugging environment for Ruby.
gem "pry"
# A plugin for pry that adds step-by-step debugging and stack navigation.
Expand Down

0 comments on commit 63a7323

Please sign in to comment.