webtranslateit-safe 0.4.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 +7 -0
- data/.autotest +3 -0
- data/.document +5 -0
- data/.github/dependabot.yml +26 -0
- data/.github/release-drafter.yml +36 -0
- data/.github/workflows/ci.yml +51 -0
- data/.github/workflows/release-drafter.yml +29 -0
- data/.gitignore +18 -0
- data/.rspec +3 -0
- data/.rubocop.yml +8 -0
- data/.rubocop_todo.yml +552 -0
- data/CHANGELOG +42 -0
- data/Gemfile +11 -0
- data/Gemfile.lock +89 -0
- data/LICENSE.txt +22 -0
- data/README.markdown +237 -0
- data/Rakefile +8 -0
- data/TODO +31 -0
- data/bin/webtranslateit-safe +64 -0
- data/lib/extensions/mktmpdir.rb +45 -0
- data/lib/webtranslateit/safe/archive.rb +29 -0
- data/lib/webtranslateit/safe/backup.rb +27 -0
- data/lib/webtranslateit/safe/cloudfiles.rb +77 -0
- data/lib/webtranslateit/safe/config/builder.rb +100 -0
- data/lib/webtranslateit/safe/config/node.rb +79 -0
- data/lib/webtranslateit/safe/ftp.rb +85 -0
- data/lib/webtranslateit/safe/gpg.rb +52 -0
- data/lib/webtranslateit/safe/gzip.rb +29 -0
- data/lib/webtranslateit/safe/local.rb +55 -0
- data/lib/webtranslateit/safe/mongodump.rb +30 -0
- data/lib/webtranslateit/safe/mysqldump.rb +36 -0
- data/lib/webtranslateit/safe/pgdump.rb +36 -0
- data/lib/webtranslateit/safe/pipe.rb +23 -0
- data/lib/webtranslateit/safe/s3.rb +80 -0
- data/lib/webtranslateit/safe/sftp.rb +96 -0
- data/lib/webtranslateit/safe/sink.rb +40 -0
- data/lib/webtranslateit/safe/source.rb +51 -0
- data/lib/webtranslateit/safe/stream.rb +40 -0
- data/lib/webtranslateit/safe/svndump.rb +17 -0
- data/lib/webtranslateit/safe/tmp_file.rb +53 -0
- data/lib/webtranslateit/safe/version.rb +9 -0
- data/lib/webtranslateit/safe.rb +70 -0
- data/spec/integration/archive_integration_spec.rb +89 -0
- data/spec/integration/cleanup_spec.rb +62 -0
- data/spec/spec_helper.rb +7 -0
- data/spec/webtranslateit/safe/archive_spec.rb +67 -0
- data/spec/webtranslateit/safe/cloudfiles_spec.rb +175 -0
- data/spec/webtranslateit/safe/config_spec.rb +307 -0
- data/spec/webtranslateit/safe/gpg_spec.rb +148 -0
- data/spec/webtranslateit/safe/gzip_spec.rb +64 -0
- data/spec/webtranslateit/safe/local_spec.rb +109 -0
- data/spec/webtranslateit/safe/mongodump_spec.rb +54 -0
- data/spec/webtranslateit/safe/mysqldump_spec.rb +83 -0
- data/spec/webtranslateit/safe/pgdump_spec.rb +45 -0
- data/spec/webtranslateit/safe/s3_spec.rb +168 -0
- data/spec/webtranslateit/safe/svndump_spec.rb +39 -0
- data/templates/script.rb +183 -0
- data/webtranslateit-safe.gemspec +32 -0
- metadata +149 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 56eb4033020a956c2952a9ae1ce5cdd62cd17a9927f8f571bee895e6541ab16c
|
4
|
+
data.tar.gz: 9a1fc0cf5fd486e45a73a8b744f41b31346319346454dd99029ff68a2f0f3da4
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: e3d3dc746e4bfd0e7e3f023781623a7601dff9b08adc413995afbc42ed0b7478c23dc0a261e7cb25e3b706c7fc7582944526c3deb2799f36f37a1d7b9a103662
|
7
|
+
data.tar.gz: 264dc20327e89a0e4bd030c1f77e7a00a1a904455ef8ea2be58e1afca71d62fd8a3980bdff9b906801398f3be2df835d9400e9c99f74bf62094c3c6cf3098226
|
data/.autotest
ADDED
data/.document
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
# Please see the documentation for all configuration options:
|
2
|
+
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
|
3
|
+
|
4
|
+
version: 2
|
5
|
+
updates:
|
6
|
+
- package-ecosystem: "bundler"
|
7
|
+
directory: "/"
|
8
|
+
schedule:
|
9
|
+
interval: "weekly"
|
10
|
+
day: "monday"
|
11
|
+
time: "04:00"
|
12
|
+
reviewers:
|
13
|
+
- edouard
|
14
|
+
assignees:
|
15
|
+
- edouard
|
16
|
+
|
17
|
+
- package-ecosystem: github-actions
|
18
|
+
directory: "/"
|
19
|
+
schedule:
|
20
|
+
interval: weekly
|
21
|
+
day: monday
|
22
|
+
time: "04:00"
|
23
|
+
reviewers:
|
24
|
+
- edouard
|
25
|
+
assignees:
|
26
|
+
- edouard
|
@@ -0,0 +1,36 @@
|
|
1
|
+
name-template: '$RESOLVED_VERSION 🌈'
|
2
|
+
tag-template: '$RESOLVED_VERSION'
|
3
|
+
categories:
|
4
|
+
- title: '🚀 Features'
|
5
|
+
labels:
|
6
|
+
- 'feature'
|
7
|
+
- 'enhancement'
|
8
|
+
- title: '🐛 Bug Fixes'
|
9
|
+
labels:
|
10
|
+
- 'bug'
|
11
|
+
- 'design'
|
12
|
+
- 'performance'
|
13
|
+
- title: '🧰 Maintenance'
|
14
|
+
labels:
|
15
|
+
- 'admin'
|
16
|
+
- 'refactoring'
|
17
|
+
- 'dependencies'
|
18
|
+
- 'github_actions'
|
19
|
+
- 'tests'
|
20
|
+
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
|
21
|
+
change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks.
|
22
|
+
version-resolver:
|
23
|
+
major:
|
24
|
+
labels:
|
25
|
+
- 'major'
|
26
|
+
minor:
|
27
|
+
labels:
|
28
|
+
- 'minor'
|
29
|
+
patch:
|
30
|
+
labels:
|
31
|
+
- 'patch'
|
32
|
+
default: patch
|
33
|
+
template: |
|
34
|
+
## Changes
|
35
|
+
|
36
|
+
$CHANGES
|
@@ -0,0 +1,51 @@
|
|
1
|
+
# This workflow uses actions that are not certified by GitHub.
|
2
|
+
# They are provided by a third-party and are governed by
|
3
|
+
# separate terms of service, privacy policy, and support
|
4
|
+
# documentation.
|
5
|
+
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
|
6
|
+
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
|
7
|
+
|
8
|
+
name: Ruby
|
9
|
+
|
10
|
+
on: push
|
11
|
+
|
12
|
+
jobs:
|
13
|
+
test:
|
14
|
+
env:
|
15
|
+
COVERAGE: Y
|
16
|
+
CC_TEST_REPORTER_ID: 9eb2d68da2519eb132eb0c3e063c4b899247c7ebe390a68c286545fc9f346286
|
17
|
+
|
18
|
+
runs-on: ubuntu-latest
|
19
|
+
strategy:
|
20
|
+
matrix:
|
21
|
+
ruby-version: ['3.2']
|
22
|
+
|
23
|
+
steps:
|
24
|
+
- uses: actions/checkout@v3
|
25
|
+
- name: Set up Ruby
|
26
|
+
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
|
27
|
+
# change this to (see https://github.com/ruby/setup-ruby#versioning):
|
28
|
+
uses: ruby/setup-ruby@v1
|
29
|
+
with:
|
30
|
+
ruby-version: ${{ matrix.ruby-version }}
|
31
|
+
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
32
|
+
- name: Run tests
|
33
|
+
run: bundle exec rspec
|
34
|
+
|
35
|
+
linters:
|
36
|
+
name: Linters
|
37
|
+
runs-on: ubuntu-22.04
|
38
|
+
timeout-minutes: 10
|
39
|
+
|
40
|
+
steps:
|
41
|
+
- name: Checkout repository
|
42
|
+
uses: actions/checkout@v3
|
43
|
+
|
44
|
+
- name: Install ruby and gems
|
45
|
+
uses: ruby/setup-ruby@v1
|
46
|
+
with:
|
47
|
+
ruby-version: 3.2.0 # Use .ruby-version file instead of duplicating here and in Gemfile?
|
48
|
+
bundler-cache: true
|
49
|
+
|
50
|
+
- name: Run ruby linter
|
51
|
+
run: bundle exec rubocop --format github
|
@@ -0,0 +1,29 @@
|
|
1
|
+
name: Release Drafter
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
# branches to consider in the event; optional, defaults to all
|
6
|
+
branches:
|
7
|
+
- master
|
8
|
+
# pull_request event is required only for autolabeler
|
9
|
+
pull_request:
|
10
|
+
# Only following types are handled by the action, but one can default to all as well
|
11
|
+
types: [opened, reopened, synchronize]
|
12
|
+
|
13
|
+
jobs:
|
14
|
+
update_release_draft:
|
15
|
+
runs-on: ubuntu-latest
|
16
|
+
steps:
|
17
|
+
# (Optional) GitHub Enterprise requires GHE_HOST variable set
|
18
|
+
#- name: Set GHE_HOST
|
19
|
+
# run: |
|
20
|
+
# echo "GHE_HOST=${GITHUB_SERVER_URL##https:\/\/}" >> $GITHUB_ENV
|
21
|
+
|
22
|
+
# Drafts your next Release notes as Pull Requests are merged into "master"
|
23
|
+
- uses: release-drafter/release-drafter@v5
|
24
|
+
# (Optional) specify config name to use, relative to .github/. Default: release-drafter.yml
|
25
|
+
# with:
|
26
|
+
# config-name: my-config.yml
|
27
|
+
# disable-autolabeler: true
|
28
|
+
env:
|
29
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
data/.gitignore
ADDED
data/.rspec
ADDED