├── .gitignore ├── .travis.yml ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── capistrano-ci.gemspec ├── lib └── capistrano │ ├── ci.rb │ └── ci │ ├── client.rb │ ├── clients │ ├── base.rb │ ├── circle.rb │ ├── semaphore.rb │ ├── travis.rb │ └── travis_pro.rb │ ├── recipes.rb │ ├── recipes │ ├── v2.rb │ └── v3.rake │ └── version.rb └── spec ├── capistrano └── ci │ ├── client_spec.rb │ └── clients │ ├── base_spec.rb │ ├── circle_spec.rb │ ├── semaphore_spec.rb │ ├── travis_pro_spec.rb │ └── travis_spec.rb ├── spec_helper.rb └── vcr ├── Capistrano_CI_Clients_Circle ├── _passed_ │ ├── when_not_passed │ │ └── .yml │ └── when_passed │ │ └── .yml └── _state │ ├── when_branch_was_not_found │ └── .yml │ ├── when_not_passed │ └── .yml │ ├── when_passed │ └── .yml │ └── when_repository_was_not_found │ └── .yml ├── Capistrano_CI_Clients_Semaphore ├── _passed_ │ ├── when_not_passed │ │ └── .yml │ └── when_passed │ │ └── .yml └── _state │ ├── when_branch_was_not_found │ └── .yml │ ├── when_not_passed │ └── .yml │ ├── when_passed │ └── .yml │ └── when_repository_was_not_found │ └── .yml ├── Capistrano_CI_Clients_Travis ├── _passed_ │ ├── when_failed │ │ └── .yml │ └── when_passed │ │ └── .yml └── _state │ ├── when_failed │ └── .yml │ ├── when_passed │ └── .yml │ └── when_repository_was_not_found │ └── .yml └── Capistrano_CI_Clients_TravisPro ├── _passed_ ├── when_not_passed │ └── .yml └── when_passed │ └── .yml └── _state ├── when_not_passed └── .yml ├── when_passed └── .yml └── when_repository_was_not_found └── .yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/Rakefile -------------------------------------------------------------------------------- /capistrano-ci.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/capistrano-ci.gemspec -------------------------------------------------------------------------------- /lib/capistrano/ci.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/lib/capistrano/ci.rb -------------------------------------------------------------------------------- /lib/capistrano/ci/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/lib/capistrano/ci/client.rb -------------------------------------------------------------------------------- /lib/capistrano/ci/clients/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/lib/capistrano/ci/clients/base.rb -------------------------------------------------------------------------------- /lib/capistrano/ci/clients/circle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/lib/capistrano/ci/clients/circle.rb -------------------------------------------------------------------------------- /lib/capistrano/ci/clients/semaphore.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/lib/capistrano/ci/clients/semaphore.rb -------------------------------------------------------------------------------- /lib/capistrano/ci/clients/travis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/lib/capistrano/ci/clients/travis.rb -------------------------------------------------------------------------------- /lib/capistrano/ci/clients/travis_pro.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/lib/capistrano/ci/clients/travis_pro.rb -------------------------------------------------------------------------------- /lib/capistrano/ci/recipes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/lib/capistrano/ci/recipes.rb -------------------------------------------------------------------------------- /lib/capistrano/ci/recipes/v2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/lib/capistrano/ci/recipes/v2.rb -------------------------------------------------------------------------------- /lib/capistrano/ci/recipes/v3.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/lib/capistrano/ci/recipes/v3.rake -------------------------------------------------------------------------------- /lib/capistrano/ci/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/lib/capistrano/ci/version.rb -------------------------------------------------------------------------------- /spec/capistrano/ci/client_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/spec/capistrano/ci/client_spec.rb -------------------------------------------------------------------------------- /spec/capistrano/ci/clients/base_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/spec/capistrano/ci/clients/base_spec.rb -------------------------------------------------------------------------------- /spec/capistrano/ci/clients/circle_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/spec/capistrano/ci/clients/circle_spec.rb -------------------------------------------------------------------------------- /spec/capistrano/ci/clients/semaphore_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/spec/capistrano/ci/clients/semaphore_spec.rb -------------------------------------------------------------------------------- /spec/capistrano/ci/clients/travis_pro_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/spec/capistrano/ci/clients/travis_pro_spec.rb -------------------------------------------------------------------------------- /spec/capistrano/ci/clients/travis_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/spec/capistrano/ci/clients/travis_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/vcr/Capistrano_CI_Clients_Circle/_passed_/when_not_passed/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/spec/vcr/Capistrano_CI_Clients_Circle/_passed_/when_not_passed/.yml -------------------------------------------------------------------------------- /spec/vcr/Capistrano_CI_Clients_Circle/_passed_/when_passed/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/spec/vcr/Capistrano_CI_Clients_Circle/_passed_/when_passed/.yml -------------------------------------------------------------------------------- /spec/vcr/Capistrano_CI_Clients_Circle/_state/when_branch_was_not_found/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/spec/vcr/Capistrano_CI_Clients_Circle/_state/when_branch_was_not_found/.yml -------------------------------------------------------------------------------- /spec/vcr/Capistrano_CI_Clients_Circle/_state/when_not_passed/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/spec/vcr/Capistrano_CI_Clients_Circle/_state/when_not_passed/.yml -------------------------------------------------------------------------------- /spec/vcr/Capistrano_CI_Clients_Circle/_state/when_passed/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/spec/vcr/Capistrano_CI_Clients_Circle/_state/when_passed/.yml -------------------------------------------------------------------------------- /spec/vcr/Capistrano_CI_Clients_Circle/_state/when_repository_was_not_found/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/spec/vcr/Capistrano_CI_Clients_Circle/_state/when_repository_was_not_found/.yml -------------------------------------------------------------------------------- /spec/vcr/Capistrano_CI_Clients_Semaphore/_passed_/when_not_passed/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/spec/vcr/Capistrano_CI_Clients_Semaphore/_passed_/when_not_passed/.yml -------------------------------------------------------------------------------- /spec/vcr/Capistrano_CI_Clients_Semaphore/_passed_/when_passed/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/spec/vcr/Capistrano_CI_Clients_Semaphore/_passed_/when_passed/.yml -------------------------------------------------------------------------------- /spec/vcr/Capistrano_CI_Clients_Semaphore/_state/when_branch_was_not_found/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/spec/vcr/Capistrano_CI_Clients_Semaphore/_state/when_branch_was_not_found/.yml -------------------------------------------------------------------------------- /spec/vcr/Capistrano_CI_Clients_Semaphore/_state/when_not_passed/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/spec/vcr/Capistrano_CI_Clients_Semaphore/_state/when_not_passed/.yml -------------------------------------------------------------------------------- /spec/vcr/Capistrano_CI_Clients_Semaphore/_state/when_passed/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/spec/vcr/Capistrano_CI_Clients_Semaphore/_state/when_passed/.yml -------------------------------------------------------------------------------- /spec/vcr/Capistrano_CI_Clients_Semaphore/_state/when_repository_was_not_found/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/spec/vcr/Capistrano_CI_Clients_Semaphore/_state/when_repository_was_not_found/.yml -------------------------------------------------------------------------------- /spec/vcr/Capistrano_CI_Clients_Travis/_passed_/when_failed/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/spec/vcr/Capistrano_CI_Clients_Travis/_passed_/when_failed/.yml -------------------------------------------------------------------------------- /spec/vcr/Capistrano_CI_Clients_Travis/_passed_/when_passed/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/spec/vcr/Capistrano_CI_Clients_Travis/_passed_/when_passed/.yml -------------------------------------------------------------------------------- /spec/vcr/Capistrano_CI_Clients_Travis/_state/when_failed/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/spec/vcr/Capistrano_CI_Clients_Travis/_state/when_failed/.yml -------------------------------------------------------------------------------- /spec/vcr/Capistrano_CI_Clients_Travis/_state/when_passed/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/spec/vcr/Capistrano_CI_Clients_Travis/_state/when_passed/.yml -------------------------------------------------------------------------------- /spec/vcr/Capistrano_CI_Clients_Travis/_state/when_repository_was_not_found/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/spec/vcr/Capistrano_CI_Clients_Travis/_state/when_repository_was_not_found/.yml -------------------------------------------------------------------------------- /spec/vcr/Capistrano_CI_Clients_TravisPro/_passed_/when_not_passed/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/spec/vcr/Capistrano_CI_Clients_TravisPro/_passed_/when_not_passed/.yml -------------------------------------------------------------------------------- /spec/vcr/Capistrano_CI_Clients_TravisPro/_passed_/when_passed/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/spec/vcr/Capistrano_CI_Clients_TravisPro/_passed_/when_passed/.yml -------------------------------------------------------------------------------- /spec/vcr/Capistrano_CI_Clients_TravisPro/_state/when_not_passed/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/spec/vcr/Capistrano_CI_Clients_TravisPro/_state/when_not_passed/.yml -------------------------------------------------------------------------------- /spec/vcr/Capistrano_CI_Clients_TravisPro/_state/when_passed/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/spec/vcr/Capistrano_CI_Clients_TravisPro/_state/when_passed/.yml -------------------------------------------------------------------------------- /spec/vcr/Capistrano_CI_Clients_TravisPro/_state/when_repository_was_not_found/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/railsware/capistrano-ci/HEAD/spec/vcr/Capistrano_CI_Clients_TravisPro/_state/when_repository_was_not_found/.yml --------------------------------------------------------------------------------