Merb is an alternative web framework to Ruby on Rails that is focused on being faster, lighter, and more agile. Both Merb and Rails use the model-view-controller architecture pattern and support features like object-relational mapping and templating, but Merb takes a more minimal and flexible approach by being ORM agnostic and supporting additional libraries beyond what Rails provides out of the box. The document then demonstrates building a simple CRUD application in Merb and comparing it to how it could be done in Rails.
7. REST REpresentational State Transfer Post http://mycom.kr/posts C reate R etrieve U pdate D elete GET PUT DELETE POST
8. RESTful URL : CRUD GET /posts index GET /posts/:id show GET /posts/new new POST /posts create GET /posts/:id/edit edit PUT /posts/:id update DELETE /posts/:id destroy