Search Results

1
vote

A good Ruby book (that resembles Dive into Python)

I've read and like: Programming Ruby: The Pragmatic Programmer's Guide Great reference, I need to purchase a copy so I have it on my desk (previously read at a former employer). …
0
votes

Using a #! comment in ruby running in Ubuntu

You can use the 'shebang' line with either: #!/usr/bin/ruby #!/usr/bin/env ruby But the script needs to be executable (you indicated it is) and in your shell $PATH …
0
votes

How to restart Rails from within Rails?

In our consulting with startups running their sites on Rails, we used two methods for managing mongrel processes. First, is a custom gem we wrote called …