frameit/lib/frameit/commands_generator.rb in fastlane-2.5.0 vs frameit/lib/frameit/commands_generator.rb in fastlane-2.6.0

- old
+ new

@@ -25,59 +25,59 @@ FastlaneCore::CommanderGenerator.new.generate(Frameit::Options.available_options) default_command :run command :run do |c| - c.syntax = 'frameit black' + c.syntax = 'fastlane frameit black' c.description = "Adds a black frame around all screenshots" c.action do |args, options| load_config(options) Frameit::Runner.new.run('.', nil) end end command :silver do |c| - c.syntax = 'frameit silver' + c.syntax = 'fastlane frameit silver' c.description = "Adds a silver frame around all screenshots" c.action do |args, options| load_config(options) Frameit::Runner.new.run('.', Frameit::Color::SILVER) end end command :gold do |c| - c.syntax = 'frameit gold' + c.syntax = 'fastlane frameit gold' c.description = "Adds a gold frame around all screenshots" c.action do |args, options| load_config(options) Frameit::Runner.new.run('.', Frameit::Color::GOLD) end end command :rose_gold do |c| - c.syntax = 'frameit rose_gold' + c.syntax = 'fastlane frameit rose_gold' c.description = "Adds a rose gold frame around all screenshots" c.action do |args, options| load_config(options) Frameit::Runner.new.run('.', Frameit::Color::ROSE_GOLD) end end command :setup do |c| - c.syntax = 'frameit setup' + c.syntax = 'fastlane frameit setup' c.description = "Downloads and sets up the latest device frames" c.action do |args, options| Frameit::FrameDownloader.new.download_frames end end command :download_frames do |c| - c.syntax = 'frameit download_frames' + c.syntax = 'fastlane frameit download_frames' c.description = "Downloads and sets up the latest device frames" c.action do |args, options| Frameit::FrameDownloader.new.download_frames end