daichirata/secateurs

View on GitHub
secateurs.gemspec

Summary

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

Gem::Specification.new do |spec|
  spec.name          = "secateurs"
  spec.version       = Secateurs::VERSION
  spec.authors       = ["Daichi HIRATA"]
  spec.email         = ["bunny.hop.md@gmail.com"]

  spec.summary       = "Secateurs is a tool to manage Elasticsearch Index Template."
  spec.description   = "Secateurs is a tool to manage Elasticsearch Index Template."
  spec.homepage      = "https://github.com/daichirata/secateurs"

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

  spec.add_runtime_dependency "activesupport", "~> 4.0"
  spec.add_runtime_dependency "diffy"
  spec.add_runtime_dependency "elasticsearch", "~> 1.0"
  spec.add_runtime_dependency "jbuilder", "~> 2.0"
  spec.add_runtime_dependency "thor"

  spec.add_development_dependency "bundler", "~> 1.11"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "rspec", "~> 3.0"
  spec.add_development_dependency "pry-byebug"
end