-
Notifications
You must be signed in to change notification settings - Fork 4
/
vagrant-yaml.gemspec
31 lines (25 loc) · 1.15 KB
/
vagrant-yaml.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
27
28
29
30
31
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/vagrant-yaml/version', __FILE__)
Gem::Specification.new do |s|
s.name = "vagrant-yaml"
s.version = VagrantYaml::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Christopher Gervais"]
s.email = ["[email protected]"]
s.license = 'GPL'
s.homepage = "https://github.com/ergonlogic/vagrant-yaml"
s.summary = %q{A Vagrant plugin that allows project configuration via YAML}
s.description = %q{A Vagrant plugin that provides a Vagrantfile that looks in YAML files for project and VM settings}
s.required_ruby_version = '>= 2.0.0'
s.required_rubygems_version = ">= 1.3.6"
s.add_dependency "deep_merge"
s.add_development_dependency "cucumber"
s.add_development_dependency "aruba"
s.add_development_dependency "rake"
s.add_development_dependency "simplecov", '~> 0.7.1'
s.add_development_dependency "coveralls"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end