
Add gemspec file, license, README, empty changelog, and empty library files. Note: the README proposes that this gem always be installed from the master branch of the git repository. This would save us the trouble of having make releases on the ruby forge and would mean that emergency fixes added to the gem would be available immediately, but also means that whenever we break it it breaks everything immediately. This proposal is open to feedback and we can always revisit it. Change-Id: I1490e3ec35235e057b3f0c13ae29b5913e7f8d49
19 lines
765 B
Ruby
19 lines
765 B
Ruby
lib = File.expand_path('../lib', __FILE__)
|
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
require 'puppet-openstack_spec_helper/version'
|
|
|
|
Gem::Specification.new do |spec|
|
|
spec.name = "puppet-openstack_spec_helper"
|
|
spec.version = PuppetOpenstackSpecHelper::Version::STRING
|
|
spec.authors = ["OpenStack Puppet Modules Team"]
|
|
spec.description = %q{Helpers for OpenStack module testing}
|
|
spec.summary = %q{Puppet-OpenStack spec helper}
|
|
spec.homepage = ""
|
|
spec.license = "Apache-2.0"
|
|
|
|
spec.files = `git ls-files`.split($/)
|
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
spec.require_paths = ["lib"]
|
|
end
|