Skip to content

Instantly share code, notes, and snippets.

@raggi
Created March 18, 2009 15:40
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 8 You must be signed in to fork a gist
  • Save raggi/81199 to your computer and use it in GitHub Desktop.
Save raggi/81199 to your computer and use it in GitHub Desktop.
sinatra as rails metal example - mostly unnecessary
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