Skip to content

Commit

Permalink
Remove explicit dependency on highline gem.
Browse files Browse the repository at this point in the history
Fastlane >= 2.182 depends on a newer version of highline (one that supports Ruby 3.0). It was only ever used to fix a bug in Spaceship, but that bug has been fixed since Fastlane v2.75.0.
  • Loading branch information
andrewhavens committed Aug 25, 2021
1 parent 9f1b400 commit 7d8dc3f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
1 change: 0 additions & 1 deletion lib/motion-provisioning.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@

require 'plist'
require 'security'
require 'highline/import'
require 'spaceship'
require 'motion-provisioning/spaceship/portal/certificate'
require 'motion-provisioning/spaceship/portal_client'
Expand Down
2 changes: 1 addition & 1 deletion lib/motion-provisioning/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module MotionProvisioning
VERSION = "1.0.4"
VERSION = "1.1.0"
end
5 changes: 2 additions & 3 deletions motion-provisioning.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,8 @@ Gem::Specification.new do |spec|

spec.require_paths = ["lib"]

# Spaceship depends on the `plist` and `security` gems which we use too
spec.add_dependency 'highline', '>= 1.7.2', '< 2.0.0' # user inputs (e.g. passwords)
spec.add_dependency 'fastlane', '~> 2.113', '< 2.182' # fastlane 2.182 requires highline 2.0
# Fastlane depends on the `plist` and `security` gems which we use too
spec.add_dependency 'fastlane', '~> 2.182'

spec.add_development_dependency 'rake', '~> 10.0'
spec.add_development_dependency 'rspec', '~> 3.1'
Expand Down

0 comments on commit 7d8dc3f

Please sign in to comment.