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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b87215e582012cb8e81e826fa3447c65c0b30a36940840d0e49114832c705fff
4
- data.tar.gz: e93d445482019f3e864599b8df34506463edaf2b2bb864dfee4d3d0b44cb559c
3
+ metadata.gz: 620a90f70005e6406e8a1d355a90e287ffb38893c1e1ab39ffca0e82707d4122
4
+ data.tar.gz: 52eb2a49cf8aa91cc03c0ee471282e097628487d99ee9f91203b3ed72518f22d
5
5
  SHA512:
6
- metadata.gz: '08678656aeb78fdd500dd26209ac86859517e2a828773b2ec0c9e2d9b3262b0e322c5a75618029cd49566d60a11f69861336c63101a9b42230bece81a3ffce50'
7
- data.tar.gz: dcb82c4237e64d83393bc22de543dd6ba599abae7dbb0a57202dce73ef112da0e59f8a2fac7b6f1016dfcb91430fc7ada1da6cac160c7917f33992c85be0d623
6
+ metadata.gz: 2121d992be6eccad69dcede5b04a7c83a78f156d129d118f49a713d433e0736ead3d8e0185ea5ca9f5650f843e9e7981a619a89cbe1a1f726a84fc1ea0755ab4
7
+ data.tar.gz: 6df61f68e23d994300b155880425f8316744545bba20d13eac1bd1268e97dd0be2a81e7119b935db9a647daafb177398835d081241d10edcb80832ec8ce54a32
data/CHANGELOG CHANGED
@@ -1,3 +1,6 @@
1
+ ## 0.4.7 - 2023-06-30
2
+
3
+ * Hotfix.
1
4
  ## 0.4.6 - 2023-06-30
2
5
 
3
6
  * Code refactoring.
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
- * Code: [http://github.com/webtranslateit/safe](http://github.com/webtranslateit/safe)
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
- ## Motivation
7
+ We’ve added:
8
8
 
9
- We needed a backup solution that will satisfy the following requirements:
10
-
11
- * opensource
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.
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- require 'webtranslateit/safe'
3
+ require 'web_translate_it/safe'
4
4
 
5
5
  include WebTranslateIt::Safe
6
6
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: webtranslateit-safe
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.6
4
+ version: 0.4.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Edouard Briere