Skip to content

Instantly share code, notes, and snippets.

@aep
Last active August 29, 2015 14:06
Show Gist options
  • Save aep/f0e7281d576c2ea318e5 to your computer and use it in GitHub Desktop.
Save aep/f0e7281d576c2ea318e5 to your computer and use it in GitHub Desktop.
require 'middleman/rack'
def ratelimit
return false
end
class XNS
def call(env)
ratelimit(env) or return
end
end
map '/xns' do
run XNS.new
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment