fastlane/lib/fastlane/commands_generator.rb in fastlane-2.219.0 vs fastlane/lib/fastlane/commands_generator.rb in fastlane-2.220.0
- old
+ new
@@ -247,9 +247,18 @@
require 'fastlane/documentation/actions_list'
Fastlane::ActionsList.run(filter: args.first)
end
end
+ command :console do |c|
+ c.syntax = 'fastlane console'
+ c.description = 'Opens an interactive developer console'
+ c.action do |args, options|
+ require 'fastlane/console'
+ Fastlane::Console.execute(args, options)
+ end
+ end
+
command :enable_auto_complete do |c|
c.syntax = 'fastlane enable_auto_complete'
c.description = 'Enable tab auto completion'
c.option('-c STRING[,STRING2]', '--custom STRING[,STRING2]', String, 'Add custom command(s) for which tab auto complete should be enabled too')