зеркало из https://github.com/Azure/vagrant-azure.git
17 строки
668 B
Ruby
17 строки
668 B
Ruby
#--------------------------------------------------------------------------
|
|
# Copyright (c) Microsoft Open Technologies, Inc.
|
|
# All Rights Reserved. Licensed under the Apache License, Version 2.0.
|
|
# See License.txt in the project root for license information.
|
|
#--------------------------------------------------------------------------
|
|
|
|
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.6.0'
|
|
end
|