Add yardoc for CLI class.

This commit is contained in:
Michael Kessler 2011-09-20 10:05:11 +02:00
parent 48863fee0d
commit e126c7f609

View File

@ -2,89 +2,172 @@ require 'thor'
require 'guard/version' require 'guard/version'
module Guard module Guard
# Guard command line interface managed by [Thor](https://github.com/wycats/thor).
# This is the main interface to Guard that is called by the Guard binary at `bin/guard`.
#
class CLI < Thor class CLI < Thor
default_task :start default_task :start
method_option :clear, :type => :boolean, :default => false, :aliases => '-c', :banner => "Auto clear shell before each change/run_all/reload" desc 'start', 'Starts Guard'
method_option :notify, :type => :boolean, :default => true, :aliases => '-n', :banner => "Notifications feature (growl/libnotify)"
method_option :debug, :type => :boolean, :default => false, :aliases => '-d', :banner => "Print debug messages"
method_option :group, :type => :array, :default => [], :aliases => '-g', :banner => "Run only the passed groups"
method_option :watchdir, :type => :string, :aliases => '-w', :banner => "Specify the directory to watch"
method_option :guardfile, :type => :string, :aliases => '-G', :banner => "Specify a Guardfile"
desc "start", "Starts Guard" method_option :clear,
:type => :boolean,
:default => false,
:aliases => '-c',
:banner => 'Auto clear shell before each change/run_all/reload'
method_option :notify,
:type => :boolean,
:default => true,
:aliases => '-n',
:banner => 'Notifications feature (growl/libnotify)'
method_option :debug,
:type => :boolean,
:default => false,
:aliases => '-d',
:banner => 'Print debug messages'
method_option :group,
:type => :array,
:default => [],
:aliases => '-g',
:banner => 'Run only the passed groups'
method_option :watchdir,
:type => :string,
:aliases => '-w',
:banner => 'Specify the directory to watch'
method_option :guardfile,
:type => :string,
:aliases => '-G',
:banner => 'Specify a Guardfile'
# Start Guard by initialize the defined Guards and watch the file system.
# This is the default task, so calling `guard` is the same as calling `guard start`.
#
# @see Guard.start
#
def start def start
::Guard.start(options) ::Guard.start(options)
end end
desc "list", "Lists guards that can be used with init" desc 'list', 'Lists guards that can be used with init'
# List the Guards that are available for use in your system and marks
# those that are currently used in your `Guardfile`.
#
# @example guard list output
#
# Available guards:
# bundler *
# livereload
# ronn
# rspec *
# spork
#
# See also https://github.com/guard/guard/wiki/List-of-available-Guards
# * denotes ones already in your Guardfile
#
# @see Guard::DslDescriber
#
def list def list
::Guard::DslDescriber.evaluate_guardfile(options) Guard::DslDescriber.evaluate_guardfile(options)
installed = []
::Guard::DslDescriber.guardfile_structure.each do |group| installed = Guard::DslDescriber.guardfile_structure.inject([]) do |installed, group|
group[:guards].each {|x| installed << x[:name]} if group[:guards] group[:guards].each { |guard| installed << guard[:name] } if group[:guards]
installed
end end
::Guard::UI.info "Available guards:" Guard::UI.info 'Available guards:'
::Guard::guard_gem_names.sort.each do |name|
if installed.include? name Guard::guard_gem_names.sort.uniq.each do |name|
::Guard::UI.info " #{name} *" Guard::UI.info " #{ name } #{ installed.include?(name) ? '*' : '' }"
else
::Guard::UI.info " #{name}"
end
end
::Guard::UI.info ' '
::Guard::UI.info "See also https://github.com/guard/guard/wiki/List-of-available-Guards"
::Guard::UI.info "* denotes ones already in your Guardfile"
end end
desc "version", "Prints Guard's version" Guard::UI.info ' '
def version Guard::UI.info 'See also https://github.com/guard/guard/wiki/List-of-available-Guards'
::Guard::UI.info "Guard version #{Guard::VERSION}" Guard::UI.info '* denotes ones already in your Guardfile'
end end
desc 'version', 'Show the Guard version'
map %w(-v --version) => :version map %w(-v --version) => :version
desc "init [GUARD]", "Generates a Guardfile into the current working directory, or insert the given GUARD in an existing Guardfile" # Shows the current version of Guard.
def init(guard_name = nil) #
if !File.exist?("Guardfile") # @see Guard::VERSION
puts "Writing new Guardfile to #{Dir.pwd}/Guardfile" #
FileUtils.cp(File.expand_path('../templates/Guardfile', __FILE__), 'Guardfile') def version
elsif guard_name.nil? Guard::UI.info "Guard version #{ Guard::VERSION }"
::Guard::UI.error "Guardfile already exists at #{Dir.pwd}/Guardfile"
exit 1
end end
desc 'init [GUARD]', 'Generates a Guardfile at the current working directory, or insert the given GUARD to an existing Guardfile'
# Appends the Guard template to the `Guardfile`, or creates an initial
# `Guardfile` when no Guard name is passed,
#
# @param [String] guard_name the name of the Guard to initialize
#
def init(guard_name = nil)
if guard_name if guard_name
guard_class = ::Guard.get_guard_class(guard_name) guard_class = ::Guard.get_guard_class(guard_name)
guard_class.init(guard_name) guard_class.init(guard_name)
end
end
desc "show", "Show all defined Guards and their options"
def show
::Guard::DslDescriber.evaluate_guardfile(options)
::Guard::DslDescriber.guardfile_structure.each do |group|
if !group[:guards].empty?
if group[:group]
::Guard::UI.info "Group #{group[:group]}:"
else else
::Guard::UI.info "(global):" if File.exist?('Guardfile')
puts 'Writing new Guardfile to #{Dir.pwd}/Guardfile'
FileUtils.cp(File.expand_path('../templates/Guardfile', __FILE__), 'Guardfile')
else
Guard::UI.error "Guardfile already exists at #{ Dir.pwd }/Guardfile"
exit 1
end
end
end
desc 'show', 'Show all defined Guards and their options'
map %w(-T) => :show
# Shows all Guards and their options that are defined in
# the `Guardfile`.
#
# @example guard show output
#
# (global):
# bundler
# coffeescript: input => "app/assets/javascripts", noop => true
# jasmine
# rspec: cli => "--fail-fast --format Fuubar
#
# @see Guard::DslDescriber
#
def show
Guard::DslDescriber.evaluate_guardfile(options)
Guard::DslDescriber.guardfile_structure.each do |group|
unless group[:guards].empty?
if group[:group]
Guard::UI.info "Group #{ group[:group] }:"
else
Guard::UI.info '(global):'
end end
group[:guards].each do |guard| group[:guards].each do |guard|
line = " #{ guard[:name] }" line = " #{ guard[:name] }"
if !guard[:options].empty? unless guard[:options].empty?
line += ": #{guard[:options].collect { |k, v| "#{k} => #{v.inspect}" }.join(", ")}" line += ": #{ guard[:options].collect { |k, v| "#{ k } => #{ v.inspect }" }.join(', ') }"
end end
::Guard::UI.info line
Guard::UI.info line
end end
end end
end end
::Guard::UI.info '' Guard::UI.info ''
end end
map %w(-T) => :show
end end
end end