Skip to content

Instantly share code, notes, and snippets.

@shinzui
Forked from raggi/sinatra_metal.rb
Created March 28, 2009 17:11
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 shinzui/87149 to your computer and use it in GitHub Desktop.
Save shinzui/87149 to your computer and use it in GitHub Desktop.
require 'sinatra'
module Sinatra::Metal
module ClassMethods
def metal(base = nil)
base = '' unless base || @metal
@metal = /^#{Regexp.escape base}/ if base
@metal
end
end
def self.included(base)
base.extend ClassMethods
base.disable :raise_errors
base.app_file caller.first.split(':').first
base.before { not_found unless request.path_info =~ self.class.metal }
base.metal
end
end
require 'sinatra/metal'
class SinatraMetal < Sinatra::Base
include Sinatra::Metal
get '/sinatra' do
'hello sinatra!'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment