Skip to content

Instantly share code, notes, and snippets.

@diegorv
Created February 6, 2009 00:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save diegorv/59118 to your computer and use it in GitHub Desktop.
Save diegorv/59118 to your computer and use it in GitHub Desktop.
require(File.dirname(__FILE__) + "/../../config/environment") unless defined?(Rails)
class Poller
def self.call(env)
if env["PATH_INFO"] =~ /^\/poller/
@post = Post.find(1)
ActiveRecord::Base.clear_active_connections!
[200, {"Content-Type" => "text/html"}, @post.title]
else
[404, {"Content-Type" => "text/html"}, ["Not Found"]]
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment