Method deprecated or moved
This method is deprecated or moved on the latest stable version.
The last existing version (v2_2_9) is shown here.
tasks_in_scope(scope)
public
List of all the tasks defined in the given scope
(and its sub-scopes).
# File lib/rake/task_manager.rb, line 151
def tasks_in_scope(scope)
prefix = scope.path
tasks.select { |t|
/^#{prefix}:/ =~ t.name
}
end