class Rake::Scope
:nodoc: all
def path
def path map(&:to_s).reverse.join(":") end
def path_with_task_name(task_name)
def path_with_task_name(task_name) "#{path}:#{task_name}" end
def trim(n)
Trim +n+ innermost scope levels from the scope. In no case will
def trim(n) result = self while n > 0 && !result.empty? result = result.tail n -= 1 end result end