I have a working Rails install on RVM on my OS X dev machine running on Ruby 1.9.2-p180 currently. I'm looking to switch over to Passenger locally to have multiple apps running simultaneously and improve my skills administering Passenger on a non-production box.
I've successfully installed the Passenger gem, and am now at the stage where I should run:
rvm passenger-install-apache2-module
but I'm getting this message after running it:
WARN: ruby ruby-1.9.2-p180-module is not installed.
To install do: 'rvm install ruby-1.9.2-p180-module'
running that command installs a whole different ruby, where the passenger install command still doesn't seem to work (I install all the gems I need for this new ruby version, then running rvm passenger-install-apache2-module just does nothing).
Any thoughts? I have yet to get RVM working perfectly on my dev machine, staging server, or production server, so I'm not sure if its just me not understanding how to do all this stuff (I pretty much follow tutorials for most things Rails related) or what.