I have Ruby 1.8.7 and 1.9 install. I run different ones, specifying ruby ββor ruby1.9 when running the commands. eg
ruby --version
or
ruby1.9 --version
however, when I want to create a new rails application, the available command is rails, such as:
rails my_app_name
How do I specify when I invoke the rails command to create a new rails application, or does it matter? I mean, if I create it with one version, it will be the same code of another version or the user code of the script generator for different versions of Ruby.
Thanks,
There
source
share