-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gemspec
30 lines (25 loc) · 1.01 KB
/
.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
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.markdown
History.markdown
MIT-LICENSE.markdown
VERSION) +
Dir['lib/**/*.rb'] +
Dir['spec/**/*']
s.has_rdoc = true
s.executables << 'htty'
s.add_development_dependency 'bluecloth', '>= 2.0.7'
s.add_development_dependency 'rake', '>= 0.8.7'
s.add_development_dependency 'rspec', '>= 1.3.0'
s.add_development_dependency 'yard', '>= 0.6.1'
s.requirements << 'Ruby v1.8.7 or later'
s.author = 'Nils Jonsson'
s.email = '[email protected]'
s.homepage = 'http://htty.github.com'
s.rubyforge_project = 'htty'
end