├── .gitignore ├── .rspec ├── .rubocop.yml ├── .ruby-version ├── .travis.yml ├── CHANGES.md ├── CONTRIBUTING.md ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── LICENSE.md ├── Procfile ├── README.md ├── Rakefile ├── app.json ├── app ├── controllers │ ├── application_controller.rb │ ├── concerns │ │ ├── .keep │ │ └── webhook_validations.rb │ └── events_controller.rb ├── helpers │ └── application_helper.rb ├── mailers │ └── .keep ├── models │ ├── .keep │ ├── auto_deployment.rb │ ├── commit_status.rb │ ├── concerns │ │ ├── .keep │ │ ├── api_client.rb │ │ ├── deployment_timeout.rb │ │ └── local_log_file.rb │ ├── deployment.rb │ ├── deployment │ │ ├── credentials.rb │ │ ├── output.rb │ │ └── status.rb │ └── repository.rb ├── receivers │ ├── lock_receiver.rb │ └── receiver.rb ├── services │ └── environment_locker.rb ├── validators │ └── github_source_validator.rb └── views │ └── layouts │ └── application.html.erb ├── bin ├── bundle ├── cap ├── capify ├── dpl ├── rails └── rake ├── config.ru ├── config ├── application.rb ├── boot.rb ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ ├── staging.rb │ └── test.rb ├── initializers │ ├── backtrace_silencers.rb │ ├── filter_parameter_logging.rb │ ├── flowdock.rb │ ├── inflections.rb │ ├── libraries.rb │ ├── mime_types.rb │ ├── resque.rb │ ├── secret_token.rb │ ├── session_store.rb │ ├── warden-github.rb │ └── wrap_parameters.rb ├── locales │ └── en.yml ├── routes.rb └── unicorn.rb ├── db ├── migrate │ ├── 20140329200427_create_deployments.rb │ └── 20140728040201_create_repositories.rb ├── schema.rb └── seeds.rb ├── doc ├── installation.md ├── locking.md ├── notifications.md ├── overview.md └── providers.md ├── docker-compose.yml ├── lib ├── assets │ └── .keep ├── heaven.rb ├── heaven │ ├── comparison │ │ ├── default.rb │ │ └── linked.rb │ ├── jobs.rb │ ├── jobs │ │ ├── deployment.rb │ │ ├── deployment_status.rb │ │ ├── environment_lock.rb │ │ ├── environment_locked_error.rb │ │ ├── environment_unlock.rb │ │ ├── locked_error.rb │ │ └── status.rb │ ├── notifier.rb │ ├── notifier │ │ ├── campfire.rb │ │ ├── default.rb │ │ ├── flowdock.rb │ │ ├── flowdock │ │ │ ├── api.rb │ │ │ └── message_helper.rb │ │ ├── hipchat.rb │ │ └── slack.rb │ ├── provider.rb │ ├── provider │ │ ├── ansible.rb │ │ ├── bundler_capistrano.rb │ │ ├── capistrano.rb │ │ ├── default_provider.rb │ │ ├── dpl.rb │ │ ├── elastic_beanstalk.rb │ │ ├── fabric.rb │ │ ├── heroku.rb │ │ └── shell.rb │ └── version.rb └── tasks │ ├── .keep │ └── resque.rake ├── log └── .keep ├── public ├── 404.html ├── 422.html ├── 500.html ├── favicon.ico └── robots.txt ├── requirements.txt ├── script ├── bootstrap ├── cibuild └── console ├── spec ├── app_spec.rb ├── controllers │ └── concerns │ │ └── webhook_validations_spec.rb ├── fixtures │ ├── deployment-capistrano.json │ ├── deployment-failure.json │ ├── deployment-pending.json │ ├── deployment-success.json │ ├── deployment.json │ ├── deployment_staging.json │ ├── meta.json │ ├── ping.json │ ├── status_pending.json │ └── status_success.json ├── lib │ └── heaven │ │ ├── comparison │ │ ├── default_spec.rb │ │ └── linked_spec.rb │ │ ├── jobs │ │ ├── environment_lock_spec.rb │ │ ├── environment_locked_error_spec.rb │ │ └── environment_unlock_spec.rb │ │ ├── notifier │ │ ├── campfire_spec.rb │ │ ├── default_spec.rb │ │ ├── flowdock_spec.rb │ │ ├── hipchat_spec.rb │ │ └── slack_spec.rb │ │ ├── provider │ │ ├── capistrano_spec.rb │ │ ├── default_provider_spec.rb │ │ └── dpl_spec.rb │ │ └── provider_spec.rb ├── models │ ├── concerns │ │ └── api_client_spec.rb │ ├── deployment │ │ ├── credentials_spec.rb │ │ ├── output_spec.rb │ │ └── status_spec.rb │ ├── deployment_spec.rb │ ├── reciever_spec.rb │ └── repository_spec.rb ├── request_spec_helper.rb ├── requests │ ├── events_spec.rb │ └── site_spec.rb ├── services │ └── environment_locker_spec.rb ├── spec_helper.rb ├── support │ ├── helpers │ │ ├── comparison_helper.rb │ │ ├── deployment_status_helper.rb │ │ ├── fixture_helper.rb │ │ ├── gist_helper.rb │ │ └── meta_helper.rb │ └── matchers │ │ ├── deployment_status_matchers.rb │ │ └── environment_locker_matchers.rb └── validators │ └── github_source_validator_spec.rb └── vendor ├── assets ├── javascripts │ └── .keep └── stylesheets │ └── .keep └── cache ├── actionmailer-4.2.2.gem ├── actionpack-4.2.2.gem ├── actionview-4.2.2.gem ├── activejob-4.2.2.gem ├── activemodel-4.2.2.gem ├── activerecord-4.2.2.gem ├── activesupport-4.2.2.gem ├── addressable-2.3.6.gem ├── arel-6.0.0.gem ├── ast-2.0.0.gem ├── astrolabe-1.3.0.gem ├── aws-sdk-1.51.0.gem ├── better_errors-1.1.0.gem ├── binding_of_caller-0.7.2.gem ├── builder-3.2.2.gem ├── callsite-0.0.11.gem ├── campfiyah-0.0.6.gem ├── capistrano-2.9.0.gem ├── coderay-1.1.0.gem ├── crack-0.4.2.gem ├── debug_inspector-0.0.2.gem ├── diff-lcs-1.2.5.gem ├── dotenv-0.9.0.gem ├── dpl-1.5.7.gem ├── erubis-2.7.0.gem ├── faraday-0.9.0.gem ├── faraday_middleware-0.9.1.gem ├── flowdock-0.5.0.gem ├── foreman-0.63.0.gem ├── globalid-0.3.5.gem ├── highline-1.6.21.gem ├── hipchat-1.1.0.gem ├── httparty-0.13.1.gem ├── i18n-0.7.0.gem ├── json-1.8.2.gem ├── kgio-2.9.2.gem ├── loofah-2.0.2.gem ├── mail-2.6.3.gem ├── meta_request-0.2.8.gem ├── method_source-0.8.2.gem ├── mime-types-2.5.gem ├── mini_portile2-2.1.0.gem ├── minitest-5.6.1.gem ├── mono_logger-1.1.0.gem ├── multi_json-1.12.0.gem ├── multi_xml-0.5.5.gem ├── multipart-post-2.0.0.gem ├── net-scp-1.2.1.gem ├── net-sftp-2.1.2.gem ├── net-ssh-2.9.1.gem ├── net-ssh-gateway-1.2.0.gem ├── nokogiri-1.6.8.gem ├── octokit-3.4.0.gem ├── parser-2.2.2.5.gem ├── pg-0.17.1.gem ├── pkg-config-1.1.7.gem ├── posix-spawn-0.3.8.gem ├── powerpack-0.0.9.gem ├── pry-0.9.12.6.gem ├── rack-1.6.4.gem ├── rack-contrib-1.1.0.gem ├── rack-protection-1.5.3.gem ├── rack-test-0.6.3.gem ├── rails-4.2.2.gem ├── rails-deprecated_sanitizer-1.0.3.gem ├── rails-dom-testing-1.0.6.gem ├── rails-html-sanitizer-1.0.2.gem ├── rails_12factor-0.0.2.gem ├── rails_serve_static_assets-0.0.2.gem ├── rails_stdout_logging-0.0.3.gem ├── railties-4.2.2.gem ├── rainbow-2.0.0.gem ├── raindrops-0.13.0.gem ├── rake-10.4.2.gem ├── redis-3.3.0.gem ├── redis-namespace-1.5.2.gem ├── resque-1.26.0.gem ├── resque-lock-timeout-0.4.4.gem ├── rspec-core-2.14.7.gem ├── rspec-expectations-2.14.5.gem ├── rspec-mocks-2.14.5.gem ├── rspec-rails-2.14.1.gem ├── rubocop-0.26.0.gem ├── ruby-progressbar-1.5.1.gem ├── safe_yaml-1.0.4.gem ├── sawyer-0.5.5.gem ├── simplecov-0.7.1.gem ├── simplecov-html-0.7.1.gem ├── sinatra-1.4.7.gem ├── slack-notifier-1.0.0.gem ├── slop-3.6.0.gem ├── sprockets-3.0.3.gem ├── sprockets-rails-2.2.4.gem ├── sqlite3-1.3.10.gem ├── thor-0.19.1.gem ├── thread_safe-0.3.5.gem ├── tilt-2.0.2.gem ├── tzinfo-1.2.2.gem ├── unicorn-4.8.2.gem ├── vegas-0.1.11.gem ├── warden-1.2.3.gem ├── warden-github-1.0.2.gem ├── warden-github-rails-1.1.0.gem ├── webmock-1.17.3.gem └── yajl-ruby-1.2.0.gem /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.3.1 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/CHANGES.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/Rakefile -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/app.json -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/concerns/webhook_validations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/app/controllers/concerns/webhook_validations.rb -------------------------------------------------------------------------------- /app/controllers/events_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/app/controllers/events_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/auto_deployment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/app/models/auto_deployment.rb -------------------------------------------------------------------------------- /app/models/commit_status.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/app/models/commit_status.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/concerns/api_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/app/models/concerns/api_client.rb -------------------------------------------------------------------------------- /app/models/concerns/deployment_timeout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/app/models/concerns/deployment_timeout.rb -------------------------------------------------------------------------------- /app/models/concerns/local_log_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/app/models/concerns/local_log_file.rb -------------------------------------------------------------------------------- /app/models/deployment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/app/models/deployment.rb -------------------------------------------------------------------------------- /app/models/deployment/credentials.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/app/models/deployment/credentials.rb -------------------------------------------------------------------------------- /app/models/deployment/output.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/app/models/deployment/output.rb -------------------------------------------------------------------------------- /app/models/deployment/status.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/app/models/deployment/status.rb -------------------------------------------------------------------------------- /app/models/repository.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/app/models/repository.rb -------------------------------------------------------------------------------- /app/receivers/lock_receiver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/app/receivers/lock_receiver.rb -------------------------------------------------------------------------------- /app/receivers/receiver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/app/receivers/receiver.rb -------------------------------------------------------------------------------- /app/services/environment_locker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/app/services/environment_locker.rb -------------------------------------------------------------------------------- /app/validators/github_source_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/app/validators/github_source_validator.rb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/cap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/bin/cap -------------------------------------------------------------------------------- /bin/capify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/bin/capify -------------------------------------------------------------------------------- /bin/dpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/bin/dpl -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/bin/rake -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/staging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/config/environments/staging.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/flowdock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/config/initializers/flowdock.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/libraries.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/config/initializers/libraries.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/resque.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/config/initializers/resque.rb -------------------------------------------------------------------------------- /config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/warden-github.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/config/initializers/warden-github.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/unicorn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/config/unicorn.rb -------------------------------------------------------------------------------- /db/migrate/20140329200427_create_deployments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/db/migrate/20140329200427_create_deployments.rb -------------------------------------------------------------------------------- /db/migrate/20140728040201_create_repositories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/db/migrate/20140728040201_create_repositories.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /doc/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/doc/installation.md -------------------------------------------------------------------------------- /doc/locking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/doc/locking.md -------------------------------------------------------------------------------- /doc/notifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/doc/notifications.md -------------------------------------------------------------------------------- /doc/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/doc/overview.md -------------------------------------------------------------------------------- /doc/providers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/doc/providers.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/heaven.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/lib/heaven.rb -------------------------------------------------------------------------------- /lib/heaven/comparison/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/lib/heaven/comparison/default.rb -------------------------------------------------------------------------------- /lib/heaven/comparison/linked.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/lib/heaven/comparison/linked.rb -------------------------------------------------------------------------------- /lib/heaven/jobs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/lib/heaven/jobs.rb -------------------------------------------------------------------------------- /lib/heaven/jobs/deployment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/lib/heaven/jobs/deployment.rb -------------------------------------------------------------------------------- /lib/heaven/jobs/deployment_status.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/lib/heaven/jobs/deployment_status.rb -------------------------------------------------------------------------------- /lib/heaven/jobs/environment_lock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/lib/heaven/jobs/environment_lock.rb -------------------------------------------------------------------------------- /lib/heaven/jobs/environment_locked_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/lib/heaven/jobs/environment_locked_error.rb -------------------------------------------------------------------------------- /lib/heaven/jobs/environment_unlock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/lib/heaven/jobs/environment_unlock.rb -------------------------------------------------------------------------------- /lib/heaven/jobs/locked_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/lib/heaven/jobs/locked_error.rb -------------------------------------------------------------------------------- /lib/heaven/jobs/status.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/lib/heaven/jobs/status.rb -------------------------------------------------------------------------------- /lib/heaven/notifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/lib/heaven/notifier.rb -------------------------------------------------------------------------------- /lib/heaven/notifier/campfire.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/lib/heaven/notifier/campfire.rb -------------------------------------------------------------------------------- /lib/heaven/notifier/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/lib/heaven/notifier/default.rb -------------------------------------------------------------------------------- /lib/heaven/notifier/flowdock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/lib/heaven/notifier/flowdock.rb -------------------------------------------------------------------------------- /lib/heaven/notifier/flowdock/api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/lib/heaven/notifier/flowdock/api.rb -------------------------------------------------------------------------------- /lib/heaven/notifier/flowdock/message_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/lib/heaven/notifier/flowdock/message_helper.rb -------------------------------------------------------------------------------- /lib/heaven/notifier/hipchat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/lib/heaven/notifier/hipchat.rb -------------------------------------------------------------------------------- /lib/heaven/notifier/slack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/lib/heaven/notifier/slack.rb -------------------------------------------------------------------------------- /lib/heaven/provider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/lib/heaven/provider.rb -------------------------------------------------------------------------------- /lib/heaven/provider/ansible.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/lib/heaven/provider/ansible.rb -------------------------------------------------------------------------------- /lib/heaven/provider/bundler_capistrano.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/lib/heaven/provider/bundler_capistrano.rb -------------------------------------------------------------------------------- /lib/heaven/provider/capistrano.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/lib/heaven/provider/capistrano.rb -------------------------------------------------------------------------------- /lib/heaven/provider/default_provider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/lib/heaven/provider/default_provider.rb -------------------------------------------------------------------------------- /lib/heaven/provider/dpl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/lib/heaven/provider/dpl.rb -------------------------------------------------------------------------------- /lib/heaven/provider/elastic_beanstalk.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/lib/heaven/provider/elastic_beanstalk.rb -------------------------------------------------------------------------------- /lib/heaven/provider/fabric.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/lib/heaven/provider/fabric.rb -------------------------------------------------------------------------------- /lib/heaven/provider/heroku.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/lib/heaven/provider/heroku.rb -------------------------------------------------------------------------------- /lib/heaven/provider/shell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/lib/heaven/provider/shell.rb -------------------------------------------------------------------------------- /lib/heaven/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/lib/heaven/version.rb -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/resque.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/lib/tasks/resque.rake -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/public/500.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/public/robots.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Fabric==1.8.3 2 | ansible 3 | -------------------------------------------------------------------------------- /script/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/script/bootstrap -------------------------------------------------------------------------------- /script/cibuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/script/cibuild -------------------------------------------------------------------------------- /script/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/script/console -------------------------------------------------------------------------------- /spec/app_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/spec/app_spec.rb -------------------------------------------------------------------------------- /spec/controllers/concerns/webhook_validations_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/spec/controllers/concerns/webhook_validations_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/deployment-capistrano.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/spec/fixtures/deployment-capistrano.json -------------------------------------------------------------------------------- /spec/fixtures/deployment-failure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/spec/fixtures/deployment-failure.json -------------------------------------------------------------------------------- /spec/fixtures/deployment-pending.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/spec/fixtures/deployment-pending.json -------------------------------------------------------------------------------- /spec/fixtures/deployment-success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/spec/fixtures/deployment-success.json -------------------------------------------------------------------------------- /spec/fixtures/deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/spec/fixtures/deployment.json -------------------------------------------------------------------------------- /spec/fixtures/deployment_staging.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/spec/fixtures/deployment_staging.json -------------------------------------------------------------------------------- /spec/fixtures/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/spec/fixtures/meta.json -------------------------------------------------------------------------------- /spec/fixtures/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/spec/fixtures/ping.json -------------------------------------------------------------------------------- /spec/fixtures/status_pending.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/spec/fixtures/status_pending.json -------------------------------------------------------------------------------- /spec/fixtures/status_success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/spec/fixtures/status_success.json -------------------------------------------------------------------------------- /spec/lib/heaven/comparison/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/spec/lib/heaven/comparison/default_spec.rb -------------------------------------------------------------------------------- /spec/lib/heaven/comparison/linked_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/spec/lib/heaven/comparison/linked_spec.rb -------------------------------------------------------------------------------- /spec/lib/heaven/jobs/environment_lock_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/spec/lib/heaven/jobs/environment_lock_spec.rb -------------------------------------------------------------------------------- /spec/lib/heaven/jobs/environment_locked_error_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/spec/lib/heaven/jobs/environment_locked_error_spec.rb -------------------------------------------------------------------------------- /spec/lib/heaven/jobs/environment_unlock_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/spec/lib/heaven/jobs/environment_unlock_spec.rb -------------------------------------------------------------------------------- /spec/lib/heaven/notifier/campfire_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/spec/lib/heaven/notifier/campfire_spec.rb -------------------------------------------------------------------------------- /spec/lib/heaven/notifier/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/spec/lib/heaven/notifier/default_spec.rb -------------------------------------------------------------------------------- /spec/lib/heaven/notifier/flowdock_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/spec/lib/heaven/notifier/flowdock_spec.rb -------------------------------------------------------------------------------- /spec/lib/heaven/notifier/hipchat_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/spec/lib/heaven/notifier/hipchat_spec.rb -------------------------------------------------------------------------------- /spec/lib/heaven/notifier/slack_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/spec/lib/heaven/notifier/slack_spec.rb -------------------------------------------------------------------------------- /spec/lib/heaven/provider/capistrano_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/spec/lib/heaven/provider/capistrano_spec.rb -------------------------------------------------------------------------------- /spec/lib/heaven/provider/default_provider_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/spec/lib/heaven/provider/default_provider_spec.rb -------------------------------------------------------------------------------- /spec/lib/heaven/provider/dpl_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/spec/lib/heaven/provider/dpl_spec.rb -------------------------------------------------------------------------------- /spec/lib/heaven/provider_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/spec/lib/heaven/provider_spec.rb -------------------------------------------------------------------------------- /spec/models/concerns/api_client_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/spec/models/concerns/api_client_spec.rb -------------------------------------------------------------------------------- /spec/models/deployment/credentials_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/spec/models/deployment/credentials_spec.rb -------------------------------------------------------------------------------- /spec/models/deployment/output_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/spec/models/deployment/output_spec.rb -------------------------------------------------------------------------------- /spec/models/deployment/status_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/spec/models/deployment/status_spec.rb -------------------------------------------------------------------------------- /spec/models/deployment_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/spec/models/deployment_spec.rb -------------------------------------------------------------------------------- /spec/models/reciever_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/spec/models/reciever_spec.rb -------------------------------------------------------------------------------- /spec/models/repository_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/spec/models/repository_spec.rb -------------------------------------------------------------------------------- /spec/request_spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/spec/request_spec_helper.rb -------------------------------------------------------------------------------- /spec/requests/events_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/spec/requests/events_spec.rb -------------------------------------------------------------------------------- /spec/requests/site_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/spec/requests/site_spec.rb -------------------------------------------------------------------------------- /spec/services/environment_locker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/spec/services/environment_locker_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/helpers/comparison_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/spec/support/helpers/comparison_helper.rb -------------------------------------------------------------------------------- /spec/support/helpers/deployment_status_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/spec/support/helpers/deployment_status_helper.rb -------------------------------------------------------------------------------- /spec/support/helpers/fixture_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/spec/support/helpers/fixture_helper.rb -------------------------------------------------------------------------------- /spec/support/helpers/gist_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/spec/support/helpers/gist_helper.rb -------------------------------------------------------------------------------- /spec/support/helpers/meta_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/spec/support/helpers/meta_helper.rb -------------------------------------------------------------------------------- /spec/support/matchers/deployment_status_matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/spec/support/matchers/deployment_status_matchers.rb -------------------------------------------------------------------------------- /spec/support/matchers/environment_locker_matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/spec/support/matchers/environment_locker_matchers.rb -------------------------------------------------------------------------------- /spec/validators/github_source_validator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/spec/validators/github_source_validator_spec.rb -------------------------------------------------------------------------------- /vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/cache/actionmailer-4.2.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/actionmailer-4.2.2.gem -------------------------------------------------------------------------------- /vendor/cache/actionpack-4.2.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/actionpack-4.2.2.gem -------------------------------------------------------------------------------- /vendor/cache/actionview-4.2.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/actionview-4.2.2.gem -------------------------------------------------------------------------------- /vendor/cache/activejob-4.2.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/activejob-4.2.2.gem -------------------------------------------------------------------------------- /vendor/cache/activemodel-4.2.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/activemodel-4.2.2.gem -------------------------------------------------------------------------------- /vendor/cache/activerecord-4.2.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/activerecord-4.2.2.gem -------------------------------------------------------------------------------- /vendor/cache/activesupport-4.2.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/activesupport-4.2.2.gem -------------------------------------------------------------------------------- /vendor/cache/addressable-2.3.6.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/addressable-2.3.6.gem -------------------------------------------------------------------------------- /vendor/cache/arel-6.0.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/arel-6.0.0.gem -------------------------------------------------------------------------------- /vendor/cache/ast-2.0.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/ast-2.0.0.gem -------------------------------------------------------------------------------- /vendor/cache/astrolabe-1.3.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/astrolabe-1.3.0.gem -------------------------------------------------------------------------------- /vendor/cache/aws-sdk-1.51.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/aws-sdk-1.51.0.gem -------------------------------------------------------------------------------- /vendor/cache/better_errors-1.1.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/better_errors-1.1.0.gem -------------------------------------------------------------------------------- /vendor/cache/binding_of_caller-0.7.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/binding_of_caller-0.7.2.gem -------------------------------------------------------------------------------- /vendor/cache/builder-3.2.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/builder-3.2.2.gem -------------------------------------------------------------------------------- /vendor/cache/callsite-0.0.11.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/callsite-0.0.11.gem -------------------------------------------------------------------------------- /vendor/cache/campfiyah-0.0.6.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/campfiyah-0.0.6.gem -------------------------------------------------------------------------------- /vendor/cache/capistrano-2.9.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/capistrano-2.9.0.gem -------------------------------------------------------------------------------- /vendor/cache/coderay-1.1.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/coderay-1.1.0.gem -------------------------------------------------------------------------------- /vendor/cache/crack-0.4.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/crack-0.4.2.gem -------------------------------------------------------------------------------- /vendor/cache/debug_inspector-0.0.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/debug_inspector-0.0.2.gem -------------------------------------------------------------------------------- /vendor/cache/diff-lcs-1.2.5.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/diff-lcs-1.2.5.gem -------------------------------------------------------------------------------- /vendor/cache/dotenv-0.9.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/dotenv-0.9.0.gem -------------------------------------------------------------------------------- /vendor/cache/dpl-1.5.7.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/dpl-1.5.7.gem -------------------------------------------------------------------------------- /vendor/cache/erubis-2.7.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/erubis-2.7.0.gem -------------------------------------------------------------------------------- /vendor/cache/faraday-0.9.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/faraday-0.9.0.gem -------------------------------------------------------------------------------- /vendor/cache/faraday_middleware-0.9.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/faraday_middleware-0.9.1.gem -------------------------------------------------------------------------------- /vendor/cache/flowdock-0.5.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/flowdock-0.5.0.gem -------------------------------------------------------------------------------- /vendor/cache/foreman-0.63.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/foreman-0.63.0.gem -------------------------------------------------------------------------------- /vendor/cache/globalid-0.3.5.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/globalid-0.3.5.gem -------------------------------------------------------------------------------- /vendor/cache/highline-1.6.21.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/highline-1.6.21.gem -------------------------------------------------------------------------------- /vendor/cache/hipchat-1.1.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/hipchat-1.1.0.gem -------------------------------------------------------------------------------- /vendor/cache/httparty-0.13.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/httparty-0.13.1.gem -------------------------------------------------------------------------------- /vendor/cache/i18n-0.7.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/i18n-0.7.0.gem -------------------------------------------------------------------------------- /vendor/cache/json-1.8.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/json-1.8.2.gem -------------------------------------------------------------------------------- /vendor/cache/kgio-2.9.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/kgio-2.9.2.gem -------------------------------------------------------------------------------- /vendor/cache/loofah-2.0.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/loofah-2.0.2.gem -------------------------------------------------------------------------------- /vendor/cache/mail-2.6.3.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/mail-2.6.3.gem -------------------------------------------------------------------------------- /vendor/cache/meta_request-0.2.8.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/meta_request-0.2.8.gem -------------------------------------------------------------------------------- /vendor/cache/method_source-0.8.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/method_source-0.8.2.gem -------------------------------------------------------------------------------- /vendor/cache/mime-types-2.5.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/mime-types-2.5.gem -------------------------------------------------------------------------------- /vendor/cache/mini_portile2-2.1.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/mini_portile2-2.1.0.gem -------------------------------------------------------------------------------- /vendor/cache/minitest-5.6.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/minitest-5.6.1.gem -------------------------------------------------------------------------------- /vendor/cache/mono_logger-1.1.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/mono_logger-1.1.0.gem -------------------------------------------------------------------------------- /vendor/cache/multi_json-1.12.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/multi_json-1.12.0.gem -------------------------------------------------------------------------------- /vendor/cache/multi_xml-0.5.5.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/multi_xml-0.5.5.gem -------------------------------------------------------------------------------- /vendor/cache/multipart-post-2.0.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/multipart-post-2.0.0.gem -------------------------------------------------------------------------------- /vendor/cache/net-scp-1.2.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/net-scp-1.2.1.gem -------------------------------------------------------------------------------- /vendor/cache/net-sftp-2.1.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/net-sftp-2.1.2.gem -------------------------------------------------------------------------------- /vendor/cache/net-ssh-2.9.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/net-ssh-2.9.1.gem -------------------------------------------------------------------------------- /vendor/cache/net-ssh-gateway-1.2.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/net-ssh-gateway-1.2.0.gem -------------------------------------------------------------------------------- /vendor/cache/nokogiri-1.6.8.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/nokogiri-1.6.8.gem -------------------------------------------------------------------------------- /vendor/cache/octokit-3.4.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/octokit-3.4.0.gem -------------------------------------------------------------------------------- /vendor/cache/parser-2.2.2.5.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/parser-2.2.2.5.gem -------------------------------------------------------------------------------- /vendor/cache/pg-0.17.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/pg-0.17.1.gem -------------------------------------------------------------------------------- /vendor/cache/pkg-config-1.1.7.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/pkg-config-1.1.7.gem -------------------------------------------------------------------------------- /vendor/cache/posix-spawn-0.3.8.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/posix-spawn-0.3.8.gem -------------------------------------------------------------------------------- /vendor/cache/powerpack-0.0.9.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/powerpack-0.0.9.gem -------------------------------------------------------------------------------- /vendor/cache/pry-0.9.12.6.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/pry-0.9.12.6.gem -------------------------------------------------------------------------------- /vendor/cache/rack-1.6.4.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/rack-1.6.4.gem -------------------------------------------------------------------------------- /vendor/cache/rack-contrib-1.1.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/rack-contrib-1.1.0.gem -------------------------------------------------------------------------------- /vendor/cache/rack-protection-1.5.3.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/rack-protection-1.5.3.gem -------------------------------------------------------------------------------- /vendor/cache/rack-test-0.6.3.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/rack-test-0.6.3.gem -------------------------------------------------------------------------------- /vendor/cache/rails-4.2.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/rails-4.2.2.gem -------------------------------------------------------------------------------- /vendor/cache/rails-deprecated_sanitizer-1.0.3.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/rails-deprecated_sanitizer-1.0.3.gem -------------------------------------------------------------------------------- /vendor/cache/rails-dom-testing-1.0.6.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/rails-dom-testing-1.0.6.gem -------------------------------------------------------------------------------- /vendor/cache/rails-html-sanitizer-1.0.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/rails-html-sanitizer-1.0.2.gem -------------------------------------------------------------------------------- /vendor/cache/rails_12factor-0.0.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/rails_12factor-0.0.2.gem -------------------------------------------------------------------------------- /vendor/cache/rails_serve_static_assets-0.0.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/rails_serve_static_assets-0.0.2.gem -------------------------------------------------------------------------------- /vendor/cache/rails_stdout_logging-0.0.3.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/rails_stdout_logging-0.0.3.gem -------------------------------------------------------------------------------- /vendor/cache/railties-4.2.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/railties-4.2.2.gem -------------------------------------------------------------------------------- /vendor/cache/rainbow-2.0.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/rainbow-2.0.0.gem -------------------------------------------------------------------------------- /vendor/cache/raindrops-0.13.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/raindrops-0.13.0.gem -------------------------------------------------------------------------------- /vendor/cache/rake-10.4.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/rake-10.4.2.gem -------------------------------------------------------------------------------- /vendor/cache/redis-3.3.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/redis-3.3.0.gem -------------------------------------------------------------------------------- /vendor/cache/redis-namespace-1.5.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/redis-namespace-1.5.2.gem -------------------------------------------------------------------------------- /vendor/cache/resque-1.26.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/resque-1.26.0.gem -------------------------------------------------------------------------------- /vendor/cache/resque-lock-timeout-0.4.4.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/resque-lock-timeout-0.4.4.gem -------------------------------------------------------------------------------- /vendor/cache/rspec-core-2.14.7.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/rspec-core-2.14.7.gem -------------------------------------------------------------------------------- /vendor/cache/rspec-expectations-2.14.5.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/rspec-expectations-2.14.5.gem -------------------------------------------------------------------------------- /vendor/cache/rspec-mocks-2.14.5.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/rspec-mocks-2.14.5.gem -------------------------------------------------------------------------------- /vendor/cache/rspec-rails-2.14.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/rspec-rails-2.14.1.gem -------------------------------------------------------------------------------- /vendor/cache/rubocop-0.26.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/rubocop-0.26.0.gem -------------------------------------------------------------------------------- /vendor/cache/ruby-progressbar-1.5.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/ruby-progressbar-1.5.1.gem -------------------------------------------------------------------------------- /vendor/cache/safe_yaml-1.0.4.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/safe_yaml-1.0.4.gem -------------------------------------------------------------------------------- /vendor/cache/sawyer-0.5.5.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/sawyer-0.5.5.gem -------------------------------------------------------------------------------- /vendor/cache/simplecov-0.7.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/simplecov-0.7.1.gem -------------------------------------------------------------------------------- /vendor/cache/simplecov-html-0.7.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/simplecov-html-0.7.1.gem -------------------------------------------------------------------------------- /vendor/cache/sinatra-1.4.7.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/sinatra-1.4.7.gem -------------------------------------------------------------------------------- /vendor/cache/slack-notifier-1.0.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/slack-notifier-1.0.0.gem -------------------------------------------------------------------------------- /vendor/cache/slop-3.6.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/slop-3.6.0.gem -------------------------------------------------------------------------------- /vendor/cache/sprockets-3.0.3.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/sprockets-3.0.3.gem -------------------------------------------------------------------------------- /vendor/cache/sprockets-rails-2.2.4.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/sprockets-rails-2.2.4.gem -------------------------------------------------------------------------------- /vendor/cache/sqlite3-1.3.10.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/sqlite3-1.3.10.gem -------------------------------------------------------------------------------- /vendor/cache/thor-0.19.1.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/thor-0.19.1.gem -------------------------------------------------------------------------------- /vendor/cache/thread_safe-0.3.5.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/thread_safe-0.3.5.gem -------------------------------------------------------------------------------- /vendor/cache/tilt-2.0.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/tilt-2.0.2.gem -------------------------------------------------------------------------------- /vendor/cache/tzinfo-1.2.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/tzinfo-1.2.2.gem -------------------------------------------------------------------------------- /vendor/cache/unicorn-4.8.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/unicorn-4.8.2.gem -------------------------------------------------------------------------------- /vendor/cache/vegas-0.1.11.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/vegas-0.1.11.gem -------------------------------------------------------------------------------- /vendor/cache/warden-1.2.3.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/warden-1.2.3.gem -------------------------------------------------------------------------------- /vendor/cache/warden-github-1.0.2.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/warden-github-1.0.2.gem -------------------------------------------------------------------------------- /vendor/cache/warden-github-rails-1.1.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/warden-github-rails-1.1.0.gem -------------------------------------------------------------------------------- /vendor/cache/webmock-1.17.3.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/webmock-1.17.3.gem -------------------------------------------------------------------------------- /vendor/cache/yajl-ruby-1.2.0.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/heaven/HEAD/vendor/cache/yajl-ruby-1.2.0.gem --------------------------------------------------------------------------------