Class: FooRequest

Inherits:
WebSystem::SimpleRequest show all
Defined in:
app/web/requests/foo_request.rb

Instance Attribute Summary

Attributes inherited from WebSystem::SimpleRequest

#env

Instance Method Summary collapse

Methods inherited from WebSystem::SimpleRequest

#_call_action, #action, #call, call, #format, #http_method, #qs, #request, #response_404, #segments

Methods inherited from Liza::Controller

color, inherited, on_connected

Methods inherited from Liza::Unit

const_missing, division, part, system, #system, test_class

Instance Method Details

#call_indexObject

GET /foo



5
6
7
# File 'app/web/requests/foo_request.rb', line 5

def call_index
  log "."
end

#call_index!Object

POST /foo



11
12
13
# File 'app/web/requests/foo_request.rb', line 11

def call_index!
  log "."
end