class SC::NameSpace

The NameSpace class will lookup task names in the the scope defined by a namespace command. Borrowed from Rake 0.8.3

Public Class Methods

new(task_manager, scope_list) click to toggle source

Create a namespace lookup object using the given task manager and the list of scopes.

# File lib/sproutcore/buildfile/namespace.rb, line 17
def initialize(task_manager, scope_list)
  @task_manager = task_manager
  @scope = scope_list.dup
end

Public Instance Methods

[](name) click to toggle source

Lookup a task named name in the namespace.

# File lib/sproutcore/buildfile/namespace.rb, line 23
def [](name)
  @task_manager.lookup(name, @scope)
end
tasks() click to toggle source

Return the list of tasks defined in this namespace.

# File lib/sproutcore/buildfile/namespace.rb, line 28
def tasks
  @task_manager.tasks
end