Sha256: 1e9599747c5495af72a784cccfa094011a8d5613f2c55990311f4590f926ecb1
Contents?: true
Size: 1.37 KB
Versions: 3
Compression:
Stored size: 1.37 KB
Contents
lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "danarchy_deploy/version" Gem::Specification.new do |spec| spec.name = "danarchy_deploy" spec.version = DanarchyDeploy::VERSION spec.authors = ["Dan James"] spec.email = ["dan@danarchy.me"] spec.summary = %q{Pushes deployments locally or remotely based on a JSON/YAML/CouchDB template.} spec.description = %q{DanarchyDeploy intends to simplify Gentoo Linux (and other distro) deployments down to a single template from an input JSON or YAML file, or from a CouchDB file.} spec.homepage = "https://github.com/danarchy85/danarchy_deploy" spec.license = "MIT" if spec.respond_to?(:metadata) spec.metadata["allowed_push_host"] = "https://rubygems.org" else raise "RubyGems 2.0 or newer is required to protect against " \ "public gem pushes." end spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.bindir = "bin" spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_dependency 'danarchy_couchdb', '~> 0.1' spec.add_development_dependency 'bundler', '~> 2.5' spec.add_development_dependency 'rake', '~> 13.0' spec.add_runtime_dependency 'mongo', '~> 2.20' end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
danarchy_deploy-0.2.10 | danarchy_deploy.gemspec |
danarchy_deploy-0.2.9 | danarchy_deploy.gemspec |
danarchy_deploy-0.2.8 | danarchy_deploy.gemspec |