Sha256: 1935b6038fe662d6755a94c79c6900d1befd67493cc5a582b0c7a2dd9be41a12

Contents?: true

Size: 1.08 KB

Versions: 10

Compression:

Stored size: 1.08 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{Simple host management with chef and rake. No chef server required.}
  spec.description   = %q{chake provides a set of rake tasks that you can use to manage any number of hosts via SSH. It doesn't require a chef server; all you need is a workstation from where you can SSH into all your hosts.}
  spec.homepage      = "https://github.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_dependency "rake"
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
chake-0.3.1 chake.gemspec
chake-0.3 chake.gemspec
chake-0.2.3 chake.gemspec
chake-0.2.2 chake.gemspec
chake-0.2.1 chake.gemspec
chake-0.2 chake.gemspec
chake-0.1.7 chake.gemspec
chake-0.1.6 chake.gemspec
chake-0.1.5 chake.gemspec
chake-0.1.4 chake.gemspec