Sha256: 21f59871b7656b783bae7286b8be259a84b5e4a7f7e6a3c50b8a2c28ae0b65fe

Contents?: true

Size: 495 Bytes

Versions: 2

Compression:

Stored size: 495 Bytes

Contents

require "pathname"
require "vagrant-cloudstack/plugin"

module VagrantPlugins
  module Cloudstack
    lib_path = Pathname.new(File.expand_path("../vagrant-cloudstack", __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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
vagrant-cloudstack-1.3.0 lib/vagrant-cloudstack.rb
vagrant-cloudstack-1.2.0 lib/vagrant-cloudstack.rb