Sha256: c9ffcd246d3a74b6912e862fd1438ac6f76a9dafe49f280c3ff837abeca0afc9

Contents?: true

Size: 1.04 KB

Versions: 5

Compression:

Stored size: 1.04 KB

Contents

# Copyright 2013 Google Inc. All Rights Reserved.
# 
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# 
#     http://www.apache.org/licenses/LICENSE-2.0
# 
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

require "pathname"
require "vagrant-google/plugin"

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

5 entries across 5 versions & 2 rubygems

Version Path
vagrant-google-0.1.5 lib/vagrant-google.rb
vagrant-google-0.1.5.rc1 lib/vagrant-google.rb
tcr-vagrant-google-0.1.4 lib/vagrant-google.rb
vagrant-google-0.1.4 lib/vagrant-google.rb
vagrant-google-0.1.3 lib/vagrant-google.rb