├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── capistrano-copy-files.gemspec └── lib ├── capistrano-copy-files.rb └── capistrano ├── copy_files.rb └── tasks └── copy_files.rake /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capistrano/copy-files/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capistrano/copy-files/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capistrano/copy-files/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require 'bundler/gem_tasks' 2 | -------------------------------------------------------------------------------- /capistrano-copy-files.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capistrano/copy-files/HEAD/capistrano-copy-files.gemspec -------------------------------------------------------------------------------- /lib/capistrano-copy-files.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/capistrano/copy_files.rb: -------------------------------------------------------------------------------- 1 | load File.expand_path('../tasks/copy_files.rake', __FILE__) 2 | -------------------------------------------------------------------------------- /lib/capistrano/tasks/copy_files.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capistrano/copy-files/HEAD/lib/capistrano/tasks/copy_files.rake --------------------------------------------------------------------------------