Possible Duplicate:
How can I call an older version of a gem from the commandline?
If I have two versions of a gem, how do I choose which version to execute?
For example, if gem list heckle
gives me
*** LOCAL GEMS ***
heckle (2.0.0.b1, 1.4.3)
and heckle --version
from the command line gives me
heckle 2.0.0.b1
how can I tell it to run heckle 1.4.3 instead?
Would I need to use bundler in order to do that? If so, how much yak shaving would be involved?