Module: Thor::Base::ClassMethods
- Includes:
- CommonClassOptions
- Defined in:
- lib/thor/base.rb
Overview
Methods that are mixed in as module/class/singleton methods to modules that include Thor::Base.
Instance Method Summary collapse
-
#all_commands ⇒ Object
(also: #all_tasks)
Returns the commands for this Thor class and all subclasses.
-
#argument(name, options = {}) ⇒ Object
Adds an argument to the class and creates an attr_accessor for it.
-
#arguments ⇒ Object
Returns this class arguments, looking up in the ancestors chain.
-
#attr_accessor ⇒ Object
:nodoc:.
-
#attr_reader ⇒ Object
:nodoc:.
-
#attr_writer ⇒ Object
:nodoc:.
-
#baseclass ⇒ Object
protected
SIGNATURE: Sets the baseclass.
-
#basename ⇒ Object
protected
The basename of the program invoking the thor class.
-
#build_option(name, options, scope) ⇒ Object
protected
Build an option and adds it to the given scope.
-
#build_options(options, scope) ⇒ Object
protected
Receives a hash of options, parse them and add to the scope.
-
#check_default_type ⇒ Object
:nodoc:.
-
#check_default_type! ⇒ Object
If you want to raise an error when the default value of an option does not match the type call check_default_type! This is disabled by default for compatibility.
-
#check_default_type? ⇒ Boolean
:nodoc:.
-
#check_unknown_options ⇒ Object
:nodoc:.
-
#check_unknown_options! ⇒ Object
If you want to raise an error for unknown options, call check_unknown_options! This is disabled by default to allow dynamic invocations.
-
#check_unknown_options?(config) ⇒ Boolean
:nodoc:.
-
#class_option(name, options = {}) ⇒ Object
Adds an option to the set of class options.
-
#class_options(options = nil) ⇒ Object
Adds a bunch of options to the set of class options.
-
#class_options_help(shell, groups = {}) ⇒ Object
protected
Prints the class options per group.
-
#commands ⇒ Object
(also: #tasks)
Returns the commands for this Thor class.
-
#create_command(meth) ⇒ Object
(also: #create_task)
protected
SIGNATURE: Creates a new command if valid_command? is true.
-
#disable_required_check?(command_name) ⇒ Boolean
If true, option set will not suspend the execution of the command when a required option is not provided.
-
#dispatch(command, given_args, given_opts, config) ⇒ Object
protected
SIGNATURE: The hook invoked by start.
-
#exec!(given_args = ARGV, config = {}) ⇒ Object
Like #start, but explicitly for handling over control in an executable.
-
#exit_on_failure? ⇒ Boolean
protected
A flag that makes the process exit with status 1 if any error happens.
-
#find_and_refresh_command(name) ⇒ Object
(also: #find_and_refresh_task)
protected
Finds a command with the given name.
-
#from_superclass(method, default = nil) ⇒ Object
protected
Retrieves a value from superclass.
-
#group(name = nil) ⇒ Object
Defines the group.
-
#handle_argument_error(command, error, args, arity) ⇒ Object
:nodoc:.
-
#handle_no_command_error(command, has_namespace = $thor_runner) ⇒ Object
(also: #handle_no_task_error)
:nodoc:.
-
#inherited(klass) ⇒ Object
protected
Everytime someone inherits from a Thor class, register the klass and file into baseclass.
-
#initialize_added ⇒ Object
protected
SIGNATURE: Defines behavior when the initialize method is added to the class.
-
#is_thor_reserved_word?(word, type) ⇒ Boolean
protected
Raises an error if the word given is a Thor reserved word.
-
#method_added(meth) ⇒ Object
protected
Fire this callback whenever a method is added.
-
#namespace(name = nil) ⇒ Object
Sets the namespace for the Thor or Thor::Group class.
-
#no_commands ⇒ Object
(also: #no_tasks)
All methods defined inside the given block are not added as commands.
-
#print_options(shell, options, group_name = nil) ⇒ Object
protected
Receives a set of options and print them.
-
#public_command(*names) ⇒ Object
(also: #public_task)
Allows to use private methods from parent in child classes as commands.
-
#remove_argument(*names) ⇒ Object
Removes a previous defined argument.
-
#remove_class_option(*names) ⇒ Object
Removes a previous defined class option.
-
#remove_command(*names) ⇒ Object
(also: #remove_task)
Removes a given command from this Thor class.
-
#start(given_args = ARGV, config = {}) ⇒ Object
Parses the command and options from the given args, instantiate the class and invoke the command.
-
#stop_on_unknown_option?(command_name) ⇒ Boolean
If true, option parsing is suspended as soon as an unknown option or a regular argument is encountered.
-
#strict_args_position ⇒ Object
:nodoc:.
-
#strict_args_position! ⇒ Object
If you want only strict string args (useful when cascading thor classes), call strict_args_position! This is disabled by default to allow dynamic invocations.
-
#strict_args_position?(config) ⇒ Boolean
:nodoc:.
Methods included from CommonClassOptions
Instance Method Details
#all_commands ⇒ Object Also known as: all_tasks
Returns the commands for this Thor class and all subclasses.
Returns
- OrderedHash
-
An ordered hash with commands names as keys and Thor::Command objects as values.
489 490 491 492 493 |
# File 'lib/thor/base.rb', line 489 def all_commands @all_commands ||= from_superclass( :all_commands, Thor::CoreExt::OrderedHash.new ) @all_commands.merge!(commands) end |
#argument(name, options = {}) ⇒ Object
Adds an argument to the class and creates an attr_accessor for it.
Arguments are different from options in several aspects. The first one is how they are parsed from the command line, arguments are retrieved from position:
thor command NAME
Instead of:
thor command --name=NAME
Besides, arguments are used inside your code as an accessor (self.argument), while options are all kept in a hash (self.options).
Finally, arguments cannot have type :default or :boolean but can be optional (supplying :optional => :true or :required => false), although you cannot have a required argument after a non-required argument. If you try it, an error is raised.
Parameters
- name<Symbol>
-
The name of the argument.
- options<Hash>
-
Described below.
Options
:desc - Description for the argument. :required - If the argument is required or not. :optional - If the argument is optional or not. :type - The type of the argument, can be :string, :hash, :array,
:numeric.
:default - Default value for this argument. It cannot be required and
have default values.
:banner - String to show on usage notes.
Errors
- ArgumentError
-
Raised if you supply a required argument after a non required one.
344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 |
# File 'lib/thor/base.rb', line 344 def argument(name, = {}) is_thor_reserved_word?(name, :argument) no_commands { attr_accessor name } required = if .key?(:optional) ![:optional] elsif .key?(:required) [:required] else [:default].nil? end remove_argument name if required arguments.each do |argument| next if argument.required? raise ArgumentError, "You cannot have #{name.to_s.inspect} as required argument " \ "after the non-required argument #{argument.human_name.inspect}." end end [:required] = required arguments << Thor::Argument.new(name, ) end |
#arguments ⇒ Object
377 378 379 |
# File 'lib/thor/base.rb', line 377 def arguments @arguments ||= from_superclass(:arguments, []) end |
#attr_accessor ⇒ Object
:nodoc:
244 245 246 |
# File 'lib/thor/base.rb', line 244 def attr_accessor(*) #:nodoc: no_commands { super } end |
#attr_reader ⇒ Object
:nodoc:
236 237 238 |
# File 'lib/thor/base.rb', line 236 def attr_reader(*) #:nodoc: no_commands { super } end |
#attr_writer ⇒ Object
:nodoc:
240 241 242 |
# File 'lib/thor/base.rb', line 240 def attr_writer(*) #:nodoc: no_commands { super } end |
#baseclass ⇒ Object (protected)
SIGNATURE: Sets the baseclass. This is where the superclass lookup finishes.
813 814 |
# File 'lib/thor/base.rb', line 813 def baseclass #:nodoc: end |
#basename ⇒ Object (protected)
The basename of the program invoking the thor class.
807 808 809 |
# File 'lib/thor/base.rb', line 807 def basename File.basename($PROGRAM_NAME).split(" ").first end |
#build_option(name, options, scope) ⇒ Object (protected)
Build an option and adds it to the given scope.
Parameters
- name<Symbol>
-
The name of the argument.
- options<Hash>
-
Described in both class_option and method_option.
- scope<Hash>
-
Options hash that is being built up
715 716 717 718 719 720 |
# File 'lib/thor/base.rb', line 715 def build_option(name, , scope) #:nodoc: scope[name] = Thor::Option.new( name, .merge(:check_default_type => check_default_type?) ) end |
#build_options(options, scope) ⇒ Object (protected)
Receives a hash of options, parse them and add to the scope. This is a fast way to set a bunch of options:
:foo => true, :bar => :required, :baz => :string
Parameters
Hash[Symbol => Object]
729 730 731 732 733 |
# File 'lib/thor/base.rb', line 729 def (, scope) #:nodoc: .each do |key, value| scope[key] = Thor::Option.parse(key, value) end end |
#check_default_type ⇒ Object
:nodoc:
270 271 272 |
# File 'lib/thor/base.rb', line 270 def check_default_type #:nodoc: @check_default_type ||= from_superclass(:check_default_type, false) end |
#check_default_type! ⇒ Object
If you want to raise an error when the default value of an option does not match the type call check_default_type! This is disabled by default for compatibility.
266 267 268 |
# File 'lib/thor/base.rb', line 266 def check_default_type! @check_default_type = true end |
#check_default_type? ⇒ Boolean
:nodoc:
274 275 276 |
# File 'lib/thor/base.rb', line 274 def check_default_type? #:nodoc: !!check_default_type end |
#check_unknown_options ⇒ Object
:nodoc:
255 256 257 |
# File 'lib/thor/base.rb', line 255 def #:nodoc: ||= from_superclass(:check_unknown_options, false) end |
#check_unknown_options! ⇒ Object
If you want to raise an error for unknown options, call check_unknown_options! This is disabled by default to allow dynamic invocations.
251 252 253 |
# File 'lib/thor/base.rb', line 251 def = true end |
#check_unknown_options?(config) ⇒ Boolean
:nodoc:
259 260 261 |
# File 'lib/thor/base.rb', line 259 def (config) #:nodoc: !! end |
#class_option(name, options = {}) ⇒ Object
Adds an option to the set of class options
Parameters
- name<Symbol>
-
The name of the argument.
- options<Hash>
-
Described below.
Options
- :desc
-
– Description for the argument.
- :required
-
– If the argument is required or not.
- :default
-
– Default value for this argument.
- :group
-
– The group for this options. Use by class options to
output in different levels. - :aliases
-
– Aliases for this option. Note: Thor follows a
convention of one-dash-one-letter . Thus aliases like "-something" wouldn't be parsed; use either "\--something" or "-s" instead. - :type
-
– The type of the argument, can be :string, :hash, :array,
:numeric or :boolean. - :banner
-
– String to show on usage notes.
- :hide
-
– If you want to hide this option from the help.
417 418 419 |
# File 'lib/thor/base.rb', line 417 def class_option(name, = {}) build_option(name, , ) end |
#class_options(options = nil) ⇒ Object
Adds a bunch of options to the set of class options.
:foo => false, :bar => :required, :baz => :string
If you prefer more detailed declaration, check class_option.
Parameters
Hash[Symbol => Object]
390 391 392 393 394 |
# File 'lib/thor/base.rb', line 390 def ( = nil) ||= from_superclass(:class_options, {}) (, ) if end |
#class_options_help(shell, groups = {}) ⇒ Object (protected)
Prints the class options per group. If an option does not belong to any group, it’s printed as Class option.
661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 |
# File 'lib/thor/base.rb', line 661 def (shell, groups = {}) #:nodoc: # Group options by group .each do |_, value| groups[value.group] ||= [] groups[value.group] << value end # Deal with default group = groups.delete(nil) || [] (shell, ) # Print all others groups.each do |group_name, | (shell, , group_name) end end |
#commands ⇒ Object Also known as: tasks
Returns the commands for this Thor class.
Returns
- OrderedHash
-
An ordered hash with commands names as keys and Thor::Command objects as values.
478 479 480 |
# File 'lib/thor/base.rb', line 478 def commands @commands ||= Thor::CoreExt::OrderedHash.new end |
#create_command(meth) ⇒ Object (protected) Also known as: create_task
SIGNATURE: Creates a new command if valid_command? is true. This method is called when a new method is added to the class.
818 819 |
# File 'lib/thor/base.rb', line 818 def create_command(meth) #:nodoc: end |
#disable_required_check?(command_name) ⇒ Boolean
If true, option set will not suspend the execution of the command when a required option is not provided.
287 288 289 |
# File 'lib/thor/base.rb', line 287 def disable_required_check?(command_name) #:nodoc: false end |
#dispatch(command, given_args, given_opts, config) ⇒ Object (protected)
SIGNATURE: The hook invoked by start.
828 829 830 |
# File 'lib/thor/base.rb', line 828 def dispatch(command, given_args, given_opts, config) #:nodoc: raise NotImplementedError end |
#exec!(given_args = ARGV, config = {}) ⇒ Object
Like #start, but explicitly for handling over control in an executable.
For details on why this is here see Too Broken to Fail.
609 610 611 612 613 614 615 |
# File 'lib/thor/base.rb', line 609 def exec!(given_args = ARGV, config = {}) execution = Thor::Execution.new thor_class: self, given_args: given_args, thor_config: config execution.exec! end |
#exit_on_failure? ⇒ Boolean (protected)
A flag that makes the process exit with status 1 if any error happens.
800 801 802 |
# File 'lib/thor/base.rb', line 800 def exit_on_failure? false end |
#find_and_refresh_command(name) ⇒ Object (protected) Also known as: find_and_refresh_task
Finds a command with the given name. If the command belongs to the current class, just return it, otherwise dup it and add the fresh copy to the current command hash.
738 739 740 741 742 743 744 745 746 747 748 |
# File 'lib/thor/base.rb', line 738 def find_and_refresh_command(name) #:nodoc: if commands[name.to_s] commands[name.to_s] elsif command = all_commands[name.to_s] # rubocop:disable AssignmentInCondition commands[name.to_s] = command.clone else raise ArgumentError, "You supplied :for => #{name.inspect}, but the command " \ "#{name.inspect} could not be found." end end |
#from_superclass(method, default = nil) ⇒ Object (protected)
Retrieves a value from superclass. If it reaches the baseclass, returns default.
780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 |
# File 'lib/thor/base.rb', line 780 def from_superclass(method, default = nil) if self == baseclass || !superclass.respond_to?(method, true) default else value = superclass.send(method) # Ruby implements `dup` on Object, but raises a `TypeError` # if the method is called on immediates. As a result, we # don't have a good way to check whether dup will succeed # without calling it and rescuing the TypeError. begin value.dup rescue TypeError value end end end |
#group(name = nil) ⇒ Object
Defines the group. This is used when thor list is invoked so you can specify that only commands from a pre-defined group will be shown. Defaults to standard.
Parameters
name<String|Symbol>
464 465 466 467 468 469 470 |
# File 'lib/thor/base.rb', line 464 def group(name = nil) if name @group = name.to_s else @group ||= from_superclass(:group, "standard") end end |
#handle_argument_error(command, error, args, arity) ⇒ Object
:nodoc:
646 647 648 649 650 651 652 653 |
# File 'lib/thor/base.rb', line 646 def handle_argument_error(command, error, args, arity) #:nodoc: name = [command.ancestor_name, command.name].compact.join(" ") msg = "ERROR: \"#{basename} #{name}\" was called with ".dup msg << "no arguments" if args.empty? msg << "arguments " << args.inspect unless args.empty? msg << "\nUsage: #{banner(command).inspect}" raise InvocationError, msg end |
#handle_no_command_error(command, has_namespace = $thor_runner) ⇒ Object Also known as: handle_no_task_error
:nodoc:
635 636 637 638 639 640 641 642 643 |
# File 'lib/thor/base.rb', line 635 def handle_no_command_error(command, has_namespace = $thor_runner) #:nodoc: if has_namespace raise UndefinedCommandError, "Could not find command #{command.inspect} in " \ "#{namespace.inspect} namespace." end raise UndefinedCommandError, "Could not find command #{command.inspect}." end |
#inherited(klass) ⇒ Object (protected)
Everytime someone inherits from a Thor class, register the klass and file into baseclass.
753 754 755 756 |
# File 'lib/thor/base.rb', line 753 def inherited(klass) Thor::Base.register_klass_file(klass) klass.instance_variable_set(:@no_commands, false) end |
#initialize_added ⇒ Object (protected)
SIGNATURE: Defines behavior when the initialize method is added to the class.
824 825 |
# File 'lib/thor/base.rb', line 824 def initialize_added #:nodoc: end |
#is_thor_reserved_word?(word, type) ⇒ Boolean (protected)
Raises an error if the word given is a Thor reserved word.
703 704 705 706 707 |
# File 'lib/thor/base.rb', line 703 def is_thor_reserved_word?(word, type) #:nodoc: return false unless THOR_RESERVED_WORDS.include?(word.to_s) raise "#{word.inspect} is a Thor reserved word and cannot be " \ "defined as #{type}" end |
#method_added(meth) ⇒ Object (protected)
Fire this callback whenever a method is added. Added methods are tracked as commands by invoking the create_command method.
760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 |
# File 'lib/thor/base.rb', line 760 def method_added(meth) meth = meth.to_s if meth == "initialize" initialize_added return end # Return if it's not a public instance method return unless public_method_defined?(meth.to_sym) @no_commands ||= false return if @no_commands || !create_command(meth) is_thor_reserved_word?(meth, :command) Thor::Base.register_klass_file(self) end |
#namespace(name = nil) ⇒ Object
Sets the namespace for the Thor or Thor::Group class. By default the namespace is retrieved from the class name. If your Thor class is named Scripts::MyScript, the help method, for example, will be called as:
thor scripts:my_script -h
If you change the namespace:
namespace :my_scripts
You change how your commands are invoked:
thor my_scripts -h
Finally, if you change your namespace to default:
namespace :default
Your commands can be invoked with a shortcut. Instead of:
thor :my_command
568 569 570 571 572 573 574 |
# File 'lib/thor/base.rb', line 568 def namespace(name = nil) if name @namespace = name.to_s else @namespace ||= Thor::Util.namespace_from_thor_class(self) end end |
#no_commands ⇒ Object Also known as: no_tasks
All methods defined inside the given block are not added as commands.
So you can do:
class MyScript < Thor
no_commands do
def this_is_not_a_command
end
end
end
You can also add the method and remove it from the command list:
class MyScript < Thor
def this_is_not_a_command
end
remove_command :this_is_not_a_command
end
538 539 540 541 542 543 |
# File 'lib/thor/base.rb', line 538 def no_commands @no_commands = true yield ensure @no_commands = false end |
#print_options(shell, options, group_name = nil) ⇒ Object (protected)
Receives a set of options and print them.
679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 |
# File 'lib/thor/base.rb', line 679 def (shell, , group_name = nil) return if .empty? list = [] padding = .map { |o| o.aliases.size }.max.to_i * 4 .each do |option| next if option.hide item = [option.usage(padding)] item.push(option.description ? "# #{option.description}" : "") list << item list << ["", "# Default: #{option.default}"] if option.show_default? if option.enum list << ["", "# Possible values: #{option.enum.join(', ')}"] end end shell.say(group_name ? "#{group_name} options:" : "Options:") shell.print_table(list, :indent => 2) shell.say "" end |
#public_command(*names) ⇒ Object Also known as: public_task
Allows to use private methods from parent in child classes as commands.
Parameters
names<Array>:: Method names to be used as commands
Examples
public_command :foo
public_command :foo, :bar, :baz
628 629 630 631 632 |
# File 'lib/thor/base.rb', line 628 def public_command(*names) names.each do |name| class_eval "def #{name}(*); super end" end end |
#remove_argument(*names) ⇒ Object
Removes a previous defined argument. If :undefine is given, undefine accessors as well.
Parameters
- names<Array>
-
Arguments to be removed
Examples
remove_argument :foo
remove_argument :foo, :bar, :baz, :undefine => true
432 433 434 435 436 437 438 439 |
# File 'lib/thor/base.rb', line 432 def remove_argument(*names) = names.last.is_a?(Hash) ? names.pop : {} names.each do |name| arguments.delete_if { |a| a.name == name.to_s } undef_method name, "#{name}=" if [:undefine] end end |
#remove_class_option(*names) ⇒ Object
Removes a previous defined class option.
Parameters
- names<Array>
-
Class options to be removed
Examples
remove_class_option :foo
remove_class_option :foo, :bar, :baz
451 452 453 454 455 |
# File 'lib/thor/base.rb', line 451 def remove_class_option(*names) names.each do |name| .delete(name) end end |
#remove_command(*names) ⇒ Object Also known as: remove_task
Removes a given command from this Thor class. This is usually done if you are inheriting from another class and don’t want it to be available anymore.
By default it only remove the mapping to the command. But you can supply :undefine => true to undefine the method from the class as well.
Parameters
- name<Symbol|String>
-
The name of the command to be removed
- options<Hash>
-
You can give :undefine => true if you want commands the method to be undefined from the class as well.
508 509 510 511 512 513 514 515 516 |
# File 'lib/thor/base.rb', line 508 def remove_command(*names) = names.last.is_a?(Hash) ? names.pop : {} names.each do |name| commands.delete(name.to_s) all_commands.delete(name.to_s) undef_method name if [:undefine] end end |
#start(given_args = ARGV, config = {}) ⇒ Object
Parses the command and options from the given args, instantiate the class and invoke the command. This method is used when the arguments must be parsed from an array. If you are inside Ruby and want to use a Thor class, you can simply initialize it:
script = MyScript.new(args, , config)
script.invoke(:command, first_arg, second_arg, third_arg)
584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 |
# File 'lib/thor/base.rb', line 584 def start(given_args = ARGV, config = {}) config[:shell] ||= Thor::Base.shell.new dispatch(nil, given_args.dup, nil, config) rescue Thor::Error => e if config[:debug] || ENV["THOR_DEBUG"] == "1" raise e else config[:shell].error(e.) end exit(1) if exit_on_failure? rescue Errno::EPIPE # This happens if a thor command is piped to something like `head`, # which closes the pipe when it's done reading. This will also # mean that if the pipe is closed, further unnecessary # computation will not occur. exit(0) end |
#stop_on_unknown_option?(command_name) ⇒ Boolean
If true, option parsing is suspended as soon as an unknown option or a regular argument is encountered. All remaining arguments are passed to the command as regular arguments.
281 282 283 |
# File 'lib/thor/base.rb', line 281 def stop_on_unknown_option?(command_name) #:nodoc: false end |
#strict_args_position ⇒ Object
:nodoc:
298 299 300 |
# File 'lib/thor/base.rb', line 298 def strict_args_position #:nodoc: @strict_args_position ||= from_superclass(:strict_args_position, false) end |
#strict_args_position! ⇒ Object
If you want only strict string args (useful when cascading thor classes), call strict_args_position! This is disabled by default to allow dynamic invocations.
294 295 296 |
# File 'lib/thor/base.rb', line 294 def strict_args_position! @strict_args_position = true end |
#strict_args_position?(config) ⇒ Boolean
:nodoc:
302 303 304 |
# File 'lib/thor/base.rb', line 302 def strict_args_position?(config) #:nodoc: !!strict_args_position end |