ºÝºÝߣ

ºÝºÝߣShare a Scribd company logo
Merb An altlang of Ruby on Rails
Rails vs. Merb Rails Merb Sustainable Productivity motto Faster, Lighter, More Agile MVC architecture pattern MVC on rails ruby is.. ruby opinionated agnostic ActiveRecord ORM DataMapper, AR, Sequel ERb Template Engine ERb, Haml, ... Prototype + Scriptaculous JavaScript jQuery, mootool, .. Test::Unit Testing RSpec, TestUnit, ...
Rails
Merb
Rails vs. Merb
Demo #1 Simple CRUD with DataMapper Merb MVC Refactoring & Code Review
REST REpresentational State Transfer Post http://mycom.kr/posts C reate R etrieve U pdate D elete GET PUT DELETE POST
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
DEMO #2 Resource & Resource Controller Exception Handling Login(Authentication) Adding Comments File Upload Content Negotiation
How about you?

More Related Content

Merb tutorial

  • 1. Merb An altlang of Ruby on Rails
  • 2. Rails vs. Merb Rails Merb Sustainable Productivity motto Faster, Lighter, More Agile MVC architecture pattern MVC on rails ruby is.. ruby opinionated agnostic ActiveRecord ORM DataMapper, AR, Sequel ERb Template Engine ERb, Haml, ... Prototype + Scriptaculous JavaScript jQuery, mootool, .. Test::Unit Testing RSpec, TestUnit, ...
  • 6. Demo #1 Simple CRUD with DataMapper Merb MVC Refactoring & Code Review
  • 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
  • 9. DEMO #2 Resource & Resource Controller Exception Handling Login(Authentication) Adding Comments File Upload Content Negotiation