├── .gitignore ├── .rspec ├── .travis.yml ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── lib ├── rsync.rb └── rsync │ ├── change.rb │ ├── command.rb │ ├── configure.rb │ ├── result.rb │ └── version.rb ├── rsync.gemspec └── spec ├── rsync ├── change_spec.rb ├── command_spec.rb └── result_spec.rb ├── rsync_spec.rb ├── spec_helper.rb └── support ├── rsync_builder.rb └── tempdir.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbussdieker/ruby-rsync/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format doc --color 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbussdieker/ruby-rsync/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbussdieker/ruby-rsync/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbussdieker/ruby-rsync/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbussdieker/ruby-rsync/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbussdieker/ruby-rsync/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/rsync.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbussdieker/ruby-rsync/HEAD/lib/rsync.rb -------------------------------------------------------------------------------- /lib/rsync/change.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbussdieker/ruby-rsync/HEAD/lib/rsync/change.rb -------------------------------------------------------------------------------- /lib/rsync/command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbussdieker/ruby-rsync/HEAD/lib/rsync/command.rb -------------------------------------------------------------------------------- /lib/rsync/configure.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbussdieker/ruby-rsync/HEAD/lib/rsync/configure.rb -------------------------------------------------------------------------------- /lib/rsync/result.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbussdieker/ruby-rsync/HEAD/lib/rsync/result.rb -------------------------------------------------------------------------------- /lib/rsync/version.rb: -------------------------------------------------------------------------------- 1 | module Rsync 2 | # Project version 3 | VERSION = "1.0.9" 4 | end 5 | -------------------------------------------------------------------------------- /rsync.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbussdieker/ruby-rsync/HEAD/rsync.gemspec -------------------------------------------------------------------------------- /spec/rsync/change_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbussdieker/ruby-rsync/HEAD/spec/rsync/change_spec.rb -------------------------------------------------------------------------------- /spec/rsync/command_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbussdieker/ruby-rsync/HEAD/spec/rsync/command_spec.rb -------------------------------------------------------------------------------- /spec/rsync/result_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbussdieker/ruby-rsync/HEAD/spec/rsync/result_spec.rb -------------------------------------------------------------------------------- /spec/rsync_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbussdieker/ruby-rsync/HEAD/spec/rsync_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbussdieker/ruby-rsync/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/rsync_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbussdieker/ruby-rsync/HEAD/spec/support/rsync_builder.rb -------------------------------------------------------------------------------- /spec/support/tempdir.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbussdieker/ruby-rsync/HEAD/spec/support/tempdir.rb --------------------------------------------------------------------------------