http_spew 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- 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
data/.document
ADDED
data/.gitignore
ADDED
data/.manifest
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
.document
|
2
|
+
.gitignore
|
3
|
+
.manifest
|
4
|
+
.wrongdoc.yml
|
5
|
+
COPYING
|
6
|
+
ChangeLog
|
7
|
+
GIT-VERSION-FILE
|
8
|
+
GIT-VERSION-GEN
|
9
|
+
GNUmakefile
|
10
|
+
LATEST
|
11
|
+
LICENSE
|
12
|
+
NEWS
|
13
|
+
README
|
14
|
+
http_spew.gemspec
|
15
|
+
lib/http_spew.rb
|
16
|
+
lib/http_spew/chunky_pipe.rb
|
17
|
+
lib/http_spew/content_md5.rb
|
18
|
+
lib/http_spew/headers.rb
|
19
|
+
lib/http_spew/hit_n_run.rb
|
20
|
+
lib/http_spew/input_spray.rb
|
21
|
+
lib/http_spew/request.rb
|
22
|
+
pkg.mk
|
23
|
+
setup.rb
|
24
|
+
test/content-md5.ru
|
25
|
+
test/helper.rb
|
26
|
+
test/mirror.ru
|
27
|
+
test/sha1.ru
|
28
|
+
test/test_content_md5.rb
|
29
|
+
test/test_hit_n_run.rb
|
30
|
+
test/test_input_spray.rb
|
31
|
+
test/test_mirror.rb
|
32
|
+
test/test_request.rb
|
33
|
+
test/test_upload.rb
|
data/.wrongdoc.yml
ADDED