class Rake::NameSpace

  1. lib/rake/name_space.rb
Parent: Rake

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

Methods

Public Class

  1. new

Public Instance

  1. []
  2. tasks

Public Class methods

new (task_manager, scope_list)

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

[show source]
    # 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.

[show source]
    # 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.

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