Sha256: 58e4c9bc581ee400f94b41052a2e42d997b86d43766553e6bcb94fc8583d56fc
Contents?: true
Size: 1.4 KB
Versions: 2
Compression:
Stored size: 1.4 KB
Contents
require './lib/version' Gem::Specification.new do |s| s.name = "puppet-repl" s.version = PuppetRepl::VERSION s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|resources|local_test_results|pec)/}) } s.bindir = "bin" s.executables = ["prepl"] # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host' # to allow pushing to a single host or delete this section to allow pushing to any host. if s.respond_to?(:metadata) s.metadata['allowed_push_host'] = "'http://mygemserver.com'" else raise "RubyGems 2.0 or newer is required to protect against public gem pushes." end s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.require_paths = ["lib"] s.authors = ["Corey Osman"] s.date = "2016-07-03" s.description = "A interactive command line tool for evaluating the puppet language" s.email = "corey@nwops.io" s.extra_rdoc_files = [ "CHANGELOG.md", "LICENSE.txt", "README.md" ] s.homepage = "http://github.com/nwops/puppet-repl" s.licenses = ["MIT"] s.rubygems_version = "2.4.5.1" s.summary = "A repl for the puppet language" s.add_runtime_dependency(%q<puppet>, [">= 3.8"]) s.add_runtime_dependency(%q<facterdb>, ["~> 0.3"]) s.add_runtime_dependency(%q<awesome_print>, ["~> 1.6"]) s.add_development_dependency(%q<rdoc>, ["~> 3.12"]) end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
puppet-repl-0.3.1 | puppet-repl.gemspec |
puppet-repl-0.3.0 | puppet-repl.gemspec |