Sha256: f7008c0d6f0c4b47e2832b4154784fa27b42ebd1969e616e23e51aa9353fed2f
Contents?: true
Size: 847 Bytes
Versions: 1
Compression:
Stored size: 847 Bytes
Contents
require 'rack' require 'happy/context' require 'happy/controller' module Happy module Errors class Base < StandardError ; end class NotFound < Base ; end end def self.env ActiveSupport::StringInquirer.new(ENV['RACK_ENV'] || 'development') end # Creates a new Happy::Controller class, using the provided block as # its routing block. # def self.route(&blk) @last_controller_class_created = Class.new(Happy::Controller).tap do |klass| klass.send(:define_method, :route, &blk) end end # Run the provided block against Happy::Context. Use this to add new # methods to the request context class. # def self.context(&blk) Context.class_exec(&blk) end def self.call(env) @last_controller_class_created.try(:call, env) or raise "Please use Happy.route to define some routes." end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
happy-0.1.0.pre14 | lib/happy.rb |