regurgitator 0.9.0 → 0.9.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-GEN +1 -1
- data/GNUmakefile +1 -1
- data/README +4 -4
- data/pkg.mk +1 -1
- data/regurgitator.gemspec +3 -3
- 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: 51bb4e97e85eb75b9a976cb033c038fc2109fb87100ce868daf2be507a72d6b7
|
4
|
+
data.tar.gz: 36c7c6519139416969cc27c114e7039c0d303ab1819b5abad3e96a31caa40885
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bf21c0f7a28dd9dfe2b7c78240e0a732fca4463bd4169ce9679873fefe0d1a4ab878593d66d541302e6efe7ee28664f89d5bfdde5b999ae1e5e35ba06f00a271
|
7
|
+
data.tar.gz: 125e30e3615ffb20134755faa6405685a8a23451ee8b2cfd10f1e1b0fffcc487b3c746b9d41e496d98eaaed56e46e848539806d69e291b977fc90915552521fb
|
data/.olddoc.yml
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
---
|
2
|
-
cgit_url: https://
|
3
|
-
git_url:
|
4
|
-
rdoc_url: https://
|
5
|
-
ml_url: https://
|
6
|
-
public_email: regurgitator-public@
|
2
|
+
cgit_url: https://yhbt.net/regurgitator.git
|
3
|
+
git_url: https://yhbt.net/regurgitator.git
|
4
|
+
rdoc_url: https://yhbt.net/regurgitator/
|
5
|
+
ml_url: https://yhbt.net/regurgitator-public/
|
6
|
+
public_email: regurgitator-public@yhbt.net
|
7
7
|
nntp_url:
|
8
8
|
- nntp://news.public-inbox.org/inbox.comp.lang.ruby.regurgitator
|
data/GIT-VERSION-GEN
CHANGED
data/GNUmakefile
CHANGED
data/README
CHANGED
@@ -25,13 +25,13 @@ our library code. See {examples}[link:examples/] for rackup config files.
|
|
25
25
|
|
26
26
|
You can get the latest source via git from the following locations:
|
27
27
|
|
28
|
-
git://
|
28
|
+
git://yhbt.net/regurgitator.git
|
29
29
|
git://repo.or.cz/regurgitator.git (mirror)
|
30
30
|
|
31
31
|
You may browse the code from the web and download the latest snapshot
|
32
32
|
tarballs here:
|
33
33
|
|
34
|
-
* https://
|
34
|
+
* https://yhbt.net/regurgitator.git
|
35
35
|
* http://repo.or.cz/w/regurgitator.git (gitweb)
|
36
36
|
|
37
37
|
Inline patches (from "git format-patch") to the mailing list are
|
@@ -46,7 +46,7 @@ don't email the git mailing list or maintainer with regurgitator patches.
|
|
46
46
|
== Contact
|
47
47
|
|
48
48
|
All feedback (bug reports, user/development discussion, patches, pull
|
49
|
-
requests) go to the public mailing list: regurgitator-public@
|
49
|
+
requests) go to the public mailing list: regurgitator-public@yhbt.net
|
50
50
|
|
51
|
-
Archives are available at https://
|
51
|
+
Archives are available at https://yhbt.net/regurgitator-public/
|
52
52
|
and nntp://news.public-inbox.org/inbox.comp.lang.ruby.regurgitator
|
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
|
install -m644 COPYING doc/COPYING
|
66
66
|
install -m644 NEWS doc/NEWS
|
data/regurgitator.gemspec
CHANGED
@@ -4,15 +4,15 @@ manifest = File.exist?('.manifest') ?
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |s|
|
6
6
|
s.name = %q{regurgitator}
|
7
|
-
s.version = (ENV['VERSION'].dup || '0.9.
|
7
|
+
s.version = (ENV['VERSION'].dup || '0.9.1')
|
8
8
|
s.authors = ['regurgitator hackers']
|
9
9
|
s.description = File.read('README').split("\n\n")[1]
|
10
|
-
s.email = %q{regurgitator-public@
|
10
|
+
s.email = %q{regurgitator-public@yhbt.net}
|
11
11
|
s.extra_rdoc_files = IO.readlines('.document').map!(&:chomp!).keep_if do |f|
|
12
12
|
File.exist?(f)
|
13
13
|
end
|
14
14
|
s.files = manifest
|
15
|
-
s.homepage = 'https://
|
15
|
+
s.homepage = 'https://yhbt.net/regurgitator/'
|
16
16
|
s.summary = 'regurgitator - read-only Rack endpoints for MogileFS'
|
17
17
|
s.test_files = Dir["test/test_*.rb"]
|
18
18
|
s.add_dependency("rack", ['~> 2.0'])
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: regurgitator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- regurgitator hackers
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-02-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rack
|
@@ -70,7 +70,7 @@ description: |-
|
|
70
70
|
regurgitator is a GPL-licensed library and Rack middleware for
|
71
71
|
serving files stored in MogileFS. It can be embedded inside
|
72
72
|
any existing Rack application or be used as a standalone Rack app.
|
73
|
-
email: regurgitator-public@
|
73
|
+
email: regurgitator-public@yhbt.net
|
74
74
|
executables: []
|
75
75
|
extensions: []
|
76
76
|
extra_rdoc_files:
|
@@ -125,7 +125,7 @@ files:
|
|
125
125
|
- test/test_list_keys.rb
|
126
126
|
- test/test_local.rb
|
127
127
|
- test/test_server_settings.rb
|
128
|
-
homepage: https://
|
128
|
+
homepage: https://yhbt.net/regurgitator/
|
129
129
|
licenses:
|
130
130
|
- GPL-2.0+
|
131
131
|
metadata: {}
|
@@ -144,8 +144,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
144
144
|
- !ruby/object:Gem::Version
|
145
145
|
version: '0'
|
146
146
|
requirements: []
|
147
|
-
|
148
|
-
rubygems_version: 2.6.12
|
147
|
+
rubygems_version: 3.0.2
|
149
148
|
signing_key:
|
150
149
|
specification_version: 4
|
151
150
|
summary: regurgitator - read-only Rack endpoints for MogileFS
|