pem/lib/pem/commands_generator.rb in fastlane-2.181.0 vs pem/lib/pem/commands_generator.rb in fastlane-2.182.0

- old
+ new

@@ -1,9 +1,10 @@ require 'commander' require 'fastlane/version' require 'fastlane_core/configuration/configuration' +require 'fastlane_core/ui/help_formatter' require_relative 'options' require_relative 'manager' HighLine.track_eof = false @@ -20,10 +21,10 @@ program :version, Fastlane::VERSION program :description, 'CLI for \'PEM\' - Automatically generate and renew your push notification profiles' program :help, 'Author', 'Felix Krause <pem@krausefx.com>' program :help, 'Website', 'https://fastlane.tools' program :help, 'Documentation', 'https://docs.fastlane.tools/actions/pem/' - program :help_formatter, :compact + program :help_formatter, FastlaneCore::HelpFormatter global_option('--verbose') { FastlaneCore::Globals.verbose = true } global_option('--env STRING[,STRING2]', String, 'Add environment(s) to use with `dotenv`') command :renew do |c|