rsync_cron 1.0.7 → 1.0.8
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/Gemfile.lock +1 -1
- data/lib/rsync_cron/options.rb +2 -2
- data/lib/rsync_cron/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d9bdf25fe2470358e6e7b7481cf95decd6ea923a
|
|
4
|
+
data.tar.gz: 499d221a5ce98c084d37850fb50fe69a199f171a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ab7773214e1c73426672aec01663191c5cae2a2b4c696af71d4932481bf1e7010dfd1467a27a5985b8a27ba4401fd8e0de72b35807708b01b2fd872dcad0849e
|
|
7
|
+
data.tar.gz: c9f9804ed7b6ed53cfe745a0ee779370b61af7295ee0a4de89325477b1241f977452ed0e0ba9ea459feca540758920db2ca50d2f88214d4678e45fb88f696c2f
|
data/Gemfile.lock
CHANGED
data/lib/rsync_cron/options.rb
CHANGED
|
@@ -6,7 +6,7 @@ module RsyncCron
|
|
|
6
6
|
bwlimit: BANDWITH_LIMIT,
|
|
7
7
|
exclude: "'DfsrPrivate'"
|
|
8
8
|
}
|
|
9
|
-
FLAGS = %w[
|
|
9
|
+
FLAGS = %w[noatime verbose archive compress]
|
|
10
10
|
|
|
11
11
|
def initialize(data: DEFAULT, flags: FLAGS)
|
|
12
12
|
@data = data.to_h
|
|
@@ -24,7 +24,7 @@ module RsyncCron
|
|
|
24
24
|
|
|
25
25
|
private def flags
|
|
26
26
|
return if @flags.empty?
|
|
27
|
-
|
|
27
|
+
@flags.map { |flag| "--#{flag}" }.join(" ")
|
|
28
28
|
end
|
|
29
29
|
|
|
30
30
|
private def data
|
data/lib/rsync_cron/version.rb
CHANGED