Sha256: 96d73a01d318500cfd5aba5f2cc31f502ca5611a2f38668a6201646c852b04b4
Contents?: true
Size: 1.01 KB
Versions: 1
Compression:
Stored size: 1.01 KB
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "web-puppet/version" Gem::Specification.new do |s| s.name = "web-puppet" s.version = WebPuppet::VERSION s.authors = ["Gareth Rushgrove"] s.email = ["gareth@morethanseven.net"] s.homepage = "https://github.com/garethr/web-puppet" s.summary = %q{Display Puppet node information as JSON over HTTP} s.description = %q{Daemon which serves information from a local puppet master as JSON over HTTP} s.rubyforge_project = "web-puppet" 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"] s.add_runtime_dependency "rack" s.add_runtime_dependency "puppet", ">= 2.6.0" s.add_runtime_dependency "parseconfig" s.add_development_dependency "test-unit" s.add_development_dependency "rack-test" s.add_development_dependency "mocha" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
web-puppet-0.2.0 | web-puppet.gemspec |