class Sinatra::Base

def caller_files

line / method information; the resulting array contains filenames only.
Like Kernel#caller but excluding certain magic entries and without
def caller_files
  caller_locations.
    map { |file,line| file }
end