Sha256: 7f14fab5d472149b959457d30adbd8680b1e5cd23ef19b6fa83a600434bf36c8
Contents?: true
Size: 1.35 KB
Versions: 3
Compression:
Stored size: 1.35 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'chake/version' Gem::Specification.new do |spec| spec.name = "chake" spec.version = Chake::VERSION spec.authors = ["Antonio Terceiro"] spec.email = ["terceiro@softwarelivre.org"] spec.summary = %q{serverless configuration management tool for chef} spec.description = %q{chake allows one to manage a number of hosts via SSH by combining chef (solo) and rake. It doesn't require a chef server; all you need is a workstation from where you can SSH into all your hosts. chake automates copying the configuration management repository to the target host (including managing encrypted files), running chef on them, and running arbitrary commands on the hosts.} spec.homepage = "https://gitlab.com/terceiro/chake" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0") spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.5" spec.add_development_dependency "rspec" spec.add_development_dependency "simplecov" spec.add_development_dependency "asciidoctor", '>= 1.5.5' spec.add_dependency "rake" end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
chake-0.19 | chake.gemspec |
chake-0.18 | chake.gemspec |
chake-0.17.1 | chake.gemspec |