├── .document ├── .gitignore ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.rdoc ├── Rakefile ├── capistrano-spec.gemspec ├── lib ├── capistrano-spec.rb └── capistrano │ └── spec.rb └── spec ├── capistrano-spec_spec.rb ├── downloaded_spec.rb ├── recipe └── fakerecipe.rb ├── spec.opts ├── spec_helper.rb ├── stub_commands_spec.rb ├── support └── shared │ └── callback_examples.rb └── uploaded_spec.rb /.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/capistrano-spec/HEAD/.document -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/capistrano-spec/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/capistrano-spec/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/capistrano-spec/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/capistrano-spec/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/capistrano-spec/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/capistrano-spec/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/capistrano-spec/HEAD/Rakefile -------------------------------------------------------------------------------- /capistrano-spec.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/capistrano-spec/HEAD/capistrano-spec.gemspec -------------------------------------------------------------------------------- /lib/capistrano-spec.rb: -------------------------------------------------------------------------------- 1 | require 'capistrano/spec' 2 | -------------------------------------------------------------------------------- /lib/capistrano/spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/capistrano-spec/HEAD/lib/capistrano/spec.rb -------------------------------------------------------------------------------- /spec/capistrano-spec_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/capistrano-spec/HEAD/spec/capistrano-spec_spec.rb -------------------------------------------------------------------------------- /spec/downloaded_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/capistrano-spec/HEAD/spec/downloaded_spec.rb -------------------------------------------------------------------------------- /spec/recipe/fakerecipe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/capistrano-spec/HEAD/spec/recipe/fakerecipe.rb -------------------------------------------------------------------------------- /spec/spec.opts: -------------------------------------------------------------------------------- 1 | --color 2 | -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/capistrano-spec/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/stub_commands_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/capistrano-spec/HEAD/spec/stub_commands_spec.rb -------------------------------------------------------------------------------- /spec/support/shared/callback_examples.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/capistrano-spec/HEAD/spec/support/shared/callback_examples.rb -------------------------------------------------------------------------------- /spec/uploaded_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technicalpickles/capistrano-spec/HEAD/spec/uploaded_spec.rb --------------------------------------------------------------------------------