mirror of
https://github.com/puppetlabs/beaker-vmpooler.git
synced 2026-01-26 02:58:42 -05:00
Initial commit
This commit is contained in:
commit
d1f0a7b7ea
15 changed files with 1518 additions and 0 deletions
36
beaker-vmpooler.gemspec
Normal file
36
beaker-vmpooler.gemspec
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
# -*- encoding: utf-8 -*-
|
||||
$LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
|
||||
|
||||
Gem::Specification.new do |s|
|
||||
s.name = "beaker-vmpooler"
|
||||
s.version = '0.0.1'
|
||||
s.authors = ["Rishi Javia, Kevin Imber, Tony Vu"]
|
||||
s.email = ["rishi.javia@puppet.com, kevin.imber@puppet.com, tony.vu@puppet.com"]
|
||||
s.homepage = "https://github.com/puppetlabs/beaker-vmpooler"
|
||||
s.summary = %q{Beaker DSL Extension Helpers!}
|
||||
s.description = %q{For use for the Beaker acceptance testing tool}
|
||||
s.license = 'Apache2'
|
||||
|
||||
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"]
|
||||
|
||||
# Testing dependencies
|
||||
s.add_development_dependency 'rspec', '~> 3.0'
|
||||
s.add_development_dependency 'rspec-its'
|
||||
s.add_development_dependency 'fakefs', '~> 0.6'
|
||||
s.add_development_dependency 'rake', '~> 10.1'
|
||||
s.add_development_dependency 'simplecov'
|
||||
s.add_development_dependency 'pry', '~> 0.10'
|
||||
|
||||
# Documentation dependencies
|
||||
s.add_development_dependency 'yard'
|
||||
s.add_development_dependency 'markdown'
|
||||
s.add_development_dependency 'thin'
|
||||
|
||||
# Run time dependencies
|
||||
s.add_runtime_dependency 'stringify-hash', '~> 0.0.0'
|
||||
|
||||
end
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue