guard-puppet/guard-puppet.gemspec

22 lines
776 B
Ruby
Raw Normal View History

2011-07-01 02:48:18 +00:00
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "guard/puppet/version"
Gem::Specification.new do |s|
s.name = "guard-puppet"
s.version = Guard::PuppetVersion::VERSION
s.authors = ["John Bintz"]
s.email = ["john@coswellproductions.com"]
s.homepage = ""
2011-07-01 02:53:55 +00:00
s.summary = %q{Reapply Puppet configs automatically using Guard.}
s.description = %q{Reapply Puppet configs automatically using Guard.}
2011-07-01 02:48:18 +00:00
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"]
2015-06-06 12:03:58 +00:00
s.add_dependency 'guard', '~> 2.12'
s.add_dependency 'puppet', '~> 4.1'
2011-07-01 02:48:18 +00:00
end