protected Method

TaskArguments.lookup(name)

There's no documentation for this item.

Source Code

# File rake.rb, line 332
def lookup(name)
  if @hash.has_key?(name)
    @hash[name]
  elsif ENV.has_key?(name.to_s)
    ENV[name.to_s]
  elsif ENV.has_key?(name.to_s.upcase)
    ENV[name.to_s.upcase]
  elsif @parent
    @parent.lookup(name)
  end
end
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.