http_spew 0.1.0
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.
- data/.document +6 -0
- data/.gitignore +8 -0
- data/.manifest +33 -0
- data/.wrongdoc.yml +4 -0
- data/COPYING +674 -0
- data/ChangeLog +170 -0
- data/GIT-VERSION-FILE +1 -0
- data/GIT-VERSION-GEN +40 -0
- data/GNUmakefile +5 -0
- data/LATEST +4 -0
- data/LICENSE +17 -0
- data/NEWS +4 -0
- data/README +61 -0
- data/http_spew.gemspec +24 -0
- data/lib/http_spew/chunky_pipe.rb +12 -0
- data/lib/http_spew/content_md5.rb +55 -0
- data/lib/http_spew/headers.rb +43 -0
- data/lib/http_spew/hit_n_run.rb +19 -0
- data/lib/http_spew/input_spray.rb +53 -0
- data/lib/http_spew/request.rb +77 -0
- data/lib/http_spew.rb +97 -0
- data/pkg.mk +171 -0
- data/setup.rb +1585 -0
- data/test/content-md5.ru +21 -0
- data/test/helper.rb +41 -0
- data/test/mirror.ru +22 -0
- data/test/sha1.ru +18 -0
- data/test/test_content_md5.rb +85 -0
- data/test/test_hit_n_run.rb +47 -0
- data/test/test_input_spray.rb +101 -0
- data/test/test_mirror.rb +60 -0
- data/test/test_request.rb +54 -0
- data/test/test_upload.rb +127 -0
- metadata +166 -0
metadata
ADDED
@@ -0,0 +1,166 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: http_spew
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 27
|
5
|
+
prerelease:
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 1
|
9
|
+
- 0
|
10
|
+
version: 0.1.0
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- HTTP Spew hackers
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2011-02-24 00:00:00 +00:00
|
19
|
+
default_executable:
|
20
|
+
dependencies:
|
21
|
+
- !ruby/object:Gem::Dependency
|
22
|
+
name: kcar
|
23
|
+
prerelease: false
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ~>
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
hash: 31
|
30
|
+
segments:
|
31
|
+
- 0
|
32
|
+
- 1
|
33
|
+
- 2
|
34
|
+
version: 0.1.2
|
35
|
+
type: :runtime
|
36
|
+
version_requirements: *id001
|
37
|
+
- !ruby/object:Gem::Dependency
|
38
|
+
name: kgio
|
39
|
+
prerelease: false
|
40
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ~>
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
hash: 5
|
46
|
+
segments:
|
47
|
+
- 2
|
48
|
+
- 3
|
49
|
+
version: "2.3"
|
50
|
+
type: :runtime
|
51
|
+
version_requirements: *id002
|
52
|
+
- !ruby/object:Gem::Dependency
|
53
|
+
name: wrongdoc
|
54
|
+
prerelease: false
|
55
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
56
|
+
none: false
|
57
|
+
requirements:
|
58
|
+
- - ~>
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
hash: 5
|
61
|
+
segments:
|
62
|
+
- 1
|
63
|
+
- 5
|
64
|
+
version: "1.5"
|
65
|
+
type: :development
|
66
|
+
version_requirements: *id003
|
67
|
+
description: |-
|
68
|
+
Do not use HTTP Spew for connecting to servers outside of your LAN.
|
69
|
+
Do not use HTTP Spew without the permission of your server admins.
|
70
|
+
Use HTTP Spew if you wish you could kinda multicast with HTTP...
|
71
|
+
email: http.spew@librelist.org
|
72
|
+
executables: []
|
73
|
+
|
74
|
+
extensions: []
|
75
|
+
|
76
|
+
extra_rdoc_files:
|
77
|
+
- LICENSE
|
78
|
+
- README
|
79
|
+
- NEWS
|
80
|
+
- LATEST
|
81
|
+
- ChangeLog
|
82
|
+
- lib/http_spew.rb
|
83
|
+
- lib/http_spew/chunky_pipe.rb
|
84
|
+
- lib/http_spew/content_md5.rb
|
85
|
+
- lib/http_spew/headers.rb
|
86
|
+
- lib/http_spew/hit_n_run.rb
|
87
|
+
- lib/http_spew/input_spray.rb
|
88
|
+
- lib/http_spew/request.rb
|
89
|
+
files:
|
90
|
+
- .document
|
91
|
+
- .gitignore
|
92
|
+
- .manifest
|
93
|
+
- .wrongdoc.yml
|
94
|
+
- COPYING
|
95
|
+
- ChangeLog
|
96
|
+
- GIT-VERSION-FILE
|
97
|
+
- GIT-VERSION-GEN
|
98
|
+
- GNUmakefile
|
99
|
+
- LATEST
|
100
|
+
- LICENSE
|
101
|
+
- NEWS
|
102
|
+
- README
|
103
|
+
- http_spew.gemspec
|
104
|
+
- lib/http_spew.rb
|
105
|
+
- lib/http_spew/chunky_pipe.rb
|
106
|
+
- lib/http_spew/content_md5.rb
|
107
|
+
- lib/http_spew/headers.rb
|
108
|
+
- lib/http_spew/hit_n_run.rb
|
109
|
+
- lib/http_spew/input_spray.rb
|
110
|
+
- lib/http_spew/request.rb
|
111
|
+
- pkg.mk
|
112
|
+
- setup.rb
|
113
|
+
- test/content-md5.ru
|
114
|
+
- test/helper.rb
|
115
|
+
- test/mirror.ru
|
116
|
+
- test/sha1.ru
|
117
|
+
- test/test_content_md5.rb
|
118
|
+
- test/test_hit_n_run.rb
|
119
|
+
- test/test_input_spray.rb
|
120
|
+
- test/test_mirror.rb
|
121
|
+
- test/test_request.rb
|
122
|
+
- test/test_upload.rb
|
123
|
+
has_rdoc: true
|
124
|
+
homepage: http://bogomips.org/http_spew/
|
125
|
+
licenses: []
|
126
|
+
|
127
|
+
post_install_message:
|
128
|
+
rdoc_options:
|
129
|
+
- -t
|
130
|
+
- HTTP Spew - LAN-only HTTP spam^H^H^H^Hclient for Ruby
|
131
|
+
- -W
|
132
|
+
- http://bogomips.org/http_spew.git/tree/%s
|
133
|
+
require_paths:
|
134
|
+
- lib
|
135
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
136
|
+
none: false
|
137
|
+
requirements:
|
138
|
+
- - ">="
|
139
|
+
- !ruby/object:Gem::Version
|
140
|
+
hash: 3
|
141
|
+
segments:
|
142
|
+
- 0
|
143
|
+
version: "0"
|
144
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
145
|
+
none: false
|
146
|
+
requirements:
|
147
|
+
- - ">="
|
148
|
+
- !ruby/object:Gem::Version
|
149
|
+
hash: 3
|
150
|
+
segments:
|
151
|
+
- 0
|
152
|
+
version: "0"
|
153
|
+
requirements: []
|
154
|
+
|
155
|
+
rubyforge_project: rainbows
|
156
|
+
rubygems_version: 1.5.2
|
157
|
+
signing_key:
|
158
|
+
specification_version: 3
|
159
|
+
summary: LAN-only HTTP spam^H^H^H^Hclient for Ruby
|
160
|
+
test_files:
|
161
|
+
- test/test_mirror.rb
|
162
|
+
- test/test_request.rb
|
163
|
+
- test/test_upload.rb
|
164
|
+
- test/test_content_md5.rb
|
165
|
+
- test/test_input_spray.rb
|
166
|
+
- test/test_hit_n_run.rb
|