forked from rtomayko/bcat
-
Notifications
You must be signed in to change notification settings - Fork 1
/
bcat.gemspec
57 lines (50 loc) · 1.21 KB
/
bcat.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
Gem::Specification.new do |s|
s.name = 'bcat'
s.version = '0.5.0'
s.date = '2010-06-28'
s.description = "pipe to browser utility"
s.summary =
"Concatenate input from standard input, or one or more files, " +
"and write progressive output to a browser."
s.authors = ["Ryan Tomayko"]
s.email = "[email protected]"
# = MANIFEST =
s.files = %w[
CONTRIBUTING
COPYING
INSTALLING
README
Rakefile
bcat.gemspec
bin/a2h
bin/bcat
bin/btee
lib/bcat.rb
lib/bcat/ansi.rb
lib/bcat/browser.rb
lib/bcat/html.rb
lib/bcat/reader.rb
lib/bcat/server.rb
man/a2h.1
man/a2h.1.ronn
man/bcat.1
man/bcat.1.ronn
man/btee.1
man/btee.1.ronn
man/index.html
test/test_bcat_a2h.rb
test/test_bcat_ansi.rb
test/test_bcat_browser.rb
test/test_bcat_head_parser.rb
]
# = MANIFEST =
s.default_executable = 'bcat'
s.executables = ['bcat']
s.test_files = s.files.select {|path| path =~ /^test\/.*_test.rb/}
s.add_dependency 'rack'
s.extra_rdoc_files = %w[COPYING]
s.has_rdoc = true
s.homepage = "http://rtomayko.github.com/bcat/"
s.rdoc_options = ["--line-numbers", "--inline-source"]
s.require_paths = %w[lib]
end