forked from mitchellh/vagrant-rackspace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAppraisals
36 lines (31 loc) · 933 Bytes
/
Appraisals
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Note: You may need to use bundler 1.5.2 to run `appraisal install`
appraise "vagrant-1.7" do
group :plugins do
gem 'bundler', '>= 1.5.2', '< 1.8.0'
gem "vagrant", :git => 'https://github.com/mitchellh/vagrant', :tag => 'v1.7.1'
end
end
appraise "vagrant-1.6" do
gem 'bundler', '>= 1.5.2', '< 1.7.0'
group :plugins do
gem "vagrant", :git => 'https://github.com/mitchellh/vagrant', :tag => 'v1.6.5'
end
end
appraise "vagrant-1.5" do
gem 'bundler', '= 1.5.2'
group :plugins do
gem "vagrant", :git => 'https://github.com/mitchellh/vagrant', :tag => 'v1.5.4'
end
end
# Oldest supported
appraise "vagrant-1.5.0" do
gem 'bundler', '= 1.5.2'
group :plugins do
gem "vagrant", :git => 'https://github.com/mitchellh/vagrant', :tag => 'v1.5.4'
end
end
appraise "windows-wip" do
group :plugins do
gem "vagrant", :git => 'https://github.com/maxlinc/vagrant', :branch => 'winrm-1.3'
end
end