rsync_cron 1.0.5 → 1.0.6
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/.gitignore +1 -0
- data/Gemfile.lock +1 -1
- data/README.md +1 -1
- data/lib/rsync_cron/scheduler.rb +1 -1
- data/lib/rsync_cron/version.rb +1 -1
- data/rsync_cron.gemspec +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0ae348a73cf44b1af8b0f4eab8a0771d96f06025
|
|
4
|
+
data.tar.gz: 69083ccb351f50dc6ad73b1925623b1d0b841684
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 50463c9b982ecfa1a02a9a0c44510ce3b5f2d58cc55bdaca8e2c8e578dc9b26d20ba246bd5ed0b7e718ceaa821cf4b667817b1478938df585fb4cfa3d943b9c3
|
|
7
|
+
data.tar.gz: e89b28191fd2c900a73a59bd4dc5f409b6e5b3bae74d26c544c14958d83aa2a62023ba197946a715ea0d2ab85e3a51585bd89b15dd98da0fe902faa1b04d1698
|
data/.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
*.gem
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* [Usage](#usage)
|
|
6
6
|
|
|
7
7
|
# Scope
|
|
8
|
-
The scope of this gem is to
|
|
8
|
+
The scope of this gem is to install the specified `rsync` command into the `crontab` schedule.
|
|
9
9
|
|
|
10
10
|
# Installation
|
|
11
11
|
Install the gem from your shell:
|
data/lib/rsync_cron/scheduler.rb
CHANGED
data/lib/rsync_cron/version.rb
CHANGED
data/rsync_cron.gemspec
CHANGED
|
@@ -8,7 +8,7 @@ Gem::Specification.new do |s|
|
|
|
8
8
|
s.version = RsyncCron::VERSION
|
|
9
9
|
s.authors = ["costajob"]
|
|
10
10
|
s.email = ["costajob@gmail.com"]
|
|
11
|
-
s.summary = "
|
|
11
|
+
s.summary = "Install specified rsync command into crontab schedule"
|
|
12
12
|
s.homepage = "https://github.com/costajob/rsync_cron"
|
|
13
13
|
s.license = "MIT"
|
|
14
14
|
s.required_ruby_version = ">= 2.1.8"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rsync_cron
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- costajob
|
|
@@ -60,6 +60,7 @@ executables:
|
|
|
60
60
|
extensions: []
|
|
61
61
|
extra_rdoc_files: []
|
|
62
62
|
files:
|
|
63
|
+
- ".gitignore"
|
|
63
64
|
- ".travis.yml"
|
|
64
65
|
- Gemfile
|
|
65
66
|
- Gemfile.lock
|
|
@@ -100,5 +101,5 @@ rubyforge_project:
|
|
|
100
101
|
rubygems_version: 2.6.11
|
|
101
102
|
signing_key:
|
|
102
103
|
specification_version: 4
|
|
103
|
-
summary:
|
|
104
|
+
summary: Install specified rsync command into crontab schedule
|
|
104
105
|
test_files: []
|