-
Notifications
You must be signed in to change notification settings - Fork 3
/
vagrant-invade.gemspec
23 lines (20 loc) · 976 Bytes
/
vagrant-invade.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# coding: utf-8
require File.expand_path('../lib/vagrant-invade/version', __FILE__)
Gem::Specification.new do |s|
s.name = 'vagrant-invade'
s.version = VagrantPlugins::Invade::VERSION
s.platform = Gem::Platform::RUBY
s.date = Date.today.to_s
s.summary = "Create a Vagrantfile with a single YAML configuration file"
s.description = "InVaDE is a plugin that uses a YAML configuration file to build a Vagrantfile from it."
s.authors = ["Lennart Stein"]
s.email = 'frgmt@posteo.de'
s.files = `git ls-files`.split($\)
s.executables = s.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
s.require_paths = ['lib']
s.homepage = 'https://github.com/frgmt/vagrant-invade'
s.license = 'CC-BY-NC-SA-4.0'
s.required_ruby_version = '>= 2.0.0'
s.add_development_dependency 'bundler', '~> 1.12', '>= 1.12.5'
s.add_development_dependency 'rake', '~> 10.0'
end