1 - In my Ruby environment which I built using rbenv, I have Ruby version 2.0.0-p247
Now I need to build Ruby version 1.8.7-p374 using the gem BigDecimal version 1.1.0.
but the BigDecimal gem's got two versions 1.2.0 and 1.1.0 and when I build Ruby version 1.8.7-p374 it selects the version 1.2.0
How do I force BigDecimal version 1.1.0 while compiling the Ruby?
2 - In another Ruby environment in another computer of mine, I have Ruby version 1.8.7-p374 and Rails v2.2.2 (they all work perfectly)
But I have two versions of 'rake' v10.1.0 v0.9.2 and in the Command Line I need to use the version 0.9.2 but the version 10.1.0 comes by default. How do I use the version 0.9.2 ?