-
Notifications
You must be signed in to change notification settings - Fork 1
/
curb.gemspec
26 lines (23 loc) · 958 Bytes
/
curb.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
Gem::Specification.new do |s|
s.name = "curb"
s.authors = ["Ross Bamford", "Todd A. Fisher"]
s.version = '0.8.6'
s.date = '2014-07-22'
s.description = %q{Curb (probably CUrl-RuBy or something) provides Ruby-language bindings for the libcurl(3), a fully-featured client-side URL transfer library. cURL and libcurl live at http://curl.haxx.se/}
s.email = '[email protected]'
s.license = 'Ruby'
s.extra_rdoc_files = ['LICENSE', 'README.markdown']
s.add_development_dependency "test-unit"
s.files = `git ls-files -z`.split("\x0")
#### Load-time details
s.require_paths = ['lib','ext']
s.rubyforge_project = 'curb'
s.summary = %q{Ruby libcurl bindings}
s.test_files = s.files.grep(%r{^(test)/})
s.extensions << 'ext/extconf.rb'
#### Documentation and testing.
s.has_rdoc = true
s.homepage = 'https://github.com/taf2/curb'
s.rdoc_options = ['--main', 'README.markdown']
s.platform = Gem::Platform::RUBY
end