Sha256: c17581382356a7131184baeaca29ed0ad4710820449fcc32a20ba90ae60857b6

Contents?: true

Size: 375 Bytes

Versions: 3

Compression:

Stored size: 375 Bytes

Contents

module VagrantPlugins
  module CommandLogs
    class Plugin < Vagrant.plugin('2')
      name 'vagrant-logs'

      description 'Plugin allows printing logs or save them to a Gist'

      command 'logs' do
        require_relative 'command'
        Command
      end

      config 'vagrant_logs' do
        require_relative 'config'
        Config
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
vagrant-logs-0.1.1 lib/vagrant-logs/plugin.rb
vagrant-logs-0.1.0 lib/vagrant-logs/plugin.rb
vagrant-logs-0.0.1 lib/vagrant-logs/plugin.rb