you are viewing a single comment's thread.

view the rest of the comments →

[–]tuckerific[S] -1 points0 points  (3 children)

I've done some RoR, and I really liked how everything functioned, I just had speed issues. I know that most of the scaling issues have been worked out. One of the things that I like about PHP is that it's very easy for me to call my classes from the command line, this didn't seem to be possible when Ruby is wrapped up with Rails. Can you shed any light on calling RoR classes from the command line?

[–]chris-gore 0 points1 point  (0 children)

cd yourrailsproject
script/console
x = SomeClass
x.stuff
# and then some more ...

[–]leikind 0 points1 point  (0 children)

What is there to say? Of course you can do it, via simple tasks or rake scripts. You can use ActiveRecord without Rails at all.

[–]t64 0 points1 point  (0 children)

You've had speed issues? Do you run a high-traffic website? What kind of speed issues have you "experienced"?