http_spew 0.7.0 → 0.7.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.olddoc.yml +5 -5
- data/GIT-VERSION-FILE +1 -1
- data/GIT-VERSION-GEN +1 -1
- data/GNUmakefile +1 -1
- data/LATEST +4 -12
- data/NEWS +6 -0
- data/README +4 -4
- data/http_spew.gemspec +3 -3
- data/lib/http_spew/class_methods.rb +3 -3
- data/lib/http_spew/request.rb +3 -3
- data/lib/http_spew/version.rb +1 -1
- data/pkg.mk +1 -1
- metadata +5 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: d3f2c553d5927afcdfd2ea3682fc0ed6f3369f63e135d8d7e16a9a047e4d3429
|
4
|
+
data.tar.gz: 2527a787478d7821a93f9b4f9d71bd816213f812af06ce59ff1335f6b8aa65e2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aedb97f92a249ab4ee9802a36838e5b9d2aa7e2503fedab6079dd06e24d7869d8d0389de3ad5973cb935e28ae008e6e1b8a68366774caf8ce7a8df69087a69e2
|
7
|
+
data.tar.gz: 2886c12ff0b8886d7dc60e18457f334f1b375e419b077981635404c6e1a6b12f9a05a1cf4c1cf210b09e269134d1870ea0e065ea4c4cd0d3080e54c0fb4dae71
|
data/.olddoc.yml
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
---
|
2
|
-
cgit_url: https://
|
3
|
-
git_url:
|
4
|
-
rdoc_url: https://
|
5
|
-
ml_url: https://
|
6
|
-
public_email: http_spew-public@
|
2
|
+
cgit_url: https://yhbt.net/http_spew.git
|
3
|
+
git_url: https://yhbt.net/http_spew.git
|
4
|
+
rdoc_url: https://yhbt.net/http_spew/
|
5
|
+
ml_url: https://yhbt.net/http_spew-public/
|
6
|
+
public_email: http_spew-public@yhbt.net
|
data/GIT-VERSION-FILE
CHANGED
@@ -1 +1 @@
|
|
1
|
-
GIT_VERSION = 0.7.
|
1
|
+
GIT_VERSION = 0.7.1
|
data/GIT-VERSION-GEN
CHANGED
data/GNUmakefile
CHANGED
data/LATEST
CHANGED
@@ -1,14 +1,6 @@
|
|
1
|
-
=== http_spew 0.7.
|
1
|
+
=== http_spew 0.7.1 / 2022-01-16 08:45 UTC
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
5 changes since 0.6.0:
|
8
|
-
|
9
|
-
remove most uses of kgio
|
10
|
-
make kgio entirely optional
|
11
|
-
update to only use public email address
|
12
|
-
http_spew: remove kgio require at top level
|
13
|
-
gemspec: remove olddoc as a build dependency
|
3
|
+
2 changes since v0.7.0:
|
4
|
+
doc: s/bogomips.org/yhbt.net/
|
5
|
+
fix mismatched indentation warnings
|
14
6
|
|
data/NEWS
CHANGED
@@ -1,3 +1,9 @@
|
|
1
|
+
=== http_spew 0.7.1 / 2022-01-16 08:45 UTC
|
2
|
+
|
3
|
+
2 changes since v0.7.0:
|
4
|
+
doc: s/bogomips.org/yhbt.net/
|
5
|
+
fix mismatched indentation warnings
|
6
|
+
|
1
7
|
=== http_spew 0.7.0 - modernizing for newer Rubies / 2017-06-12 22:00 UTC
|
2
8
|
|
3
9
|
Ruby 2.3+ is now required as kgio dependencies are gone.
|
data/README
CHANGED
@@ -32,13 +32,13 @@ It's also completely untested and unused anywhere!
|
|
32
32
|
|
33
33
|
You can get the latest source via git from the following locations:
|
34
34
|
|
35
|
-
git://
|
35
|
+
git://yhbt.net/http_spew.git
|
36
36
|
git://repo.or.cz/http_spew.git (mirror)
|
37
37
|
|
38
38
|
You may browse the code from the web and download the latest snapshot
|
39
39
|
tarballs here:
|
40
40
|
|
41
|
-
* https://
|
41
|
+
* https://yhbt.net/http_spew.git
|
42
42
|
* http://repo.or.cz/w/http_spew.git (gitweb)
|
43
43
|
|
44
44
|
Inline patches (from "git format-patch") to the mailing list are
|
@@ -53,8 +53,8 @@ don't email the git mailing list or maintainer with http_spew patches.
|
|
53
53
|
== Contact
|
54
54
|
|
55
55
|
All feedback (bug reports, user/development discussion, patches, pull
|
56
|
-
requests) go to the mailing list: mailto:http_spew-public@
|
56
|
+
requests) go to the mailing list: mailto:http_spew-public@yhbt.net
|
57
57
|
|
58
58
|
Mailing list archives may be viewed and downloaded here:
|
59
59
|
|
60
|
-
https://
|
60
|
+
https://yhbt.net/http_spew-public/
|
data/http_spew.gemspec
CHANGED
@@ -3,15 +3,15 @@ manifest = File.exist?('.manifest') ?
|
|
3
3
|
|
4
4
|
Gem::Specification.new do |s|
|
5
5
|
s.name = %q{http_spew}
|
6
|
-
s.version = (ENV['VERSION'] || '0.7.
|
6
|
+
s.version = (ENV['VERSION'] || '0.7.1').dup
|
7
7
|
s.authors = ["http_spew hackers"]
|
8
8
|
s.description = File.read('README').split("\n\n")[1]
|
9
|
-
s.email = %q{http_spew-public@
|
9
|
+
s.email = %q{http_spew-public@yhbt.net}
|
10
10
|
s.extra_rdoc_files = IO.readlines('.document').map!(&:chomp!).keep_if do |f|
|
11
11
|
File.exist?(f)
|
12
12
|
end
|
13
13
|
s.files = manifest
|
14
|
-
s.homepage = 'https://
|
14
|
+
s.homepage = 'https://yhbt.net/http_spew/'
|
15
15
|
s.summary = 'HTTP Spew - LAN-only HTTP spam^H^H^H^Hclient for Ruby'
|
16
16
|
s.test_files = Dir["test/test_*.rb"]
|
17
17
|
s.add_dependency(%q<kcar>, [ "~> 0.3", ">= 0.3.1"])
|
@@ -81,9 +81,9 @@ module HTTP_Spew::ClassMethods
|
|
81
81
|
pending = requests - ready
|
82
82
|
error = HTTP_Spew::TimeoutError.new("request timed out")
|
83
83
|
ready.concat(error_all(pending, error))
|
84
|
-
|
85
|
-
|
86
|
-
|
84
|
+
ensure
|
85
|
+
w.close
|
86
|
+
r.close
|
87
87
|
end
|
88
88
|
|
89
89
|
def wait(need, requests, timeout)
|
data/lib/http_spew/request.rb
CHANGED
@@ -72,9 +72,9 @@ class HTTP_Spew::Request
|
|
72
72
|
timeout -= (Process.clock_gettime(Process::CLOCK_MONOTONIC) - t0)
|
73
73
|
end
|
74
74
|
rv
|
75
|
-
|
76
|
-
|
77
|
-
|
75
|
+
rescue => e
|
76
|
+
@input.respond_to?(:close) and @input.close rescue nil
|
77
|
+
self.error = e
|
78
78
|
end
|
79
79
|
|
80
80
|
# returns a 3-element Rack response array on completion
|
data/lib/http_spew/version.rb
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
# -*- encoding: binary -*-
|
2
|
-
HTTP_Spew.const_set :VERSION, "0.7.
|
2
|
+
HTTP_Spew.const_set :VERSION, "0.7.1".freeze
|
data/pkg.mk
CHANGED
@@ -60,7 +60,7 @@ doc:: .document .olddoc.yml $(pkg_extra) $(PLACEHOLDERS)
|
|
60
60
|
-find lib -type f -name '*.rbc' -exec rm -f '{}' ';'
|
61
61
|
-find ext -type f -name '*.rbc' -exec rm -f '{}' ';'
|
62
62
|
$(RM) -r doc
|
63
|
-
$(RDOC) -f
|
63
|
+
$(RDOC) -f dark216
|
64
64
|
$(OLDDOC) merge
|
65
65
|
if test -f COPYING; then install -m644 COPYING doc/COPYING; fi
|
66
66
|
install -m644 NEWS doc/NEWS
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: http_spew
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- http_spew hackers
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-01-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: kcar
|
@@ -34,7 +34,7 @@ description: |-
|
|
34
34
|
Do not use HTTP Spew for connecting to servers outside of your LAN.
|
35
35
|
Do not use HTTP Spew without the permission of your server admins.
|
36
36
|
Use HTTP Spew if you wish you could kinda multicast with HTTP...
|
37
|
-
email: http_spew-public@
|
37
|
+
email: http_spew-public@yhbt.net
|
38
38
|
executables: []
|
39
39
|
extensions: []
|
40
40
|
extra_rdoc_files:
|
@@ -82,7 +82,7 @@ files:
|
|
82
82
|
- test/test_request.rb
|
83
83
|
- test/test_unexpected_response.rb
|
84
84
|
- test/test_upload.rb
|
85
|
-
homepage: https://
|
85
|
+
homepage: https://yhbt.net/http_spew/
|
86
86
|
licenses:
|
87
87
|
- GPL-2.0+
|
88
88
|
metadata: {}
|
@@ -101,8 +101,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
101
101
|
- !ruby/object:Gem::Version
|
102
102
|
version: '0'
|
103
103
|
requirements: []
|
104
|
-
|
105
|
-
rubygems_version: 2.6.12
|
104
|
+
rubygems_version: 3.0.2
|
106
105
|
signing_key:
|
107
106
|
specification_version: 4
|
108
107
|
summary: HTTP Spew - LAN-only HTTP spam^H^H^H^Hclient for Ruby
|