Module: Bundler::Thor::Base::ClassMethods

Defined in:
lib/bundler/vendor/thor/lib/thor/base.rb

Instance Method Summary collapse

Instance Method Details

#all_commandsObject Also known as: all_tasks

Returns the commands for this Bundler::Thor class and all subclasses.

Returns

Hash

An ordered hash with commands names as keys and Bundler::Thor::Command objects as values.



374
375
376
377
# File 'lib/bundler/vendor/thor/lib/thor/base.rb', line 374

def all_commands
  @all_commands ||= from_superclass(:all_commands, Hash.new)
  @all_commands.merge!(commands)
end

#allow_incompatible_default_type!Object

If you want to use defaults that don’t match the type of an option, either specify ‘check_default_type: false` or call `allow_incompatible_default_type!`



164
165
166
# File 'lib/bundler/vendor/thor/lib/thor/base.rb', line 164

def allow_incompatible_default_type!
  @check_default_type = false
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.



236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
# File 'lib/bundler/vendor/thor/lib/thor/base.rb', line 236

def argument(name, options = {})
  is_thor_reserved_word?(name, :argument)
  no_commands { attr_accessor name }

  required = if options.key?(:optional)
    !options[:optional]
  elsif options.key?(:required)
    options[:required]
  else
    options[: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

  options[:required] = required

  arguments << Bundler::Thor::Argument.new(name, options)
end

#argumentsObject

Returns this class arguments, looking up in the ancestors chain.

Returns

Array



268
269
270
# File 'lib/bundler/vendor/thor/lib/thor/base.rb', line 268

def arguments
  @arguments ||= from_superclass(:arguments, [])
end

#attr_accessorObject

:nodoc:



137
138
139
# File 'lib/bundler/vendor/thor/lib/thor/base.rb', line 137

def attr_accessor(*) #:nodoc:
  no_commands { super }
end

#attr_readerObject

:nodoc:



129
130
131
# File 'lib/bundler/vendor/thor/lib/thor/base.rb', line 129

def attr_reader(*) #:nodoc:
  no_commands { super }
end

#attr_writerObject

:nodoc:



133
134
135
# File 'lib/bundler/vendor/thor/lib/thor/base.rb', line 133

def attr_writer(*) #:nodoc:
  no_commands { super }
end

#check_default_typeObject

:nodoc:



168
169
170
171
# File 'lib/bundler/vendor/thor/lib/thor/base.rb', line 168

def check_default_type #:nodoc:
  @check_default_type = from_superclass(:check_default_type, nil) unless defined?(@check_default_type)
  @check_default_type
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 will be the default; for compatibility a deprecation warning is issued if necessary.



158
159
160
# File 'lib/bundler/vendor/thor/lib/thor/base.rb', line 158

def check_default_type!
  @check_default_type = true
end

#check_unknown_optionsObject

:nodoc:



147
148
149
# File 'lib/bundler/vendor/thor/lib/thor/base.rb', line 147

def check_unknown_options #:nodoc:
  @check_unknown_options ||= 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.



143
144
145
# File 'lib/bundler/vendor/thor/lib/thor/base.rb', line 143

def check_unknown_options!
  @check_unknown_options = true
end

#check_unknown_options?(config) ⇒ Boolean

:nodoc:

Returns:

  • (Boolean)


151
152
153
# File 'lib/bundler/vendor/thor/lib/thor/base.rb', line 151

def check_unknown_options?(config) #:nodoc:
  !!check_unknown_options
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 options in different levels.

:aliases

– Aliases for this option. Note: Bundler::Thor follows a convention of one-dash-one-letter options. 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.



303
304
305
# File 'lib/bundler/vendor/thor/lib/thor/base.rb', line 303

def class_option(name, options = {})
  build_option(name, options, class_options)
end

#class_options(options = nil) ⇒ Object

Adds a bunch of options to the set of class options.

class_options :foo => false, :bar => :required, :baz => :string

If you prefer more detailed declaration, check class_option.

Parameters

Hash[Symbol => Object]



281
282
283
284
285
# File 'lib/bundler/vendor/thor/lib/thor/base.rb', line 281

def class_options(options = nil)
  @class_options ||= from_superclass(:class_options, {})
  build_options(options, @class_options) if options
  @class_options
end

#commandsObject Also known as: tasks

Returns the commands for this Bundler::Thor class.

Returns

Hash

An ordered hash with commands names as keys and Bundler::Thor::Command objects as values.



363
364
365
# File 'lib/bundler/vendor/thor/lib/thor/base.rb', line 363

def commands
  @commands ||= Hash.new
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.

Returns:

  • (Boolean)


182
183
184
# File 'lib/bundler/vendor/thor/lib/thor/base.rb', line 182

def disable_required_check?(command_name) #:nodoc:
  false
end

#exit_on_failure?Boolean

A flag that makes the process exit with status 1 if any error happens.

Returns:

  • (Boolean)


520
521
522
523
# File 'lib/bundler/vendor/thor/lib/thor/base.rb', line 520

def exit_on_failure?
  Bundler::Thor.deprecation_warning "Bundler::Thor exit with status 0 on errors. To keep this behavior, you must define `exit_on_failure?` in `#{self.name}`"
  false
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>



