зеркало из https://github.com/Azure/vagrant-azure.git
21 строка
632 B
Ruby
21 строка
632 B
Ruby
# encoding: utf-8
|
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
# Licensed under the MIT License. See License in the project root for license information.
|
|
require 'pathname'
|
|
require 'vagrant-azure/plugin'
|
|
|
|
module VagrantPlugins
|
|
module Azure
|
|
lib_path = Pathname.new(File.expand_path('../vagrant-azure', __FILE__))
|
|
autoload :Action, lib_path.join('action')
|
|
autoload :Errors, lib_path.join('errors')
|
|
|
|
# This returns the path to the source of this plugin.
|
|
#
|
|
# @return [Pathname]
|
|
def self.source_root
|
|
@source_root ||= Pathname.new(File.expand_path('../../', __FILE__))
|
|
end
|
|
end
|
|
end
|