-
Notifications
You must be signed in to change notification settings - Fork 0
/
lazily.gemspec
30 lines (22 loc) · 899 Bytes
/
lazily.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
26
27
28
29
30
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "lazily/version"
Gem::Specification.new do |s|
s.name = "lazily"
s.version = Lazily::VERSION.dup
s.platform = Gem::Platform::RUBY
s.authors = ["Mike Williams"]
s.email = "[email protected]"
s.homepage = "http://github.com/mdub/lazily"
s.license = "MIT"
s.summary = %{Lazy Enumerables for everybody!}
s.description = <<-EOT
Lazily implements "lazy" versions of many Enumerable methods,
allowing streamed processing of large (or even infinite) collections.
It's equivalent to Ruby-2.x's Enumerable#lazy, but is implemented in
pure Ruby, and works even in Ruby-1.8.x.
EOT
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_paths = ["lib"]
end