ianwhite/heed

View on GitHub
heed.gemspec

Summary

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

Gem::Specification.new do |spec|
  spec.name          = "heed"
  spec.version       = Heed::VERSION
  spec.authors       = ["Ian White"]
  spec.email         = ["ian.w.white@gmail.com"]
  spec.description   = %q{Create and use ad-hoc listeners with hark and heed}
  spec.summary       = %q{Heed is a gem that enables  writing code in a "hexagonal architecture" or "tell don't ask" style}
  spec.homepage      = "http://github.com/ianwhite/heed"
  spec.license       = "MIT"

  spec.files         = `git ls-files`.split($/)
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(%r{^(test|spec)/})
  spec.require_paths = ["lib"]

  spec.add_development_dependency "bundler", "~> 1.3"
  spec.add_development_dependency "rake"
  spec.add_development_dependency "rspec"

  if RUBY_VERSION > "1.9"
    spec.add_development_dependency "coveralls"
  end
end