class Rulerz::Application

Public Instance Methods

call(env) click to toggle source
# File lib/rulerz.rb, line 5
def call(env)
  [200, {'Content-Type' => 'text/html'},
     ['Hello from Ruby on Rulerz!']]
end