vote up 2 vote down star
1

Im struggling to find good material about developing web applications in Ruby without using a framework such as Rails or Merb in the usual places (I've already spent a while on Google, Safari books online and stackoverflow looking!). I have nothing against the frameworks at all; just my intended architecture is a little different and so doesnt fit well.

Can you give some recommendations on resources you have found useful?

flag
I might help people give a better answer if you give us some idea what type of 'architecture' you have in mind. – floehopper Feb 10 at 17:48
Im intending to use Amazon's SimpleDb as the back-end and hence dont want to be tied to an ORM (e.g. ActiveRecord). Apache / Passenger on EC2 as front end. – rhys Feb 12 at 13:06

4 Answers

vote up 6 vote down check

You should give Sinatra a try. It's a framework, but a minimalistic one, so you can easily see what is going on under the hood.

Other than that maybe the CGI Ruby library is a place to look into.

link|flag
Thanks - Sinatra does seem to be a better fit with what Im trying to do – rhys Feb 9 at 16:50
vote up 1 vote down

Look into rack, it's THE way to do ruby web apps without using a preexisting framework. From the docs:

"A Rack application is an Ruby object (not a class) that responds to call. It takes exactly one argument, the environment and returns an Array of exactly three values: The status, the headers, and the body."

If a minimal framework will suffice then I recommend waves

link|flag
vote up 2 vote down

If you are intending a home brewed approach I can highly recommend Ruby Cookbook published by O'Reilly. It's one of the most useful Ruby books I've bought and has a some very good chapters (14 - 16) on internet programming.

link|flag
vote up 1 vote down

Webby is worth a look. Simple, but useful for some applications.

link|flag

Your Answer

Get an OpenID
or

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