-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gemspec
23 lines (21 loc) · 919 Bytes
/
.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
spec = Gem::Specification.new do |s|
s.name = 'htty'
s.version = File.read('VERSION').chomp
s.summary = 'The HTTP TTY'
s.description = 'htty is a console application for interacting with HTTP ' +
'servers. It is something of a cross between curl and the ' +
'Lynx browser.'
s.files = %w(README.rdoc MIT-LICENSE.rdoc VERSION) +
Dir['lib/**/*.rb'] +
Dir['spec/**/*']
s.has_rdoc = true
s.executables << 'htty'
s.requirements << 'Ruby v1.8.7 or later'
s.extra_rdoc_files = %w(README.rdoc MIT-LICENSE.rdoc)
s.rdoc_options << '--title' << 'htty, the HTTP TTY' <<
'--main' << 'README.rdoc' <<
'--output' << 'doc'
s.author = 'Nils Jonsson'
s.email = '[email protected]'
s.homepage = 'http://htty.github.com'
end