From: Michael Boutros Date: 2008-02-09T05:30:52+09:00 Subject: Syntax Opinions Hello, I am working on a "framework glue", as in this framework won't make you lose weight or cure the common cold, it'll just combine the power of MVC, Sinatra, and DM. However, I'm stuck on what syntax to use for defining methods in the controller. Since each method will have an HTTP method, there has to be some way to choose this. Below are my two options: 1) Enclose the methods in a block with the same name as the HTTP method. get do def post @post = ... end end 2) My personal favourite which needs no explanation... def @get.post @post = ... end What do you guys think? -- Posted via http://www.ruby-forum.com/.