module Kernel
Public Instance Methods
caller_locations(start = 1, length = nil)
click to toggle source
# File lib/much-stub.rb, line 307 def caller_locations(start = 1, length = nil) length ? caller[start, length] : caller[start..-1] end