-
Notifications
You must be signed in to change notification settings - Fork 0
/
kitchen-bluebox.gemspec
29 lines (25 loc) · 1.03 KB
/
kitchen-bluebox.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'kitchen/driver/bluebox_version'
Gem::Specification.new do |gem|
gem.name = "kitchen-bluebox"
gem.version = Kitchen::Driver::BLUEBOX_VERSION
gem.authors = ["Fletcher Nichol"]
gem.email = ["[email protected]"]
gem.description =
%q{Kitchen::Driver::Bluebox - A Blue Box block API driver for Test Kitchen}
gem.summary = gem.description
gem.homepage = "https://github.com/blueboxgroup/kitchen-bluebox"
gem.files = `git ls-files`.split($/)
gem.executables = []
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_dependency 'test-kitchen', '~> 1.0.0.alpha.0'
gem.add_dependency 'fog'
gem.add_development_dependency 'yard'
gem.add_development_dependency 'maruku'
gem.add_development_dependency 'cane'
gem.add_development_dependency 'tailor'
gem.add_development_dependency 'countloc'
end