apneadiving/waterfall

View on GitHub
waterfall.gemspec

Summary

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

Gem::Specification.new do |spec|
  spec.name          = "waterfall"
  spec.version       = Waterfall::VERSION
  spec.authors       = ["Benjamin Roth"]
  spec.email         = ["benjamin@rubyist.fr"]
  spec.description   = %q{A slice of functional programming to chain ruby services and blocks. Make them flow!}
  spec.summary       = %q{A slice of functional programming to chain ruby services and blocks. Make them flow!}
  spec.homepage      = "https://github.com/apneadiving/waterfall"
  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{^(spec)/})
  spec.require_paths = ["lib"]

  spec.add_development_dependency "bundler", "~> 1.14"
  spec.add_development_dependency "pry", '>0.10'
  spec.add_development_dependency "pry-nav"
  spec.add_development_dependency "rake"
  spec.add_development_dependency "rspec", "3.6"
end