forked from javanthropus/stream
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstream.gemspec
More file actions
50 lines (39 loc) · 1.19 KB
/
stream.gemspec
File metadata and controls
50 lines (39 loc) · 1.19 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
$:.unshift File.join(File.dirname(__FILE__), 'lib')
require 'stream'
Gem::Specification.new do |s|
s.name = 'stream'
s.version = STREAM_VERSION
s.summary = "stream - Extended External Iterators"
s.description = "Module Stream defines an interface for external iterators."
#### Dependencies and requirements.
s.add_development_dependency 'rake'
s.add_development_dependency 'yard'
s.add_development_dependency 'rdoc'
s.add_development_dependency 'test-unit'
#### Which files are to be included in this gem?
s.files = Dir[
'[A-Z]*',
'lib/**/*.rb',
'test/**/*.rb',
'examples/**/*',
'Gemfile',
'README.rdoc',
'LICENSE',
'Rakefile'
]
#### Load-time details: library and application (you will need one or both).
s.require_path = 'lib'
s.autorequire = 'stream'
s.license = 'ruby'
#### Documentation and testing.
s.extra_rdoc_files = ['README.rdoc']
s.rdoc_options += [
'--title', s.summary,
'--main', 'README.rdoc',
'--line-numbers'
]
#### Author and project details.
s.authors = [ "Horst Duchene" ]
s.email = "monora@gmail.com"
s.homepage = "https://github.com/monora/stream"
end