├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── capistrano-rsync.gemspec └── lib └── capistrano ├── rsync.rb └── rsync └── version.rb /.gitignore: -------------------------------------------------------------------------------- 1 | /*.gem 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moll/capistrano-rsync/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moll/capistrano-rsync/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moll/capistrano-rsync/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moll/capistrano-rsync/HEAD/README.md -------------------------------------------------------------------------------- /capistrano-rsync.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moll/capistrano-rsync/HEAD/capistrano-rsync.gemspec -------------------------------------------------------------------------------- /lib/capistrano/rsync.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moll/capistrano-rsync/HEAD/lib/capistrano/rsync.rb -------------------------------------------------------------------------------- /lib/capistrano/rsync/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moll/capistrano-rsync/HEAD/lib/capistrano/rsync/version.rb --------------------------------------------------------------------------------