# frozen_string_literal: true require './lib/version' require 'date' Gem::Specification.new do |s| s.name = 'puppet-debugger' s.version = PuppetDebugger::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 = ['pdb'] # 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'] = 'https://rubygems.org' 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 = DateTime.now.strftime('%Y-%m-%d') s.description = 'A interactive command line tool for evaluating and debugging 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-debugger" s.licenses = ["MIT"] s.rubygems_version = "2.4.5.1" s.summary = "A repl based debugger for the puppet language" s.add_runtime_dependency(%q, ["~> 1.5.0"]) s.add_runtime_dependency(%q, [">= 3.8"]) s.add_runtime_dependency(%q, ["~> 0.3.1"]) s.add_runtime_dependency(%q, ["~> 1.7"]) s.add_development_dependency(%q, ["~> 3.12"]) s.add_development_dependency(%q, ["~> 3.6"]) end