sftp-sync 0.1.1 → 0.1.2
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/lib/sftp/sync/cli.rb +2 -0
- data/lib/sftp/sync/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: 61089132b1de7a2b31c21d454c81b69a32245fb7
|
|
4
|
+
data.tar.gz: 9f78ce8b992a2e95481f469b7a37da03e030e406
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 661dae15c0d54711a6a607e394ed78b2b81bba4710c07edf5b8278003387f70ec0c8b3883ba3f3a7cff8948cac37319530e65fb00d7d50361655eb5e9d967c13
|
|
7
|
+
data.tar.gz: 7e933be00abc43df3a3351e820cc9176821de286eb1e993c598517dfd14bc27f74e02a85cf7fdac1fa88ebd9e9645876f82c08705e51da2babd6694f1e9e670a
|
data/lib/sftp/sync/cli.rb
CHANGED
|
@@ -20,6 +20,7 @@ module Sftp
|
|
|
20
20
|
desc "diff", "Diffs local files from remote SFTP"
|
|
21
21
|
option :filter
|
|
22
22
|
option :output_dir
|
|
23
|
+
option :gitignore, :type => :boolean, :default => true
|
|
23
24
|
|
|
24
25
|
def diff
|
|
25
26
|
runner = Sftp::Sync::Runner.new(options)
|
|
@@ -29,6 +30,7 @@ module Sftp
|
|
|
29
30
|
|
|
30
31
|
desc "list", "Lists files to be synced from remote SFTP"
|
|
31
32
|
option :filter
|
|
33
|
+
option :gitignore, :type => :boolean, :default => true
|
|
32
34
|
def list
|
|
33
35
|
runner = Sftp::Sync::Runner.new(options)
|
|
34
36
|
runner.list
|
data/lib/sftp/sync/version.rb
CHANGED