trim(n)
Trim n innermost scope levels from the scope. In no case will this trim beyond the toplevel scope.
# File lib/rake/scope.rb, line 16 def trim(n) result = self while n > 0 && ! result.empty? result = result.tail n -= 1 end result end