Considering I work on a company which has only Rails applications and I'm writing a mostly static set of webpages, should I use Rails or Sinatra to do it?
|
closed as not constructive by mu is too short, Michael Petrotta, Phrogz, Frédéric Hamidi, Joe Dec 16 '11 at 16:01
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
I think this comes down to personal preference, company policy (though if your using Ruby, its probably not an issue anyhow!) and whom your working with (other developers). I'd suggest you try using Sinatra and see how it fairs in comparison to your current workflow with Rails for a couple of projects. If you use lots of Rails helper methods you may need to manually do what they previously did or find a Sinatra equivalent and there is often many to pick from. You also have frameworks like Padrino that target the middle ground between Rails and Sinatra. For purely static sites there are Ruby tools to generate sites based on templates, that may be worth while considering. |
|||
|
|
|
If there is any chance of doing heavy lifting down the road with more dynamic content, I would recommend setting it up as a rails project and using high_voltage for the static content. If there is no chance for heavier dynamic content down the road, I say use sinatra. |
|||
|
|
|
If your application is mostly about static web pages, and all you got to do is route the URL's to certain actions (and their respective views) in a controller, I'd say go for Sinatra. |
|||
|
|