forked from rtomayko/bcat
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbcat.gemspec
More file actions
60 lines (53 loc) · 1.29 KB
/
bcat.gemspec
File metadata and controls
60 lines (53 loc) · 1.29 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
51
52
53
54
55
56
57
58
59
60
Gem::Specification.new do |s|
s.name = 'bcat'
s.version = '0.6.1'
s.date = '2011-05-22'
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 = "rtomayko@gmail.com"
# = MANIFEST =
s.files = %w[
CONTRIBUTING
COPYING
INSTALLING
README
RELEASING
Rakefile
bcat.gemspec
bin/a2h
bin/bcat
bin/btee
contrib/bman
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/contest.rb
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 = ['a2h', 'bcat', 'btee']
s.test_files = s.files.select {|path| path =~ /^test\/.*_test.rb/}
s.add_dependency 'rack', '~> 1.0'
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