Sha256: eab118d0c3c1dcb0b95da768b45d8b2a3cc6e999f899d73234164f50de74e131

Contents?: true

Size: 1.41 KB

Versions: 1

Compression:

Stored size: 1.41 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'ajimi/version'

Gem::Specification.new do |spec|
  spec.name          = "ajimi"
  spec.version       = Ajimi::VERSION
  spec.authors       = ["Masayuki Morita"]
  spec.email         = ["masayuki.morita@crowdworks.co.jp"]

  spec.summary       = %q{server diff tool}
  spec.description   = %q{Ajimi is a tool to compare servers by their files to shows difference in their configurations. It is useful to achieve some kind of a regression test against a server by finding unexpected changes to its configuration file after running Chef, Ansible, or your own provisioning tool.}
  spec.homepage      = "https://github.com/crowdworks/ajimi"
  spec.license       = "MIT"

  spec.files         = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_runtime_dependency "net-ssh", "~> 4.2"
  spec.add_runtime_dependency "diff-lcs"
  spec.add_runtime_dependency "thor"

  spec.add_development_dependency "bundler", "~> 1.10"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "rspec", "~> 3.0"
  spec.add_development_dependency "guard-rspec", "~> 4.0"
  spec.add_development_dependency "terminal-notifier-guard"

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ajimi-0.2.1 ajimi.gemspec