Sha256: 38b54595cdbb2a83d573454aec795775c58ee6af67b9a65728c9e80dcb2b8558

Contents?: true

Size: 1.56 KB

Versions: 7

Compression:

Stored size: 1.56 KB

Contents

require 'vagrant-arubacloud/version'
require 'vagrant-arubacloud/plugin'

require 'pathname'

module VagrantPlugins
  module ArubaCloud

    lib_path = Pathname.new(File.expand_path('../vagrant-arubacloud', __FILE__))
    autoload :Errors, lib_path.join('errors')

    def self.init_i18n
      I18n.load_path << File.expand_path('locales/en.yml', source_root)
      I18n.reload!
    end

    # This initializes the logging so that our logs are outputted at
    # the same level as Vagrant core logs.
    def self.init_logging
      # Initialize logging
      level = nil
      begin
        level = Log4r.const_get(ENV['VAGRANT_LOG'].upcase)
      rescue NameError
        # This means that the logging constant wasn't found,
        # which is fine. We just keep `level` as `nil`. But
        # we tell the user.
        level = nil
      end

      # Some constants, such as "true" resolve to booleans, so the
      # above error checking doesn't catch it. This will check to make
      # sure that the log level is an integer, as Log4r requires.
      level = nil unless level.is_a?(Integer)

      # Set the logging level on all "vagrant" namespaced
      # logs as long as we have a valid level.
      if level
        logger = Log4r::Logger.new('vagrant_arubacloud')
        logger.outputters = Log4r::Outputter.stderr
        logger.level = level
        logger = nil
      end
    end

    # 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

7 entries across 7 versions & 1 rubygems

Version Path
vagrant-arubacloud-0.0.9 lib/vagrant-arubacloud.rb
vagrant-arubacloud-0.0.7 lib/vagrant-arubacloud.rb
vagrant-arubacloud-0.0.6 lib/vagrant-arubacloud.rb
vagrant-arubacloud-0.0.5 lib/vagrant-arubacloud.rb
vagrant-arubacloud-0.0.4 lib/vagrant-arubacloud.rb
vagrant-arubacloud-0.0.3 lib/vagrant-arubacloud.rb
vagrant-arubacloud-0.0.2dev lib/vagrant-arubacloud.rb