6
votes
Calling Bash Commands From Ruby
Some things to think about when choosing between these mechanisms are:
Do you just want stdout or do you
need stderr as well? or even
separated out?
How big is your out …
3
votes
In Ruby, is it possible to concat arguments to a command line using backquotes ?
`ls #{directory}`
isn't very safe because you're going to run into problems with path names that have spaces in them.
It's safer to do something like this:
…
2
votes
Is there a good argument for combining Flex and Rails?
I think you want to consider this in terms of what your client app needs to do. If you can accomplish everything you need within rails, then there's no real need to go to flex. If you need more c …
