vote up 1 vote down star

Some of the responses to a question I asked today earlier today have caused me to question my assumption that it should be possible to use Rails in a non-MVC manner as opposed to simply using a microframework like Sinatra for barebones non-MVC-type apps.

Has anyone used Rails in a non-MVC manner without it causing major problems or could you imagine an appropriate case for doing so?

flag

4 Answers

vote up 3 vote down check

What do you want to build? If you want to use all of rails, MVC is the way to go. Even a tiny framework like camping is MVC.

If you just need a part of it, most commonly, activerecord, you can happily use it any way you want.

But rails itself is MVC all the way, you'd be working against it trying to coerce it into another paradigm.

link|flag
vote up 1 vote down

Not only should you use MVC with Rails, but MVC is a good idea in general.

If you're just writing some one-off-ish app then you might look at Rails Metal or, as you already mentioned, Sinatra.

link|flag
vote up 2 vote down

Yes, it is possible, but Rails framework architects made it difficult to stray from the MVC path for a reason. They want to encourage 'good' behavior and discourage 'bad' behavior.

link|flag
vote up 1 vote down

Again, why do you WANT to avoid MVC? MVC is an excellent thing

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.