Class
Rake::NameSpace
In: lib/rake/name_space.rb
Parent: Object

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

Methods

[], new, tasks,
Public Class methods
new(task_manager, scope_list)

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

    # File lib/rake/name_space.rb, line 10
10:     def initialize(task_manager, scope_list)
11:       @task_manager = task_manager
12:       @scope = scope_list.dup
13:     end
Public Instance methods
[](name)

Lookup a task named name in the namespace.

    # File lib/rake/name_space.rb, line 16
16:     def [](name)
17:       @task_manager.lookup(name, @scope)
18:     end
tasks()

Return the list of tasks defined in this and nested namespaces.

    # File lib/rake/name_space.rb, line 21
21:     def tasks
22:       @task_manager.tasks_in_scope(@scope)
23:     end