gem - Finding the current version of rails 2.3 -
is there way of finding out current version of rails 2.3 is? right ruby on rails page has link blog post 2.3.11, imagine after few more blog posts no longer there. tried find way "gem" command, didn't see it. if run "gem update rails" don't options-- updates me rails 3.0.4, not ready yet. can "gem install -v 2.3.11 rails" presumes know current version is. also, on rails web site, there link page on rubyforge can download gem files latest 1 there 2.3.4, no help.
you can run command gem list --remote -a | egrep "^rails " | awk '{ (i=1;i<=nf;i++) print $i }' | grep '2.3.'
. lists versions of rails 2.3, , 1 @ top latest one.
Comments
Post a Comment