2008-12-16から1日間の記事一覧

RackのMiddleware一覧

http://advent2008.hackruby.com/past/2008/12/15/a_collection_of_rack_middlewares/ Rack::ETag - Automatically sets the ETag header on all String bodies. Rack::JSONP - Adds JSON-P support by stripping out the callback param and padding the re…

merbでのアプリのひな形

merb-gen app myapp . |-- Rakefile |-- app | |-- controllers | | |-- application.rb | | `-- exceptions.rb | |-- helpers | | `-- global_helpers.rb | |-- models | | `-- user.rb | `-- views | |-- exceptions | | |-- not_acceptable.html.erb | | …

RESTfulなひな形生成 - merb-gen resource_controller

$ merb-gen resource_controller user [ADDED] spec/requests/user_spec.rb [ADDED] app/controllers/user.rb [ADDED] app/views/user/index.html.erb [ADDED] app/views/user/show.html.erb [ADDED] app/views/user/edit.html.erb [ADDED] app/views/user/n…