webtranslateit-safe 0.4.6 → 0.4.7
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/CHANGELOG +3 -0
- data/README.markdown +6 -39
- data/bin/webtranslateit-safe +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 620a90f70005e6406e8a1d355a90e287ffb38893c1e1ab39ffca0e82707d4122
|
|
4
|
+
data.tar.gz: 52eb2a49cf8aa91cc03c0ee471282e097628487d99ee9f91203b3ed72518f22d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2121d992be6eccad69dcede5b04a7c83a78f156d129d118f49a713d433e0736ead3d8e0185ea5ca9f5650f843e9e7981a619a89cbe1a1f726a84fc1ea0755ab4
|
|
7
|
+
data.tar.gz: 6df61f68e23d994300b155880425f8316744545bba20d13eac1bd1268e97dd0be2a81e7119b935db9a647daafb177398835d081241d10edcb80832ec8ce54a32
|
data/CHANGELOG
CHANGED
data/README.markdown
CHANGED
|
@@ -1,39 +1,14 @@
|
|
|
1
1
|
# webtranslateit-safe
|
|
2
2
|
|
|
3
|
-
Simple database and filesystem backups with S3 and Rackspace Cloud Files support (with optional encryption)
|
|
3
|
+
Simple database and filesystem backups with S3 and Rackspace Cloud Files support (with optional encryption).
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
This is a fork of now abandonned [astrails-safe](https://github.com/astrails/safe) that we’ve been using since 2010. It is now unmaintained and not compatible with ruby 3.2, so we forked it.
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
We’ve added:
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
* simple to install and configure
|
|
13
|
-
* support for simple ‘tar’ backups of directories (with includes/excludes)
|
|
14
|
-
* support for simple mysqldump of mysql databases
|
|
15
|
-
* support for symmetric or public key encryption
|
|
16
|
-
* support for local filesystem, Amazon S3, and Rackspace Cloud Files for storage
|
|
17
|
-
* support for backup rotation. we don’t want backups filling all the diskspace or cost a fortune on S3 or Cloud Files
|
|
18
|
-
|
|
19
|
-
And since we didn't find any, we wrote our own :)
|
|
20
|
-
|
|
21
|
-
## Contributions
|
|
22
|
-
|
|
23
|
-
The following functionality was contributed by webtranslateit-safe users:
|
|
24
|
-
|
|
25
|
-
* PostgreSQL dump using `pg_dump` (by Mark Mansour <mark@stateofflux.com>)
|
|
26
|
-
* Subversion dump using svndump (by Richard Luther <richard.luther@gmail.com>)
|
|
27
|
-
* SFTP remote storage (by Adam <adam@mediadrive.ca>)
|
|
28
|
-
* benchmarking output (By Neer)
|
|
29
|
-
* README fixes (by Bobby Wilson)
|
|
30
|
-
* improved config file parsing (by Fedor Kocherga <fkocherga@gmail.com>)
|
|
31
|
-
* mysql password file quoting (by Jonathan Sutherland <jonathan.sutherland@gmail.com>)
|
|
32
|
-
* Rackspace Cloud Files support (by H. Wade Minter <minter@lunenburg.org>)
|
|
33
|
-
* Plan FTP support (by seroy <seroy@bk.ru>)
|
|
34
|
-
* mongodump support (by Matt Berther <matt@mattberther.com>)
|
|
35
|
-
|
|
36
|
-
Thanks to all :)
|
|
9
|
+
- Support for ruby 3.2
|
|
10
|
+
- Standardized code with rubocop
|
|
11
|
+
- Added support for SCP transfers — On some conditions with servers with higher latency, transfering large files (> 18GB) with SFTP can take a very long time.
|
|
37
12
|
|
|
38
13
|
## Installation
|
|
39
14
|
|
|
@@ -237,14 +212,6 @@ safe do
|
|
|
237
212
|
end
|
|
238
213
|
```
|
|
239
214
|
|
|
240
|
-
## Contributing
|
|
241
|
-
|
|
242
|
-
1. Fork it
|
|
243
|
-
2. Create your feature branch (`git checkout -b my-new-feature`)
|
|
244
|
-
3. Commit your changes (`git commit -am 'Add some feature'`)
|
|
245
|
-
4. Push to the branch (`git push origin my-new-feature`)
|
|
246
|
-
5. Create new Pull Request
|
|
247
|
-
|
|
248
215
|
## Copyright
|
|
249
216
|
|
|
250
217
|
Copyright (c) 2010-2023 WebTranslateIt Software SL. See LICENSE.txt for details.
|
data/bin/webtranslateit-safe
CHANGED