Class: Rake::TaskArguments
- Inherits:
-
Object
- Object
- Rake::TaskArguments
- Includes:
- Enumerable
- Defined in:
- lib/rake/task_arguments.rb
Overview
TaskArguments manage the arguments passed to a task.
Instance Attribute Summary collapse
-
#names ⇒ Object
readonly
Returns the value of attribute names.
Instance Method Summary collapse
-
#[](index) ⇒ Object
Find an argument value by name or index.
- #each(&block) ⇒ Object
-
#initialize(names, values, parent = nil) ⇒ TaskArguments
constructor
Create a TaskArgument object with a list of named arguments (given by :names) and a set of associated values (given by :values).
- #inspect ⇒ Object
- #method_missing(sym, *args) ⇒ Object
-
#new_scope(names) ⇒ Object
Create a new argument scope using the prerequisite argument names.
- #to_hash ⇒ Object
- #to_s ⇒ Object
- #values_at(*keys) ⇒ Object
-
#with_defaults(defaults) ⇒ Object
Specify a hash of default values for task arguments.
Constructor Details
#initialize(names, values, parent = nil) ⇒ TaskArguments
Create a TaskArgument object with a list of named arguments (given by :names) and a set of associated values (given by :values). :parent is the parent argument object.
14 15 16 17 18 19 20 21 |
# File 'lib/rake/task_arguments.rb', line 14 def initialize(names, values, parent=nil) @names = names @parent = parent @hash = {} names.each_with_index { |name, i| @hash[name.to_sym] = values[i] unless values[i].nil? } end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(sym, *args) ⇒ Object
50 51 52 |
# File 'lib/rake/task_arguments.rb', line 50 def method_missing(sym, *args) lookup(sym.to_sym) end |
Instance Attribute Details
#names ⇒ Object (readonly)
Returns the value of attribute names
9 10 11 |
# File 'lib/rake/task_arguments.rb', line 9 def names @names end |
Instance Method Details
#[](index) ⇒ Object
Find an argument value by name or index.
31 32 33 |
# File 'lib/rake/task_arguments.rb', line 31 def [](index) lookup(index.to_sym) end |
#each(&block) ⇒ Object
42 43 44 |
# File 'lib/rake/task_arguments.rb', line 42 def each(&block) @hash.each(&block) end |
#inspect ⇒ Object
62 63 64 |
# File 'lib/rake/task_arguments.rb', line 62 def inspect to_s end |
#new_scope(names) ⇒ Object
Create a new argument scope using the prerequisite argument names.
25 26 27 28 |
# File 'lib/rake/task_arguments.rb', line 25 def new_scope(names) values = names.collect { |n| self[n] } self.class.new(names, values, self) end |
#to_hash ⇒ Object
54 55 56 |
# File 'lib/rake/task_arguments.rb', line 54 def to_hash @hash end |
#to_s ⇒ Object
58 59 60 |
# File 'lib/rake/task_arguments.rb', line 58 def to_s @hash.inspect end |
#values_at(*keys) ⇒ Object
46 47 48 |
# File 'lib/rake/task_arguments.rb', line 46 def values_at(*keys) keys.map { |k| lookup(k) } end |
#with_defaults(defaults) ⇒ Object
Specify a hash of default values for task arguments. Use the defaults only if there is no specific value for the given argument.
38 39 40 |
# File 'lib/rake/task_arguments.rb', line 38 def with_defaults(defaults) @hash = defaults.merge(@hash) end |