Flowdock
method

lookup

Importance_0
v1_9_3_125 - Show latest stable - 0 notes - Class: TaskArguments
lookup(name) protected

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/rake/task_arguments.rb, line 68
    def lookup(name)
      if @hash.has_key?(name)
        @hash[name]
      elsif @parent
        @parent.lookup(name)
      end
    end
Register or log in to add new notes.