lib/discourse_theme/cli.rb in discourse_theme-0.4.0 vs lib/discourse_theme/cli.rb in discourse_theme-0.4.1

- old
+ new

@@ -1,5 +1,6 @@ +# frozen_string_literal: true module DiscourseTheme class Cli @@prompt = ::TTY::Prompt.new(help_color: :cyan) @@pastel = Pastel.new @@ -35,12 +36,12 @@ SETTINGS_FILE = File.expand_path("~/.discourse_theme") def usage puts "Usage: discourse_theme COMMAND [--reset]" puts - puts "discourse_theme new DIR : Creates a new theme in the designated directory" - puts "discourse_theme download DIR : Download a theme from the server, and store in the designated directory" - puts "discourse_theme watch DIR : Watches the theme directory and synchronizes with Discourse" + puts "discourse_theme new DIR - Creates a new theme in the designated directory" + puts "discourse_theme download DIR - Downloads a theme from the server and stores in the designated directory" + puts "discourse_theme watch DIR - Watches the theme directory and synchronizes with Discourse" puts puts "Use --reset to change the configuration for a directory" exit 1 end