When I run volt new foo
, it creates a project with the 0.9.3 version. I want to be able to create a new project with the 0.9.4pre1
version, but I'm not sure how to do that. How do you configure Volt so that running volt new foo
will create a project with a specific version?
Asked
Active
Viewed 36 times
1

GDP2
- 1,948
- 2
- 22
- 38
2 Answers
1
You have to install the the pre release using
gem install volt --pre
for the latest pre release or
gem install volt -v 0.9.4pre1
for a specific version

Julian Fahrer
- 96
- 2
1
When volt runs it will always use the highest version installed on the machine. (This is sort of a rubygems limitation). So if you want a lower version, you have to remove the newer ones.

Ryan
- 956
- 7
- 8
-
Huh, I didn't know that. That is useful to know, thanks. – GDP2 Jun 27 '15 at 22:15