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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: a2d383effa64f09d324b76580dd3f4c2750759b6
4
- data.tar.gz: ff6b44450160b68be22d4b86304e5589f77ffa3a
2
+ SHA256:
3
+ metadata.gz: 51bb4e97e85eb75b9a976cb033c038fc2109fb87100ce868daf2be507a72d6b7
4
+ data.tar.gz: 36c7c6519139416969cc27c114e7039c0d303ab1819b5abad3e96a31caa40885
5
5
  SHA512:
6
- metadata.gz: f1a18579be3d5a719e6fb212c1d246fcdf0c693a7e8a85df87fd8763b550e58f92454accd35bb6d261adcacf3bcee7a44a66ad0b879161edb147df84ea6d1fb2
7
- data.tar.gz: cd56b2b2b5ec792d89763fceb8b0e6eac7550431053e740cbe193687be3a6bde57c84ada185a46d37a8cc826bee0db6df839ece9da521a4c0fe65de81b25ceb1
6
+ metadata.gz: bf21c0f7a28dd9dfe2b7c78240e0a732fca4463bd4169ce9679873fefe0d1a4ab878593d66d541302e6efe7ee28664f89d5bfdde5b999ae1e5e35ba06f00a271
7
+ data.tar.gz: 125e30e3615ffb20134755faa6405685a8a23451ee8b2cfd10f1e1b0fffcc487b3c746b9d41e496d98eaaed56e46e848539806d69e291b977fc90915552521fb
@@ -1,8 +1,8 @@
1
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
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
@@ -1,7 +1,7 @@
1
1
  #!/bin/sh
2
2
 
3
3
  GVF=GIT-VERSION-FILE
4
- DEF_VER=v0.9.0
4
+ DEF_VER=v0.9.1
5
5
 
6
6
  LF='
7
7
  '
@@ -1,5 +1,5 @@
1
1
  all::
2
- RSYNC_DEST := bogomips.org:/srv/bogomips/regurgitator
2
+ RSYNC_DEST := yhbt.net:/srv/yhbt/regurgitator
3
3
  rfpackage := regurgitator
4
4
 
5
5
  ex := $(addprefix examples/, domain_host.ru domain_path.ru one_domain.ru)
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://bogomips.org/regurgitator.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://bogomips.org/regurgitator.git
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@bogomips.org
49
+ requests) go to the public mailing list: regurgitator-public@yhbt.net
50
50
 
51
- Archives are available at https://bogomips.org/regurgitator-public/
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 oldweb
63
+ $(RDOC) -f dark216
64
64
  $(OLDDOC) merge
65
65
  install -m644 COPYING doc/COPYING
66
66
  install -m644 NEWS doc/NEWS
@@ -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.0')
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@bogomips.org}
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://bogomips.org/regurgitator/'
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.0
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: 2017-06-13 00:00:00.000000000 Z
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@bogomips.org
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://bogomips.org/regurgitator/
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
- rubyforge_project:
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