-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhopper.gemspec
More file actions
22 lines (19 loc) · 1.01 KB
/
hopper.gemspec
File metadata and controls
22 lines (19 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'hopper/version'
Gem::Specification.new do |spec|
spec.name = "hopper"
spec.version = Hopper::VERSION
spec.authors = ["Doug Everly"]
spec.email = ["Doug@Everly.org"]
spec.description = %q{Hopper accumulates items and executes a block of code when its capacity is reached, or the timeout is reached, whichever event occurs first.}
spec.summary = %q{Hopper is useful for collecting a certain number of items before processing them, whilst not blocking too long if the capacity is not reached.}
spec.homepage = "https://github.com/DougEverly/hopper"
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|features)/})
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", "~> 1.3"
end