Can anyone tell me which RailsInstaller version was the last one
that provided Rails 2.3.x ?
The release notes are a bit skimpy
but I need to help someone
on Windows get set up to work on a legacy app.
TIA,
Hassan S. ------------------------ [email protected]
twitter: @hassan
On Oct 21, 3:37pm, Hassan S. [email protected]
wrote:
Can anyone tell me which RailsInstaller version was the last one
that provided Rails 2.3.x ?
The release notes are a bit skimpy
but I need to help someone
on Windows get set up to work on a legacy app.
You can use latest RailsInstaller and install Rails 2.3.x:
gem install rails -v 2.3.14
Then use a RubyGems trick to use one specific version of rails command
line utility:
rails 2.3.14 myapp -d sqlite3
In that scenario, I recommend you add Bundler to it:
http://gembundler.com/rails23.html
That way will be more easy for you to handle both versions of Rails.
Hope that helps,
Luis L.