forked from test-kitchen/kitchen-vagrant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kitchen-vagrant.gemspec
28 lines (23 loc) · 1.1 KB
/
kitchen-vagrant.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
# -*- encoding: utf-8 -*-
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "kitchen/driver/vagrant_version.rb"
Gem::Specification.new do |gem|
gem.name = "kitchen-vagrant"
gem.version = Kitchen::Driver::VAGRANT_VERSION
gem.license = "Apache-2.0"
gem.authors = ["Fletcher Nichol"]
gem.email = ["fnichol@nichol.ca"]
gem.description = "Kitchen::Driver::Vagrant - A Vagrant Driver for Test Kitchen."
gem.summary = gem.description
gem.homepage = "https://github.com/test-kitchen/kitchen-vagrant/"
gem.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR).grep(/LICENSE|^lib|^support|^templates/)
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_dependency "test-kitchen", "~> 1.4"
gem.add_development_dependency "countloc", "~> 0.4"
gem.add_development_dependency "rake"
gem.add_development_dependency "rspec", "~> 3.2"
gem.add_development_dependency "simplecov", "~> 0.9"
gem.add_development_dependency "chefstyle"
end