curb 0.5.8.0-x86-linux

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of curb might be problematic. Click here for more details.

@@ -0,0 +1,2 @@
1
+ $: << $TESTDIR = File.expand_path(File.dirname(__FILE__))
2
+ Dir[File.join($TESTDIR, 'tc_*.rb')].each { |lib| require lib }
metadata ADDED
@@ -0,0 +1,96 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: curb
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.5.8.0
5
+ platform: x86-linux
6
+ authors:
7
+ - Ross Bamford
8
+ - Todd A. Fisher
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+
13
+ date: 2009-11-23 00:00:00 -05:00
14
+ default_executable:
15
+ dependencies: []
16
+
17
+ description: 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/
18
+ email: todd.fisher@gmail.com
19
+ executables: []
20
+
21
+ extensions: []
22
+
23
+ extra_rdoc_files:
24
+ - LICENSE
25
+ - README
26
+ files:
27
+ - LICENSE
28
+ - README
29
+ - Rakefile
30
+ - doc.rb
31
+ - ext/extconf.rb
32
+ - lib/curl.rb
33
+ - lib/curb.rb
34
+ - ext/curb.c
35
+ - ext/curb_upload.c
36
+ - ext/curb_postfield.c
37
+ - ext/curb_easy.c
38
+ - ext/curb_multi.c
39
+ - ext/curb_errors.c
40
+ - ext/curb_errors.h
41
+ - ext/curb_multi.h
42
+ - ext/curb.h
43
+ - ext/curb_easy.h
44
+ - ext/curb_postfield.h
45
+ - ext/curb_upload.h
46
+ - ext/curb_macros.h
47
+ - ext/curb_easy.o
48
+ - ext/curb_postfield.o
49
+ - ext/curb_errors.o
50
+ - ext/curb_upload.o
51
+ - ext/curb_multi.o
52
+ - ext/curb.o
53
+ - ext/curb_core.so
54
+ has_rdoc: true
55
+ homepage: http://curb.rubyforge.org/
56
+ licenses: []
57
+
58
+ post_install_message:
59
+ rdoc_options:
60
+ - --main
61
+ - README
62
+ require_paths:
63
+ - lib
64
+ - ext
65
+ required_ruby_version: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - ">="
68
+ - !ruby/object:Gem::Version
69
+ version: "0"
70
+ version:
71
+ required_rubygems_version: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: "0"
76
+ version:
77
+ requirements: []
78
+
79
+ rubyforge_project: curb
80
+ rubygems_version: 1.3.5
81
+ signing_key:
82
+ specification_version: 3
83
+ summary: Ruby libcurl bindings
84
+ test_files:
85
+ - tests/bug_require_last_or_segfault.rb
86
+ - tests/helper.rb
87
+ - tests/tc_curl_postfield.rb
88
+ - tests/bug_instance_post_differs_from_class_post.rb
89
+ - tests/bug_multi_segfault.rb
90
+ - tests/alltests.rb
91
+ - tests/require_last_or_segfault_script.rb
92
+ - tests/unittests.rb
93
+ - tests/tc_curl_multi.rb
94
+ - tests/tc_curl_download.rb
95
+ - tests/tc_curl_easy.rb
96
+ - tests/bug_curb_easy_blocks_ruby_threads.rb