module Honeybadger

def start(config = {})

Deprecated:
def start(config = {})
  raise NoMethodError, <<-WARNING
oneybadger.start` is no longer necessary and has been removed.
Use `Honeybadger.configure` to explicitly configure the agent from Ruby moving forward:
Honeybadger.configure do |config|
  config.api_key = 'project api key'
  config.exceptions.ignore += [CustomError]
end
RNING
end