redbubble/kumo_keisei_gem

View on GitHub
kumo_keisei.gemspec

Summary

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

Gem::Specification.new do |spec|
  spec.name          = "kumo_keisei"
  spec.version       = version
  spec.authors       = ["Redbubble"]
  spec.email         = ["delivery-engineering@redbubble.com"]
  spec.summary       = %q{A collection of utilities for dealing with AWS Cloud Formation.}
  spec.homepage      = "http://redbubble.com"
  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_runtime_dependency 'aws-sdk', "~> 2.2"
  spec.add_runtime_dependency 'kumo_config'
  spec.add_development_dependency "bundler", "~> 1.6"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "rspec", "~> 3.4"
  spec.add_development_dependency "pry", "~> 0.10"
end