Blame view

vagrant-lxd.gemspec 775 Bytes
Georg Hopp authored
1 2 3
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
require 'vagrant-lxd/version'
Georg Hopp authored
5 6 7

Gem::Specification.new do |spec|
  spec.name          = "vagrant-lxd"
8
  spec.version       = VagrantPlugins::ProviderLxd::VERSION
Georg Hopp authored
9
  spec.authors       = ["Georg Hopp"]
Georg Hopp authored
10 11
  spec.email         = ["georg@steffers.org"]
  spec.license       = 'GPLv3'
Georg Hopp authored
12 13

  spec.summary       = %q{Vagrant LXD provider.}
Georg Hopp authored
14
  spec.homepage      = "https://gitlab.weird-web-workers.org/ghopp/vagrant-lxd"
Georg Hopp authored
15 16 17 18 19 20 21 22

  spec.files         = `git ls-files -z`.split("\x0").reject do |f|
    f.match(%r{^(test|spec|features)/})
  end
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]
end