forked from petems/vagrant-puppet-install
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
23 lines (19 loc) · 613 Bytes
/
Gemfile
File metadata and controls
23 lines (19 loc) · 613 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
source 'https://rubygems.org'
gemspec
group :development do
# We depend on Vagrant for development, but we don't add it as a
# gem dependency because we expect to be installed within the
# Vagrant environment itself using `vagrant plugin`.
gem 'vagrant', git: 'git://github.com/mitchellh/vagrant.git', tag: 'v1.7.4'
end
group :acceptance do
gem 'vagrant-digitalocean', '~> 0.5.3'
gem 'vagrant-aws', '~> 0.4.0'
gem 'vagrant-rackspace', '~> 0.1.4'
gem 'vagrant-vbguest', '~> 0.11.0'
end
group :docs do
gem 'yard', '~> 0.8.5'
gem 'redcarpet', '~> 2.2.2'
gem 'github-markup', '~> 0.7.5'
end