Please be sure to have Guard installed before continuing.
Please be sure to have the rsync command in your path.
It's recommended that you set up a ssh key if you're going to do remote syncing. Alterantively your can use a password file as per rsync default option --password-file=FILE, the drawback with this is you might commit your information to the repo, and that ain't no good. Lastly, you can just type in your password everytime, but that's too much work. Add a ssh key!
Install the gem:
$ gem install guard-remote-sync
Add guard definition to your Guardfile by running this command:
$ guard init remote-sync
Please read Guard usage doc
guard 'remote-sync',
:source => ".",
:destination => '/export/home/{username}/tmp',
:user => '{user}',
:remote_address => '{address}',
:verbose => true,
:cli => "--color",
:sync_on_start => true do
watch(%r{^.+\.(js|xml|php|class|config)$})
end
Please read Guard doc for more information about the Guardfile DSL.
guard 'remote-sync', :source => '.', :destination => './tmp' do
# ...
end
guard 'remote-sync',
:source => "." # the directory to start the remote sync guard in
:destination => '/export/home/user' # the directory to sync to
:user => "someone" # the user to user ex: {USER}@somehost.com
:remote_address => 'company.com' # the remote address ip or url
do
# ...
end
guard 'remote-sync', :cli_options => 'rsync -Carv . [email protected]:/export/home/user' do
# ...
end
Most of these options are human readable and correspond to rsync's options. Long options are used wherever possible to be more verbose
:source => nil # the source directory to start in
:destination => nil # the directory to sync to
:user => nil # the user to use if remote syncing to another machine
:remote_address => nil # the remote address to the other machine ip|url
:remote_port => nil # the port to use for ssh connetions
:ssh => false # see rsync options : "$ man rsync"
:auth_key => nil # the identity file to use for ssh authentication
:cli_options => nil # used if you want to pass your own rsyn command
:archive => true # see rsync options : "$ man rsync"
:recursive => true # see rsync options : "$ man rsync"
:verbose => true # see rsync options : "$ man rsync"
:delete => true # see rsync options : "$ man rsync"
:include => nil # see rsync options : "$ man rsync"
:include_from => nil # see rsync options : "$ man rsync"
:exclude => nil # see rsync options : "$ man rsync"
:exclude_from => ".rsync-filter" # see rsync options : "$ man rsync"
:progress => true # see rsync options : "$ man rsync"
:sync_on_start => false # rsycn when the guard starts instead of waiting for a watcher to trigger guard
:dry_run => false # see rsync options : "$ man rsync"
:cvs_exclude => true # see rsync options : "$ man rsync"
:password_file => nil # see rsync options : "$ man rsync"
:timeout => 10 # see rsync options : "$ man rsync"
- Source hosted at GitHub
- Report issues/Questions/Feature requests on GitHub Issues
Please run bundle exec rake spec
to test the source