public
Description: Ruby bindings for libcurl
Homepage: http://idle-hacking.com/
Clone URL: git://github.com/taf2/curb.git
Todd A. Fisher (author)
Wed Sep 23 08:34:02 -0700 2009
curb / curb.gemspec
100644 27 lines (21 sloc) 1.562 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
Gem::Specification.new do |s|
  s.name = "curb"
  s.authors = ["Ross Bamford", "Todd A. Fisher"]
  s.version = '0.5.4.0'
  s.date = '2009-09-23'
  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 = 'todd.fisher@gmail.com'
  s.extra_rdoc_files = ['LICENSE', 'README']
  
  s.files = ["LICENSE", "README", "Rakefile", "doc.rb", "ext/extconf.rb", "lib/curb.rb", "lib/curl.rb", "ext/curb.c", "ext/curb_postfield.c", "ext/curb_multi.c", "ext/curb_errors.c", "ext/curb_easy.c", "ext/curb_upload.c", "ext/curb_easy.h", "ext/curb_errors.h", "ext/curb_upload.h", "ext/curb_macros.h", "ext/curb.h", "ext/curb_postfield.h", "ext/curb_multi.h"]
  #### Load-time details
  s.require_paths = ['lib','ext']
  s.rubyforge_project = 'curb'
  s.summary = %q{Ruby libcurl bindings}
  s.test_files = ["tests/tc_curl_multi.rb", "tests/tc_curl_postfield.rb", "tests/bug_curb_easy_blocks_ruby_threads.rb", "tests/unittests.rb", "tests/bug_require_last_or_segfault.rb", "tests/bug_instance_post_differs_from_class_post.rb", "tests/tc_curl_download.rb", "tests/alltests.rb", "tests/helper.rb", "tests/tc_curl_easy.rb", "tests/bug_multi_segfault.rb", "tests/require_last_or_segfault_script.rb"]
  s.extensions << 'ext/extconf.rb'
 
  #### Documentation and testing.
  s.has_rdoc = true
  s.homepage = 'http://curb.rubyforge.org/'
  s.rdoc_options = ['--main', 'README']
 
 
  s.platform = Gem::Platform::RUBY
 
end