module Roda::RodaPlugins::Heartbeat::InstanceMethods
def _roda_before_20__heartbeat
def _roda_before_20__heartbeat if env['PATH_INFO'] == opts[:heartbeat_path] response = @_response response.status = 200 response['Content-Type'] = 'text/plain' response.write 'OK' throw :halt, response.finish end end