Search Results

4
votes

Does the Rails ORM limit the ability to perform aggregations?

Limitations of ActiveRecord are one of the reasons I had trouble using Rails in a scientific environment. You might want to check out alternative Ruby ORM's that make it a bit easier to work with …
0
votes

How do you read an existing Rails project?

Aside from the already posted tips of running specs, and decomposing the MVC, I also like: rake routes as another way to get a high-level view of all the routes i …
2
votes

Should I buy Ruby 1.8 Books or wait for Ruby 1.9 Books?

The Ruby Programming Language covers 1.8 and 1.9. It's an excellent reference book for either version. I highly recommend it. …
0
votes

What’s the best way to search for a string in a file?

open('some.txt').grep(/string/) …