TwelvestoneBack End

Looking for a ruby framework


Sign in

  • Waiting for Godot ( 720 k posts )
    Just conversation.
  • Thunder Dome ( 23 k posts )
    Photoshop Tennis and Collabs.
  • Photography ( 4.8 k posts )
    For all you shutterbugs, sh...
  • Flash ( 18 k posts )
    ActionScripting to tweens, ...
  • Front End ( 5.8 k posts )
    general front end design an...
  • Back End ( 9.6 k posts )
    serverside scripting, progr...
  • Projects and Theory ( 12 k posts )
    This forum is for discussio...
  • FAQ ( 269 posts )
    All those nagging questions...
  • Design ( 17 k posts )
    graphics & all aspects of g...
  • Purgatory ( 3.6 k posts )
    12stone Jail, feel free to ...
the real me
 
2009-12-14

sort of continued from the hijacked thread the other day....

So here's the deal, I dig ruby but I also dig django. I'm hoping maybe some of you ruby guys can point me in the direction of a ruby framework that has some of the key concepts I love in django.

The biggest one is the concept of writing smaller, more generic reusable apps. Alot of the sites I build (probably most people) have pieces in common, it's so nice to be able to write a generic self contained app (including models, templates, forms, urls, everything) for a situation that comes up repeatedly and plug it in from project to project. Honestly if I could find a framework that encouraged that it would probably be enough for me.

I also like the way urls are routed using regex and the ability to map a url too include another routing file.

So is there anything like that in the ruby world?

slapatrick
 
2010-03-11

Sinatra Rack

Those are good for what you are talking about. You can use Rack to run apps from inside a larger application stack like Rails.

Forget scaling though, we all know Ruby can't scale.

the real me
 
2010-03-12

Cool, thanks. I suppose I need to look into Sinatra more. That's the second time it's been recommended to me.

Sorry, you must be a member to post to a conversation. Either log in or sign up to get involved.
TwelvestoneBack End

Looking for a ruby framework