Sha256: ffd3b1b5e123ee24d9f68c15ccc1bb44e8eabf524da7ef3544d28de211533fdb
Contents?: true
Size: 1 KB
Versions: 1
Compression:
Stored size: 1 KB
Contents
require "rhino/version" require "rhino/routing" require "rhino/util" require "rhino/dependencies" require "rhino/controller" require "rhino/file_model" module Rhino class Application def call(env) klass, act = get_controller_and_action(env) controller = klass.new(env) text = controller.send(act) rescue (return action_not_found) [200, {'Content-Type' => 'text/html'}, [text]] rescue LoadError => e return error_404(e) rescue => e # StandardError return error_500(e) end def error_404(error) [404, {'Content-Type' => 'text/html'}, ["The page not found ! <br/> <b>#{error.message}</b>"]] end def action_not_found [404, {'Content-Type' => 'text/html'}, ['The action not found !']] end def error_500(error) [500, {'Content-Type' => 'text/html'}, ["Some thing went wrong ! <br/> <b>#{error.message}</b>"]] end def self.root_path "/home/buikhanh/projects/my_projects/ruby-framework/best_quotes/" end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rhino-framework-0.0.4 | lib/rhino.rb |