screengrab/lib/screengrab/commands_generator.rb in fastlane_hotfix-2.165.1 vs screengrab/lib/screengrab/commands_generator.rb in fastlane_hotfix-2.187.0

- old
+ new

@@ -1,8 +1,9 @@ require 'commander' require 'fastlane/version' +require 'fastlane_core/ui/help_formatter' require 'fastlane_core/fastlane_folder' require 'fastlane_core/configuration/configuration' require_relative 'android_environment' require_relative 'dependency_checker' require_relative 'runner' @@ -24,10 +25,10 @@ program :version, Fastlane::VERSION program :description, 'CLI for \'screengrab\' - Automate taking localized screenshots of your Android app on emulators or real devices' program :help, 'Authors', 'Andrea Falcone <asfalcone@google.com>, Michael Furtak <mfurtak@google.com>' program :help, 'Website', 'https://fastlane.tools' program :help, 'Documentation', 'https://docs.fastlane.tools/actions/screengrab/' - program :help_formatter, :compact + program :help_formatter, FastlaneCore::HelpFormatter global_option('--verbose', 'Shows a more verbose output') { FastlaneCore::Globals.verbose = true } always_trace!