349
350
351
352
353
354
355
# File 'lib/bundler/vendor/thor/lib/thor/base.rb', line 349

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:

Raises:



510
511
512
513
514
515
516
517
# File 'lib/bundler/vendor/thor/lib/thor/base.rb', line 510

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).split("\n").join("\"\n       \"")}\""
  raise InvocationError, msg
end

#handle_no_command_error(command, has_namespace = $thor_runner) ⇒ Object Also known as: handle_no_task_error

:nodoc:



505
506
507
# File 'lib/bundler/vendor/thor/lib/thor/base.rb', line 505

def handle_no_command_error(command, has_namespace = $thor_runner) #:nodoc:
  raise UndefinedCommandError.new(command, all_commands.keys, (namespace if has_namespace))
end

#namespace(name = nil) ⇒ Object

Sets the namespace for the Bundler::Thor or Bundler::Thor::Group class. By default the namespace is retrieved from the class name. If your Bundler::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


458
459
460
461
462
463
464
# File 'lib/bundler/vendor/thor/lib/thor/base.rb', line 458

def namespace(name = nil)
  if name
    @namespace = name.to_s
  else
    @namespace ||= Bundler::Thor::Util.namespace_from_thor_class(self)
  end
end

#no_commands(&block) ⇒ Object Also known as: no_tasks

All methods defined inside the given block are not added as commands.

So you can do:

class MyScript < Bundler::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 < Bundler::Thor
  def this_is_not_a_command
  end
  remove_command :this_is_not_a_command
end


422
423
424
# File 'lib/bundler/vendor/thor/lib/thor/base.rb', line 422

def no_commands(&block)
  no_commands_context.enter(&block)
end

#no_commands?Boolean

Returns:

  • (Boolean)


432
433
434
# File 'lib/bundler/vendor/thor/lib/thor/base.rb', line 432

def no_commands?
  no_commands_context.entered?
end

#no_commands_contextObject



428
429
430
# File 'lib/bundler/vendor/thor/lib/thor/base.rb', line 428

def no_commands_context
  @no_commands_context ||= NestedContext.new
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


498
499
500
501
502
# File 'lib/bundler/vendor/thor/lib/thor/base.rb', line 498

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


318
319
320
321
322
323
324
325
# File 'lib/bundler/vendor/thor/lib/thor/base.rb', line 318

def remove_argument(*names)
  options = 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 options[: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


337
338
339
340
341
# File 'lib/bundler/vendor/thor/lib/thor/base.rb', line 337

def remove_class_option(*names)
  names.each do |name|
    class_options.delete(name)
  end
end

#remove_command(*names) ⇒ Object Also known as: remove_task

Removes a given command from this Bundler::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.



392
393
394
395
396
397
398
399
400
# File 'lib/bundler/vendor/thor/lib/thor/base.rb', line 392

def remove_command(*names)
  options = 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 options[: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 Bundler::Thor class, you can simply initialize it:

script = MyScript.new(args, options, config)
script.invoke(:command, first_arg, second_arg, third_arg)


474
475
476
477
478
479
480
481
482
483
484
485
486
# File 'lib/bundler/vendor/thor/lib/thor/base.rb', line 474

def start(given_args = ARGV, config = {})
  config[:shell] ||= Bundler::Thor::Base.shell.new
  dispatch(nil, given_args.dup, nil, config)
rescue Bundler::Thor::Error => e
  config[:debug] || ENV["THOR_DEBUG"] == "1" ? (raise e) : config[:shell].error(e.message)
  exit(false) 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(true)
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.

Returns:

  • (Boolean)


176
177
178
# File 'lib/bundler/vendor/thor/lib/thor/base.rb', line 176

def stop_on_unknown_option?(command_name) #:nodoc:
  false
end

#strict_args_positionObject

:nodoc:



193
194
195
# File 'lib/bundler/vendor/thor/lib/thor/base.rb', line 193

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.



189
190
191
# File 'lib/bundler/vendor/thor/lib/thor/base.rb', line 189

def strict_args_position!
  @strict_args_position = true
end

#strict_args_position?(config) ⇒ Boolean

:nodoc:

Returns:

  • (Boolean)


197
198
199
# File 'lib/bundler/vendor/thor/lib/thor/base.rb', line 197

def strict_args_position?(config) #:nodoc:
  !!strict_args_position
end