-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpiecewise.gemspec
25 lines (21 loc) · 919 Bytes
/
piecewise.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# frozen_string_literal: true
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |spec|
spec.name = 'piecewise'
spec.version = '0.3.0'
spec.authors = ['Mike Pastore']
spec.email = ['mike@oobak.org']
spec.summary = 'Add #piecewise to enumerables, enumerators, and lazy enumerators'
spec.homepage = 'https://github.com/mwpastore/ruby-piecewise'
spec.license = 'MIT'
spec.files = %x{git ls-files -z}.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = %w[lib]
spec.add_development_dependency 'bundler', '~> 1.16'
spec.add_development_dependency 'rake', '~> 12.0'
spec.add_development_dependency 'minitest', '~> 5.0'
end