regurgitator 0.6.0 → 0.7.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.
- checksums.yaml +4 -4
- data/.document +0 -1
- data/.gitignore +1 -2
- data/.olddoc.yml +8 -0
- data/GIT-VERSION-GEN +1 -1
- data/GNUmakefile +9 -1
- data/README +12 -9
- data/lib/regurgitator.rb +3 -3
- data/lib/regurgitator/device.rb +1 -3
- data/lib/regurgitator/domain.rb +1 -1
- data/lib/regurgitator/endpoint.rb +1 -1
- data/lib/regurgitator/file_info.rb +1 -3
- data/lib/regurgitator/file_request.rb +1 -3
- data/lib/regurgitator/list_keys.rb +1 -1
- data/lib/regurgitator/local.rb +1 -1
- data/lib/regurgitator/local_file.rb +2 -1
- data/lib/regurgitator/server_settings.rb +1 -3
- data/pkg.mk +23 -48
- data/regurgitator.gemspec +6 -8
- metadata +13 -19
- data/.wrongdoc.yml +0 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 540755c4ee64844a72e4785fe8f2e9afd44af42c
|
4
|
+
data.tar.gz: 103abb8cade042a114d9f946ae8430cde845fda2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 999e149f5b40e8790c29deb70d38f3cec6f182bcc2a7ca662748c250221c74553de230cff20440af1693bf078a5371f25db18ec0d56eb66e8dcb8abdd7ac4380
|
7
|
+
data.tar.gz: b2ddaf77efd2e6c5ade2aab699af1a44efdf5c06f5527480ae51be5983b2727ab0b231384297289b1a7acce0f5fd846955369e7348ea66bf99a32961a50887a0
|
data/.document
CHANGED
data/.gitignore
CHANGED
data/.olddoc.yml
ADDED
@@ -0,0 +1,8 @@
|
|
1
|
+
---
|
2
|
+
cgit_url: https://bogomips.org/regurgitator.git
|
3
|
+
git_url: git://bogomips.org/regurgitator.git
|
4
|
+
rdoc_url: https://bogomips.org/regurgitator/
|
5
|
+
ml_url: https://bogomips.org/regurgitator-public/
|
6
|
+
public_email: regurgitator-public@bogomips.org
|
7
|
+
nntp_url:
|
8
|
+
- nntp://news.public-inbox.org/inbox.comp.lang.ruby.regurgitator
|
data/GIT-VERSION-GEN
CHANGED
data/GNUmakefile
CHANGED
@@ -1,8 +1,16 @@
|
|
1
1
|
all::
|
2
2
|
RSYNC_DEST := bogomips.org:/srv/bogomips/regurgitator
|
3
|
-
rfproject := rainbows
|
4
3
|
rfpackage := regurgitator
|
4
|
+
|
5
|
+
ex := $(addprefix examples/, domain_host.ru domain_path.ru one_domain.ru)
|
6
|
+
doc_ex := $(addprefix doc/, $(ex))
|
7
|
+
doc/examples/%.ru: examples/%.ru
|
8
|
+
mkdir -p $(@D)
|
9
|
+
install -m 644 $< $@
|
10
|
+
-touch -r $< $@ # GNU
|
5
11
|
include pkg.mk
|
12
|
+
doc::
|
13
|
+
$(MAKE) $(doc_ex)
|
6
14
|
all:: test-integration
|
7
15
|
test-integration:
|
8
16
|
$(MAKE) -C t
|
data/README
CHANGED
@@ -1,16 +1,16 @@
|
|
1
|
-
=
|
1
|
+
= regurgitator - read-only Rack endpoints for MogileFS
|
2
2
|
|
3
|
-
|
3
|
+
regurgitator is a GPL-licensed library and Rack middleware for
|
4
4
|
serving files stored in MogileFS. It can be embedded inside
|
5
5
|
any existing Rack application or be used as a standalone Rack app.
|
6
6
|
|
7
|
-
|
8
|
-
to avoid extra layers and latency.
|
7
|
+
regurgitator talks directly to the underlying RDBMS powering MogileFS
|
8
|
+
to avoid extra layers and latency. regurgitator only needs
|
9
9
|
read-only access to the RDBMS and can connect to slave databases.
|
10
10
|
|
11
11
|
== Rack Endpoints
|
12
12
|
|
13
|
-
|
13
|
+
regurgitator comes with your choice of three standard Rack endpoints for
|
14
14
|
serving files stored in MogileFS. Pick the one best suited for your
|
15
15
|
application:
|
16
16
|
|
@@ -19,7 +19,7 @@ application:
|
|
19
19
|
* {OneDomain}[link:Regurgitator/OneDomain.html]
|
20
20
|
|
21
21
|
It should also be easy to roll your own based on your needs by reusing
|
22
|
-
our library code.
|
22
|
+
our library code. See {examples}[link:examples/] for rackup config files.
|
23
23
|
|
24
24
|
== Hacking
|
25
25
|
|
@@ -31,7 +31,7 @@ You can get the latest source via git from the following locations:
|
|
31
31
|
You may browse the code from the web and download the latest snapshot
|
32
32
|
tarballs here:
|
33
33
|
|
34
|
-
*
|
34
|
+
* https://bogomips.org/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
|
@@ -41,9 +41,12 @@ the patch.
|
|
41
41
|
We will adhere to mostly the same conventions for patch submissions as
|
42
42
|
git itself. See the Documentation/SubmittingPatches document
|
43
43
|
distributed with git on on patch submission guidelines to follow. Just
|
44
|
-
don't email the git mailing list or maintainer with
|
44
|
+
don't email the git mailing list or maintainer with regurgitator patches.
|
45
45
|
|
46
46
|
== Contact
|
47
47
|
|
48
48
|
All feedback (bug reports, user/development discussion, patches, pull
|
49
|
-
requests) go to the mailing list:
|
49
|
+
requests) go to the public mailing list: regurgitator-public@bogomips.org
|
50
|
+
|
51
|
+
Archives are available at https://bogomips.org/regurgitator-public/
|
52
|
+
and nntp://news.public-inbox.org/inbox.comp.lang.ruby.regurgitator
|
data/lib/regurgitator.rb
CHANGED
@@ -28,12 +28,12 @@ module Regurgitator
|
|
28
28
|
autoload :OneDomain, 'regurgitator/one_domain'
|
29
29
|
|
30
30
|
# used to wrap up all Regurgitator-specific extensions
|
31
|
-
|
31
|
+
Error = Class.new(StandardError) # :nodoc:
|
32
32
|
|
33
33
|
# raised when there are no readable devices
|
34
|
-
|
34
|
+
NoDevices = Class.new(Error) # :nodoc:
|
35
35
|
|
36
36
|
# raised by FileRequest when the HTTP status code
|
37
37
|
# is outside of (200-299, 304)
|
38
|
-
|
38
|
+
BadResponse = Class.new(Error) # :nodoc:
|
39
39
|
end
|
data/lib/regurgitator/device.rb
CHANGED
@@ -1,9 +1,8 @@
|
|
1
1
|
# -*- encoding: binary -*-
|
2
2
|
# helpers for device lookups
|
3
|
-
module Regurgitator::Device
|
3
|
+
module Regurgitator::Device # :nodoc:
|
4
4
|
include Regurgitator::ServerSettings
|
5
5
|
|
6
|
-
# :stopdoc:
|
7
6
|
REFRESH_DEVICE = <<-EOS
|
8
7
|
SELECT d.devid, h.hostip, h.http_port, h.http_get_port
|
9
8
|
FROM device d
|
@@ -12,7 +11,6 @@ module Regurgitator::Device
|
|
12
11
|
EOS
|
13
12
|
|
14
13
|
DEVICES_ON = 'SELECT devid FROM file_on WHERE fid = ?'
|
15
|
-
# :startdoc:
|
16
14
|
|
17
15
|
def device_init
|
18
16
|
server_settings_init
|
data/lib/regurgitator/domain.rb
CHANGED
@@ -1,16 +1,14 @@
|
|
1
1
|
# -*- encoding: binary -*-
|
2
|
-
module Regurgitator::FileInfo
|
2
|
+
module Regurgitator::FileInfo # :nodoc:
|
3
3
|
include Regurgitator::Domain
|
4
4
|
include Regurgitator::Device
|
5
5
|
|
6
|
-
# :stopdoc:
|
7
6
|
FILE_INFO = 'SELECT fid,length FROM file WHERE dmid = ? AND dkey = ? LIMIT 1'
|
8
7
|
|
9
8
|
def file_info_init
|
10
9
|
domain_init
|
11
10
|
device_init
|
12
11
|
end
|
13
|
-
# :startdoc:
|
14
12
|
|
15
13
|
# returns a hash with file information and URIs for accessing the file:
|
16
14
|
# {
|
@@ -6,18 +6,16 @@
|
|
6
6
|
# to enable TIME-WAIT reuse/recycling in your TCP stack if your
|
7
7
|
# network supports it. This object is used as a Rack response
|
8
8
|
# body.
|
9
|
-
class Regurgitator::FileRequest < HTTP_Spew::Request
|
9
|
+
class Regurgitator::FileRequest < HTTP_Spew::Request # :nodoc:
|
10
10
|
|
11
11
|
# used for doing redirects or reproxying with nginx
|
12
12
|
attr_reader :uri
|
13
13
|
|
14
14
|
extend Regurgitator::Local
|
15
15
|
|
16
|
-
# :stopdoc:
|
17
16
|
USER_AGENT = name.dup
|
18
17
|
PASS_HEADERS = %w(Range If-Modified-Since Accept-Encoding)
|
19
18
|
PASS_HEADERS.map! { |x| "HTTP_#{x.tr!('a-z-', 'A-Z_')}".freeze }
|
20
|
-
# :startdoc:
|
21
19
|
|
22
20
|
# +uris+ may be an array, read-only URIs are at the end
|
23
21
|
def initialize(env, uris)
|
data/lib/regurgitator/local.rb
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
require "time"
|
3
3
|
|
4
4
|
# used to serve local files, bypassing HTTP to the backend device
|
5
|
-
class Regurgitator::LocalFile
|
5
|
+
class Regurgitator::LocalFile # :nodoc:
|
6
6
|
|
7
7
|
# may be called by some Rack web servers to use sendfile(2)
|
8
8
|
attr_reader :to_path
|
@@ -38,6 +38,7 @@ class Regurgitator::LocalFile
|
|
38
38
|
else
|
39
39
|
@response[0] = 416
|
40
40
|
headers["Content-Range"] = "bytes */#{size}"
|
41
|
+
headers["Content-Length"] = '0'
|
41
42
|
@response << []
|
42
43
|
return
|
43
44
|
end
|
@@ -1,10 +1,8 @@
|
|
1
1
|
# -*- encoding: binary -*-
|
2
2
|
# helpers for server_settings lookups
|
3
|
-
module Regurgitator::ServerSettings
|
3
|
+
module Regurgitator::ServerSettings # :nodoc:
|
4
4
|
|
5
|
-
# :stopdoc:
|
6
5
|
SETTINGS_LOOKUP = 'SELECT value FROM server_settings WHERE field = ? LIMIT 1'
|
7
|
-
# :startdoc:
|
8
6
|
|
9
7
|
def server_settings_init
|
10
8
|
@zone_cache_mtime = Time.at(0)
|
data/pkg.mk
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
RUBY = ruby
|
2
2
|
RAKE = rake
|
3
3
|
RSYNC = rsync
|
4
|
-
|
4
|
+
OLDDOC = olddoc
|
5
|
+
RDOC = rdoc
|
5
6
|
|
6
7
|
GIT-VERSION-FILE: .FORCE-GIT-VERSION-FILE
|
7
8
|
@./GIT-VERSION-GEN
|
@@ -12,14 +13,6 @@ RUBY_VERSION := $(shell $(RUBY) -e 'puts RUBY_VERSION')
|
|
12
13
|
RUBY_ENGINE := $(shell $(RUBY) -e 'puts((RUBY_ENGINE rescue "ruby"))')
|
13
14
|
lib := lib
|
14
15
|
|
15
|
-
ifeq ($(shell test -f script/isolate_for_tests && echo t),t)
|
16
|
-
isolate_libs := tmp/isolate/$(RUBY_ENGINE)-$(RUBY_VERSION)/isolate.mk
|
17
|
-
$(isolate_libs): script/isolate_for_tests
|
18
|
-
@$(RUBY) script/isolate_for_tests
|
19
|
-
-include $(isolate_libs)
|
20
|
-
lib := $(lib):$(ISOLATE_LIBS)
|
21
|
-
endif
|
22
|
-
|
23
16
|
ext := $(firstword $(wildcard ext/*))
|
24
17
|
ifneq ($(ext),)
|
25
18
|
ext_pfx := tmp/ext/$(RUBY_ENGINE)-$(RUBY_VERSION)
|
@@ -36,7 +29,7 @@ $(ext_pfx)/$(ext)/%: $(ext)/% $(ext_d)
|
|
36
29
|
install -m 644 $< $@
|
37
30
|
$(ext_pfx)/$(ext)/Makefile: $(ext)/extconf.rb $(ext_d) $(ext_h)
|
38
31
|
$(RM) -f $(@D)/*.o
|
39
|
-
cd $(@D) && $(RUBY) $(CURDIR)/$(ext)/extconf.rb
|
32
|
+
cd $(@D) && $(RUBY) $(CURDIR)/$(ext)/extconf.rb $(EXTCONF_ARGS)
|
40
33
|
ext_sfx := _ext.$(DLEXT)
|
41
34
|
ext_dl := $(ext_pfx)/$(ext)/$(notdir $(ext)_ext.$(DLEXT))
|
42
35
|
$(ext_dl): $(ext_src) $(ext_pfx_src) $(ext_pfx)/$(ext)/Makefile
|
@@ -48,10 +41,10 @@ else
|
|
48
41
|
build:
|
49
42
|
endif
|
50
43
|
|
51
|
-
pkg_extra += GIT-VERSION-FILE NEWS
|
52
|
-
|
53
|
-
$(
|
54
|
-
|
44
|
+
pkg_extra += GIT-VERSION-FILE NEWS LATEST
|
45
|
+
NEWS: GIT-VERSION-FILE .olddoc.yml
|
46
|
+
$(OLDDOC) prepare
|
47
|
+
LATEST: NEWS
|
55
48
|
|
56
49
|
manifest:
|
57
50
|
$(RM) .manifest
|
@@ -63,28 +56,20 @@ manifest:
|
|
63
56
|
cmp $@+ $@ || mv $@+ $@
|
64
57
|
$(RM) $@+
|
65
58
|
|
66
|
-
doc:: .document .
|
59
|
+
doc:: .document .olddoc.yml $(pkg_extra) $(PLACEHOLDERS)
|
67
60
|
-find lib -type f -name '*.rbc' -exec rm -f '{}' ';'
|
68
61
|
-find ext -type f -name '*.rbc' -exec rm -f '{}' ';'
|
69
62
|
$(RM) -r doc
|
70
|
-
$(
|
63
|
+
$(RDOC) -f oldweb
|
64
|
+
$(OLDDOC) merge
|
71
65
|
install -m644 COPYING doc/COPYING
|
66
|
+
install -m644 NEWS doc/NEWS
|
67
|
+
install -m644 NEWS.atom.xml doc/NEWS.atom.xml
|
72
68
|
install -m644 $(shell LC_ALL=C grep '^[A-Z]' .document) doc/
|
73
69
|
|
74
70
|
ifneq ($(VERSION),)
|
75
71
|
pkggem := pkg/$(rfpackage)-$(VERSION).gem
|
76
72
|
pkgtgz := pkg/$(rfpackage)-$(VERSION).tgz
|
77
|
-
release_notes := release_notes-$(VERSION)
|
78
|
-
release_changes := release_changes-$(VERSION)
|
79
|
-
|
80
|
-
release-notes: $(release_notes)
|
81
|
-
release-changes: $(release_changes)
|
82
|
-
$(release_changes):
|
83
|
-
$(WRONGDOC) release_changes > $@+
|
84
|
-
$(VISUAL) $@+ && test -s $@+ && mv $@+ $@
|
85
|
-
$(release_notes):
|
86
|
-
$(WRONGDOC) release_notes > $@+
|
87
|
-
$(VISUAL) $@+ && test -s $@+ && mv $@+ $@
|
88
73
|
|
89
74
|
# ensures we're actually on the tagged $(VERSION), only used for release
|
90
75
|
verify:
|
@@ -120,31 +105,18 @@ $(pkgtgz): manifest fix-perms
|
|
120
105
|
|
121
106
|
package: $(pkgtgz) $(pkggem)
|
122
107
|
|
123
|
-
|
124
|
-
# make tgz release on RubyForge
|
125
|
-
@echo rubyforge add_release -f \
|
126
|
-
-n $(release_notes) -a $(release_changes) \
|
127
|
-
$(rfproject) $(rfpackage) $(VERSION) $(pkgtgz)
|
128
|
-
@echo gem push $(pkggem)
|
129
|
-
@echo rubyforge add_file \
|
130
|
-
$(rfproject) $(rfpackage) $(VERSION) $(pkggem)
|
131
|
-
release:: verify package $(release_notes) $(release_changes)
|
132
|
-
# make tgz release on RubyForge
|
133
|
-
rubyforge add_release -f -n $(release_notes) -a $(release_changes) \
|
134
|
-
$(rfproject) $(rfpackage) $(VERSION) $(pkgtgz)
|
108
|
+
release:: verify package
|
135
109
|
# push gem to RubyGems.org
|
136
110
|
gem push $(pkggem)
|
137
|
-
# in case of gem downloads from RubyForge releases page
|
138
|
-
rubyforge add_file \
|
139
|
-
$(rfproject) $(rfpackage) $(VERSION) $(pkggem)
|
140
111
|
else
|
141
112
|
gem install-gem: GIT-VERSION-FILE
|
142
113
|
$(MAKE) $@ VERSION=$(GIT_VERSION)
|
143
114
|
endif
|
144
115
|
|
145
|
-
all::
|
116
|
+
all:: check
|
146
117
|
test_units := $(wildcard test/test_*.rb)
|
147
|
-
test:
|
118
|
+
test: check
|
119
|
+
check: test-unit
|
148
120
|
test-unit: $(test_units)
|
149
121
|
$(test_units): build
|
150
122
|
$(RUBY) -I $(lib) $@ $(RUBY_TEST_OPTS)
|
@@ -154,8 +126,6 @@ ifneq ($(RSYNC_DEST),)
|
|
154
126
|
publish_doc:
|
155
127
|
-git set-file-times
|
156
128
|
$(MAKE) doc
|
157
|
-
find doc/images -type f | \
|
158
|
-
TZ=UTC xargs touch -d '1970-01-01 00:00:06' doc/rdoc.css
|
159
129
|
$(MAKE) doc_gz
|
160
130
|
$(RSYNC) -av doc/ $(RSYNC_DEST)/
|
161
131
|
git ls-files | xargs touch
|
@@ -163,7 +133,7 @@ endif
|
|
163
133
|
|
164
134
|
# Create gzip variants of the same timestamp as the original so nginx
|
165
135
|
# "gzip_static on" can serve the gzipped versions directly.
|
166
|
-
doc_gz: docs = $(shell find doc -type f ! -regex '
|
136
|
+
doc_gz: docs = $(shell find doc -type f ! -regex '^.*\.gz$$')
|
167
137
|
doc_gz:
|
168
138
|
for i in $(docs); do \
|
169
139
|
gzip --rsyncable -9 < $$i > $$i.gz; touch -r $$i $$i.gz; done
|
@@ -171,5 +141,10 @@ check-warnings:
|
|
171
141
|
@(for i in $$(git ls-files '*.rb'| grep -v '^setup\.rb$$'); \
|
172
142
|
do $(RUBY) -d -W2 -c $$i; done) | grep -v '^Syntax OK$$' || :
|
173
143
|
|
174
|
-
|
144
|
+
ifneq ($(PLACEHOLDERS),)
|
145
|
+
$(PLACEHOLDERS):
|
146
|
+
echo olddoc_placeholder > $@
|
147
|
+
endif
|
148
|
+
|
149
|
+
.PHONY: all .FORCE-GIT-VERSION-FILE doc check test $(test_units) manifest
|
175
150
|
.PHONY: check-warnings
|
data/regurgitator.gemspec
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
# -*- encoding: binary -*-
|
2
2
|
ENV["VERSION"] or abort "VERSION= must be specified"
|
3
3
|
manifest = File.readlines('.manifest').map! { |x| x.chomp! }
|
4
|
-
require '
|
5
|
-
extend
|
4
|
+
require 'olddoc'
|
5
|
+
extend Olddoc::Gemspec
|
6
6
|
name, summary, title = readme_metadata
|
7
7
|
|
8
8
|
Gem::Specification.new do |s|
|
@@ -11,19 +11,17 @@ Gem::Specification.new do |s|
|
|
11
11
|
|
12
12
|
s.authors = ["Regurgitators"]
|
13
13
|
s.description = readme_description
|
14
|
-
s.email = %q{
|
14
|
+
s.email = %q{e@80x24.org}
|
15
15
|
s.extra_rdoc_files = extra_rdoc_files(manifest)
|
16
16
|
s.files = manifest
|
17
|
-
s.homepage =
|
17
|
+
s.homepage = Olddoc.config['rdoc_url']
|
18
18
|
s.summary = summary
|
19
|
-
s.rdoc_options = rdoc_options
|
20
|
-
s.rubyforge_project = %q{rainbows}
|
21
19
|
s.test_files = Dir["test/test_*.rb"]
|
22
20
|
|
23
21
|
s.add_dependency("rack", ["~> 1.3"])
|
24
22
|
s.add_dependency("sequel", ["~> 4.0"])
|
25
23
|
s.add_dependency("http_spew", ["~> 0.4", ">= 0.4.1" ])
|
26
24
|
s.add_dependency("rpatricia", ["~> 1.0"])
|
27
|
-
s.add_development_dependency('
|
28
|
-
s.licenses = %w(
|
25
|
+
s.add_development_dependency('olddoc', "~> 1.0")
|
26
|
+
s.licenses = %w(GPL-2.0+)
|
29
27
|
end
|
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.
|
4
|
+
version: 0.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Regurgitators
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-06-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rack
|
@@ -73,28 +73,27 @@ dependencies:
|
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '1.0'
|
75
75
|
- !ruby/object:Gem::Dependency
|
76
|
-
name:
|
76
|
+
name: olddoc
|
77
77
|
requirement: !ruby/object:Gem::Requirement
|
78
78
|
requirements:
|
79
79
|
- - "~>"
|
80
80
|
- !ruby/object:Gem::Version
|
81
|
-
version: '1.
|
81
|
+
version: '1.0'
|
82
82
|
type: :development
|
83
83
|
prerelease: false
|
84
84
|
version_requirements: !ruby/object:Gem::Requirement
|
85
85
|
requirements:
|
86
86
|
- - "~>"
|
87
87
|
- !ruby/object:Gem::Version
|
88
|
-
version: '1.
|
88
|
+
version: '1.0'
|
89
89
|
description: |-
|
90
|
-
|
90
|
+
regurgitator is a GPL-licensed library and Rack middleware for
|
91
91
|
serving files stored in MogileFS. It can be embedded inside
|
92
92
|
any existing Rack application or be used as a standalone Rack app.
|
93
|
-
email:
|
93
|
+
email: e@80x24.org
|
94
94
|
executables: []
|
95
95
|
extensions: []
|
96
96
|
extra_rdoc_files:
|
97
|
-
- ChangeLog
|
98
97
|
- lib/regurgitator.rb
|
99
98
|
- lib/regurgitator/device.rb
|
100
99
|
- lib/regurgitator/domain.rb
|
@@ -115,9 +114,8 @@ files:
|
|
115
114
|
- ".document"
|
116
115
|
- ".gitignore"
|
117
116
|
- ".manifest"
|
118
|
-
- ".
|
117
|
+
- ".olddoc.yml"
|
119
118
|
- COPYING
|
120
|
-
- ChangeLog
|
121
119
|
- GIT-VERSION-FILE
|
122
120
|
- GIT-VERSION-GEN
|
123
121
|
- GNUmakefile
|
@@ -160,16 +158,12 @@ files:
|
|
160
158
|
- test/test_list_keys.rb
|
161
159
|
- test/test_local.rb
|
162
160
|
- test/test_server_settings.rb
|
163
|
-
homepage:
|
161
|
+
homepage: https://bogomips.org/regurgitator/
|
164
162
|
licenses:
|
165
|
-
-
|
163
|
+
- GPL-2.0+
|
166
164
|
metadata: {}
|
167
165
|
post_install_message:
|
168
|
-
rdoc_options:
|
169
|
-
- "-t"
|
170
|
-
- "\\Regurgitator - read-only Rack endpoints for MogileFS"
|
171
|
-
- "-W"
|
172
|
-
- http://bogomips.org/regurgitator.git/tree/%s
|
166
|
+
rdoc_options: []
|
173
167
|
require_paths:
|
174
168
|
- lib
|
175
169
|
required_ruby_version: !ruby/object:Gem::Requirement
|
@@ -183,8 +177,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
183
177
|
- !ruby/object:Gem::Version
|
184
178
|
version: '0'
|
185
179
|
requirements: []
|
186
|
-
rubyforge_project:
|
187
|
-
rubygems_version: 2.
|
180
|
+
rubyforge_project:
|
181
|
+
rubygems_version: 2.6.4
|
188
182
|
signing_key:
|
189
183
|
specification_version: 4
|
190
184
|
summary: read-only Rack endpoints for MogileFS
|
data/.wrongdoc.yml
DELETED