webvac 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README +8 -0
- metadata +15 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4cafae19984cb3433db3ca7291773c16f7e50f35
|
4
|
+
data.tar.gz: eb1cacaa6be1b6441b746de2000f879eb560e198
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0e85151e8d6c01a8ccbc1418ac475929eaee6b2f534bd0b6f1583885e82b6ca69a71e1d724db2faf7b21ded8a4c976e44929e4dca246076dd21da4b58b97a5cb
|
7
|
+
data.tar.gz: d3c57b84ce8f413d1180e87a65a44bab84ac116fe1457cf5ed4696076971ad62b8efaedfab2603738fd7af96af9f4098f46982190bb53ec78173bc83e9873603
|
data/README
CHANGED
@@ -55,6 +55,10 @@ of the files were put into venti as part of the backup solution, but the
|
|
55
55
|
originals weren't removed if they were bigger than 1MB (see doc/TODO).
|
56
56
|
The workers take some RAM to run. CPU overhead is negligible.
|
57
57
|
|
58
|
+
= Installation
|
59
|
+
|
60
|
+
`gem install webvac` should do it.
|
61
|
+
|
58
62
|
= Configuration
|
59
63
|
|
60
64
|
The nginx config I used to test is in doc/examples.
|
@@ -105,6 +109,10 @@ server_path_prepend.
|
|
105
109
|
}
|
106
110
|
}
|
107
111
|
|
112
|
+
= Usage
|
113
|
+
|
114
|
+
Afer configuring, you can run the server with `webvac-server`. This will actually serve the content from venti, as long as it is present in the path→score index in Redis (so you can remove content as needed by just removing items from the index). In order to add items, you run `webvac-sweep`.
|
115
|
+
|
108
116
|
= TODO
|
109
117
|
|
110
118
|
See doc/TODO
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: webvac
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pete
|
@@ -52,6 +52,20 @@ dependencies:
|
|
52
52
|
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rainbows
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
55
69
|
description:
|
56
70
|
email: pete@debu.gs
|
57
71
|
executables:
|