module Lookbook::Where

def source_location(method)

def source_location(method)
  method.source_location || (
    method.to_s =~ /: (.*)>/
    $1
  )
end