Sha256: a8753bafd3ce6883cfbd18a9c179ab5e1fd235b3b74fbadda7cd453112b8bed9
Contents?: true
Size: 766 Bytes
Versions: 1
Compression:
Stored size: 766 Bytes
Contents
# Rsync [](https://travis-ci.org/jbussdieker/ruby-rsync) [](https://codeclimate.com/github/jbussdieker/ruby-rsync) [](http://badge.fury.io/rb/rsync) Ruby/Rsync is a Ruby library that can syncronize files between remote hosts by wrapping a call to the rsync binary. ## Usage require "rsync" Rsync.command(["/path/to/source", "/path/to/destination"]) do |result| if result.success? result.changes.each do |change| puts "#{change.filename} (#{change.summary})" end else puts result.error end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rsync-0.0.2 | README.md |