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

- old
+ new

@@ -1,7 +1,8 @@ require 'commander' require 'fastlane/version' +require 'fastlane_core/ui/help_formatter' require 'fastlane_core/globals' require 'fastlane_core/configuration/configuration' require_relative 'device_types' require_relative 'runner' @@ -25,10 +26,10 @@ program :version, Fastlane::VERSION program :description, 'Quickly put your screenshots into the right device frames' program :help, 'Author', 'Felix Krause <frameit@krausefx.com>' program :help, 'Website', 'https://fastlane.tools' program :help, 'Documentation', 'https://docs.fastlane.tools/actions/frameit/' - 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`') default_command(:run)