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 27, 2024
1 parent 8387085 commit b12198f
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 @@ -19,7 +19,11 @@ gem "fakefs", "1.8"
# for file uploads with Faraday
gem "mime-types", ['>= 1.16', '< 4.0']
# 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 b12198f

Please sign in to comment.