Sha256: 6a62f83ee30e5dc6930a276a295b9376bda96fd703b42a886b28be4ef7cbfdb5
Contents?: true
Size: 1.37 KB
Versions: 7
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.0" spec.add_development_dependency "bundler", "~> 1.16" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.0" end
Version data entries
7 entries across 7 versions & 1 rubygems