Sha256: 83ead4b15f75c42ff2dc862e93c95839cd4254f617483a0d034d73eadaea2cdc

Contents?: true

Size: 1.35 KB

Versions: 4

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         = Dir['**/*'] - Dir['pkg/**/*']
  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

4 entries across 4 versions & 1 rubygems

Version Path
chake-0.21.2 chake.gemspec
chake-0.21.1 chake.gemspec
chake-0.21 chake.gemspec
chake-0.20 chake.gemspec