Class: SC::TaskArguments

Inherits:
Object
  • Object
show all
Includes:
Enumerable
Defined in:
lib/sproutcore/buildfile/task_arguments.rb

Overview

TaskAguments manage the arguments passed to a task. Borrowed from Rake 0.8.3

Instance Attribute Summary collapse

Instance Method Summary collapse

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.



21
22
23
24
25
26
27
28
# File 'lib/sproutcore/buildfile/task_arguments.rb', line 21

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, &block) ⇒ Object



53
54
55
# File 'lib/sproutcore/buildfile/task_arguments.rb', line 53

def method_missing(sym, *args, &block)
  lookup(sym.to_sym)
end

Instance Attribute Details

#namesObject (readonly)

Returns the value of attribute names.



16
17
18
# File 'lib/sproutcore/buildfile/task_arguments.rb', line 16

def names
  @names
end

Instance Method Details

#[](index) ⇒ Object

Find an argument value by name or index.



38
39
40
# File 'lib/sproutcore/buildfile/task_arguments.rb', line 38

def [](index)
  lookup(index.to_sym)
end

#each(&block) ⇒ Object



49
50
51
# File 'lib/sproutcore/buildfile/task_arguments.rb', line 49

def each(&block)
  @hash.each(&block)
end

#inspectObject



65
66
67
# File 'lib/sproutcore/buildfile/task_arguments.rb', line 65

def inspect
  to_s
end

#new_scope(names) ⇒ Object

Create a new argument scope using the prerequisite argument names.



32
33
34
35
# File 'lib/sproutcore/buildfile/task_arguments.rb', line 32

def new_scope(names)
  values = names.collect { |n| self[n] }
  self.class.new(names, values, self)
end

#to_hashObject



57
58
59
# File 'lib/sproutcore/buildfile/task_arguments.rb', line 57

def to_hash
  @hash
end

#to_sObject



61
62
63
# File 'lib/sproutcore/buildfile/task_arguments.rb', line 61

def to_s
  @hash.inspect
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.



45
46
47
# File 'lib/sproutcore/buildfile/task_arguments.rb', line 45

def with_defaults(defaults)
  @hash = defaults.merge(@hash)
end