Class | Rake::NameSpace |
In: |
lib/rake.rb
|
Parent: | Object |
The NameSpace class will lookup task names in the the scope defined by a namespace command.
Create a namespace lookup object using the given task manager and the list of scopes.
# File lib/rake.rb, line 1642 1642: def initialize(task_manager, scope_list) 1643: @task_manager = task_manager 1644: @scope = scope_list.dup 1645: end