File: vagrant-lxc.gemspec

package info (click to toggle)
vagrant-lxc 1.4.3-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 412 kB
  • sloc: ruby: 2,578; sh: 472; makefile: 7
file content (20 lines) | stat: -rw-r--r-- 763 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'vagrant-lxc/version'

Gem::Specification.new do |gem|
  gem.name          = "vagrant-lxc"
  gem.version       = Vagrant::LXC::VERSION
  gem.authors       = ["Fabio Rehm"]
  gem.email         = ["fgrehm@gmail.com"]
  gem.description   = %q{Linux Containers provider for Vagrant}
  gem.summary       = gem.description
  gem.license       = 'MIT'
  gem.homepage      = "https://github.com/fgrehm/vagrant-lxc"

  gem.files         = `git ls-files`.split($/)
  gem.executables   = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
  gem.test_files    = gem.files.grep(%r{^(test|spec|features)/})
  gem.require_paths = ["lib"]
end