require "rulers/version" require "rulers/routing" require "rulers/util" require "rulers/dependencies" module Rulers class Application def call(env) if env['PATH_INFO'] == '/favicon.ico' return [404, {'Content-Type' => 'text/html'}, []] end if env['PATH_INFO'] == '/' return [204, {'Content-Type'=> 'text/html'},["Incorrect URL!!!!"]] end klass, act = get_controller_and_action(env) controller = klass.new(env) text = controller.send(act) [200, {'Content-Type' => 'text/html'}, [text]] end end class Controller def initialize(env) @env = env end def env @env end end end