This method is deprecated or moved on the latest stable version. The last existing version (v2_2_9) is shown here.
find_location()
Find the location that called into the dsl layer.
# File lib/rake/task_manager.rb, line 225 def find_location locations = caller i = 0 while locations[i] return locations[i + 1] if locations[i] =~ /rake\/dsl_definition.rb/ i += 1 end nil end