1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
# Rsync
[](https://travis-ci.org/jbussdieker/ruby-rsync)
[](https://codeclimate.com/github/jbussdieker/ruby-rsync)
[](http://badge.fury.io/rb/rsync)
[](https://coveralls.io/r/jbussdieker/ruby-rsync)
[](https://gemnasium.com/jbussdieker/ruby-rsync)
Ruby/Rsync is a Ruby library that can syncronize files between remote hosts by wrapping a call to the rsync binary.
## Usage
Minimal example
```ruby
require "rsync"
result = Rsync.run("/path/to/src", "/path/to/dest")
```
Complete example
```ruby
require "rsync"
Rsync.run("/path/to/src", "/path/to/dest") do |result|
if result.success?
result.changes.each do |change|
puts "#{change.filename} (#{change.summary})"
end
else
puts result.error
end
end
```
|