Skip to content

Files

Latest commit

1f38754 · Jul 21, 2015

History

History
39 lines (26 loc) · 1.12 KB

README.md

File metadata and controls

39 lines (26 loc) · 1.12 KB

Syncr

a sort-of front-end for Rsync

Build Status Stories in Ready Code Climate Test Coverage

Installation

Add this line to your application's Gemfile:

gem 'syncr'

And then execute:

$ bundle

Or install it yourself as:

$ gem install syncr

Usage

# Simple example
Syncr.start(local: '/home/user/Projects', external: 'backup-server:/backups/Projects')

# More advanced example
# NOTE: Two way syncing does not work with remote directories, so not over SSH
s = Syncr.new(local: '/home/user/Projects', external: '/mnt/backup/Projects', two_way_syncing: true)
s.start

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/layer8x/syncr.