-
Notifications
You must be signed in to change notification settings - Fork 6
/
vagrant-vyos.gemspec
26 lines (22 loc) · 1.03 KB
/
vagrant-vyos.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/vagrant-vyos/version', __FILE__)
Gem::Specification.new do |spec|
spec.name = "vagrant-vyos"
spec.version = VagrantPlugins::GuestVyOS::VERSION
spec.authors = ["KUSAKABE Yuya"]
spec.email = ["[email protected]"]
spec.description = "VyOS Guest Support for Vagrant"
spec.summary = "A small gem that adds vyos guest support to vagrant."
spec.homepage = "https://github.com/higebu/vagrant-vyos"
spec.license = "MIT"
spec.files = `git ls-files`.split($\)
spec.executables = spec.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.required_rubygems_version = ">= 1.3.6"
spec.rubyforge_project = "vagrant-vyos"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec", "~> 3.4"
spec.add_development_dependency "simplecov"
spec.add_development_dependency 'simplecov-cobertura'
end