curb 0.7.15 → 0.8.4

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.
metadata CHANGED
@@ -1,41 +1,36 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: curb
3
- version: !ruby/object:Gem::Version
4
- hash: 29
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.8.4
5
5
  prerelease:
6
- segments:
7
- - 0
8
- - 7
9
- - 15
10
- version: 0.7.15
11
6
  platform: ruby
12
- authors:
7
+ authors:
13
8
  - Ross Bamford
14
9
  - Todd A. Fisher
15
10
  autorequire:
16
11
  bindir: bin
17
12
  cert_chain: []
18
-
19
- date: 2011-03-20 00:00:00 -04:00
20
- default_executable:
13
+ date: 2013-05-20 00:00:00.000000000 Z
21
14
  dependencies: []
22
-
23
- 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/
15
+ description: Curb (probably CUrl-RuBy or something) provides Ruby-language bindings
16
+ for the libcurl(3), a fully-featured client-side URL transfer library. cURL and
17
+ libcurl live at http://curl.haxx.se/
24
18
  email: todd.fisher@gmail.com
25
19
  executables: []
26
-
27
- extensions:
20
+ extensions:
28
21
  - ext/extconf.rb
29
- extra_rdoc_files:
22
+ extra_rdoc_files:
30
23
  - LICENSE
31
24
  - README
32
- files:
25
+ files:
33
26
  - LICENSE
34
27
  - README
35
28
  - Rakefile
36
29
  - doc.rb
37
30
  - ext/extconf.rb
38
31
  - lib/curb.rb
32
+ - lib/curl/easy.rb
33
+ - lib/curl/multi.rb
39
34
  - lib/curl.rb
40
35
  - ext/curb.c
41
36
  - ext/curb_easy.c
@@ -51,9 +46,12 @@ files:
51
46
  - ext/curb_postfield.h
52
47
  - ext/curb_upload.h
53
48
  - tests/alltests.rb
49
+ - tests/bug_crash_on_debug.rb
50
+ - tests/bug_crash_on_progress.rb
54
51
  - tests/bug_curb_easy_blocks_ruby_threads.rb
55
52
  - tests/bug_curb_easy_post_with_string_no_content_length_header.rb
56
53
  - tests/bug_instance_post_differs_from_class_post.rb
54
+ - tests/bug_issue102.rb
57
55
  - tests/bug_multi_segfault.rb
58
56
  - tests/bug_postfields_crash.rb
59
57
  - tests/bug_postfields_crash2.rb
@@ -62,54 +60,57 @@ files:
62
60
  - tests/helper.rb
63
61
  - tests/mem_check.rb
64
62
  - tests/require_last_or_segfault_script.rb
63
+ - tests/signals.rb
64
+ - tests/tc_curl.rb
65
65
  - tests/tc_curl_download.rb
66
66
  - tests/tc_curl_easy.rb
67
+ - tests/tc_curl_easy_setopt.rb
67
68
  - tests/tc_curl_multi.rb
68
69
  - tests/tc_curl_postfield.rb
69
70
  - tests/timeout.rb
70
71
  - tests/timeout_server.rb
71
72
  - tests/unittests.rb
72
- has_rdoc: true
73
73
  homepage: http://curb.rubyforge.org/
74
74
  licenses: []
75
-
76
75
  post_install_message:
77
- rdoc_options:
76
+ rdoc_options:
78
77
  - --main
79
78
  - README
80
- require_paths:
79
+ require_paths:
81
80
  - lib
82
81
  - ext
83
- required_ruby_version: !ruby/object:Gem::Requirement
82
+ required_ruby_version: !ruby/object:Gem::Requirement
84
83
  none: false
85
- requirements:
86
- - - ">="
87
- - !ruby/object:Gem::Version
88
- hash: 3
89
- segments:
84
+ requirements:
85
+ - - ! '>='
86
+ - !ruby/object:Gem::Version
87
+ version: '0'
88
+ segments:
90
89
  - 0
91
- version: "0"
92
- required_rubygems_version: !ruby/object:Gem::Requirement
90
+ hash: -243569426931689339
91
+ required_rubygems_version: !ruby/object:Gem::Requirement
93
92
  none: false
94
- requirements:
95
- - - ">="
96
- - !ruby/object:Gem::Version
97
- hash: 3
98
- segments:
93
+ requirements:
94
+ - - ! '>='
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ segments:
99
98
  - 0
100
- version: "0"
99
+ hash: -243569426931689339
101
100
  requirements: []
102
-
103
101
  rubyforge_project: curb
104
- rubygems_version: 1.4.1
102
+ rubygems_version: 1.8.24
105
103
  signing_key:
106
104
  specification_version: 3
107
105
  summary: Ruby libcurl bindings
108
- test_files:
106
+ test_files:
109
107
  - tests/alltests.rb
108
+ - tests/bug_crash_on_debug.rb
109
+ - tests/bug_crash_on_progress.rb
110
110
  - tests/bug_curb_easy_blocks_ruby_threads.rb
111
111
  - tests/bug_curb_easy_post_with_string_no_content_length_header.rb
112
112
  - tests/bug_instance_post_differs_from_class_post.rb
113
+ - tests/bug_issue102.rb
113
114
  - tests/bug_multi_segfault.rb
114
115
  - tests/bug_postfields_crash.rb
115
116
  - tests/bug_postfields_crash2.rb
@@ -118,8 +119,11 @@ test_files:
118
119
  - tests/helper.rb
119
120
  - tests/mem_check.rb
120
121
  - tests/require_last_or_segfault_script.rb
122
+ - tests/signals.rb
123
+ - tests/tc_curl.rb
121
124
  - tests/tc_curl_download.rb
122
125
  - tests/tc_curl_easy.rb
126
+ - tests/tc_curl_easy_setopt.rb
123
127
  - tests/tc_curl_multi.rb
124
128
  - tests/tc_curl_postfield.rb
125
129
  - tests/timeout.rb