guard-puppet/guard-puppet.gemspec

23 lines
840 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"]
2015-06-06 12:07:41 +00:00
s.license = "MIT"
2015-06-06 12:05:04 +00:00
s.homepage = "https://github.com/guard/guard-puppet"
2011-07-01 02:53:55 +00:00
s.summary = %q{Reapply Puppet configs automatically using Guard.}
s.description = %q{Guard plugin to reapply Puppet configurations.}
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:22:05 +00:00
s.add_dependency 'guard-compat', '~> 1.2'
2015-06-06 12:03:58 +00:00
s.add_dependency 'puppet', '~> 4.1'
2011-07-01 02:48:18 +00:00
end