# File lib/heroku/command/base.rb, line 83 def self.extract_help_from_caller(line) # pull out of the caller the information for the file path and line number if line =~ /^(.+?):(\d+)/ return extract_help($1, $2) end raise "unable to extract help from caller: #{line}" end