(MAINT) Add version file and constant

This commit is contained in:
Rishi Javia 2017-07-07 12:37:41 -07:00
parent d1f0a7b7ea
commit eab14d4316
2 changed files with 5 additions and 1 deletions

View file

@ -1,9 +1,10 @@
# -*- encoding: utf-8 -*-
$LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
require 'beaker-vmpooler/version'
Gem::Specification.new do |s|
s.name = "beaker-vmpooler"
s.version = '0.0.1'
s.version = BeakerVmpooler::VERSION
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"

View file

@ -0,0 +1,3 @@
module BeakerVmpooler
VERSION = '0.0.1'
end