I’m following the instructions from the Rails main page:
gem install rails --source http://gems.rubyonrails.org
–include-dependencies
looks like it works OK, but every time it finishes and I say rails -v,
I get 1.1.6 instead of 1.2
Please help.
Thanks,
Yitzhak
Yitzhak Bar G. wrote:
I’m following the instructions from the Rails main page:
gem install rails --source http://gems.rubyonrails.org
–include-dependencies
looks like it works OK, but every time it finishes and I say rails -v,
I get 1.1.6 instead of 1.2
Please help.
Thanks,
Yitzhak
The release candidates are all going to say v 1.1.6.xxxx. See:
—>
Installing
The release candidate gems live in the Rails gem repository. You install
them like this:
gem install rails --source http://gems.rubyonrails.org
–include-dependencies
Note that it’ll say something like “Successfully installed
rails-1.1.6.5618â€. That’s correct as we won’t use the final version
numbers until the official release.
You can also grab it straight from Subversion with
http://dev.rubyonrails.org/svn/rails/tags/rel_1-2-0_RC1.
<—
On Jan 14, 2007, at 5:18 PM, yitzhakbg wrote:
I’m following the instructions from the Rails main page:
gem install rails --source http://gems.rubyonrails.org
–include-dependencies
looks like it works OK, but every time it finishes and I say rails -v,
I get 1.1.6 instead of 1.2
The rails 1.2 release candidates use the internal designation of
1.1.6.nnnn, where nnnn increments as this moves forward. If you do a
“rails -v” you will get 1.1.6. “gem list” should give you the real
version #.
-faisal
Faisal N Jawdat wrote:
On Jan 14, 2007, at 5:18 PM, yitzhakbg wrote:
I’m following the instructions from the Rails main page:
gem install rails --source http://gems.rubyonrails.org
–include-dependencies
looks like it works OK, but every time it finishes and I say rails -v,
I get 1.1.6 instead of 1.2The rails 1.2 release candidates use the internal designation of
1.1.6.nnnn, where nnnn increments as this moves forward. If you do a
“rails -v” you will get 1.1.6. “gem list” should give you the real
version #.-faisal
Thanks