├── .editorconfig ├── .gitignore ├── .rspec ├── Gemfile ├── LICENSE ├── bin └── multi_ruby_rspec ├── changelog.md ├── doc ├── config │ ├── file-permissions.md │ ├── log-files.md │ └── task-definitions.md ├── getting-started.md ├── strategies.md └── strategies │ ├── base.md │ ├── branches.md │ └── releases.md ├── lib ├── statistrano.rb └── statistrano │ ├── config.rb │ ├── config │ ├── configurable.rb │ └── rake_task_with_context_creation.rb │ ├── deployment.rb │ ├── deployment │ ├── log_file.rb │ ├── manifest.rb │ ├── rake_tasks.rb │ ├── registerable.rb │ ├── releaser.rb │ ├── releaser │ │ ├── revisions.rb │ │ └── single.rb │ ├── strategy.rb │ └── strategy │ │ ├── base.rb │ │ ├── branches.rb │ │ ├── branches │ │ ├── index.rb │ │ ├── index │ │ │ └── template.html.erb │ │ └── release.rb │ │ ├── check_git.rb │ │ ├── invoke_tasks.rb │ │ └── releases.rb │ ├── log.rb │ ├── log │ └── default_logger.rb │ ├── remote.rb │ ├── remote │ └── file.rb │ ├── shell.rb │ ├── util.rb │ ├── util │ └── file_permissions.rb │ └── version.rb ├── readme.md ├── spec ├── fixtures │ ├── base │ │ └── source │ │ │ └── index.html │ ├── error_on_build │ │ ├── Rakefile │ │ └── source │ │ │ └── index.html │ └── releases-deployed │ │ └── deployment │ │ ├── target01 │ │ ├── current │ │ ├── manifest.json │ │ └── releases │ │ │ ├── 1372030000 │ │ │ └── index.html │ │ │ └── 1372040000 │ │ │ └── index.html │ │ ├── target02 │ │ ├── current │ │ ├── manifest.json │ │ └── releases │ │ │ ├── 1372030000 │ │ │ └── index.html │ │ │ └── 1372040000 │ │ │ └── index.html │ │ └── target03 │ │ ├── current │ │ ├── manifest.json │ │ └── releases │ │ ├── 1372030000 │ │ └── index.html │ │ └── 1372040000 │ │ └── index.html ├── integration_tests │ ├── base_integration_spec.rb │ ├── branches_integration_spec.rb │ └── releases │ │ ├── deploy_integration_spec.rb │ │ ├── list_releases_integration_spec.rb │ │ ├── prune_releases_integration_spec.rb │ │ └── rollback_release_integration_spec.rb ├── lib │ ├── statistrano │ │ ├── config │ │ │ ├── configurable_spec.rb │ │ │ └── rake_task_with_context_creation_spec.rb │ │ ├── config_spec.rb │ │ ├── deployment │ │ │ ├── log_file_spec.rb │ │ │ ├── manifest_spec.rb │ │ │ ├── rake_tasks_spec.rb │ │ │ ├── registerable_spec.rb │ │ │ ├── releaser │ │ │ │ ├── revisions_spec.rb │ │ │ │ └── single_spec.rb │ │ │ ├── strategy │ │ │ │ ├── base_spec.rb │ │ │ │ ├── branches_spec.rb │ │ │ │ ├── check_git_spec.rb │ │ │ │ ├── invoke_tasks_spec.rb │ │ │ │ └── releases_spec.rb │ │ │ └── strategy_spec.rb │ │ ├── deployment_spec.rb │ │ ├── log │ │ │ └── default_logger_spec.rb │ │ ├── log_spec.rb │ │ ├── remote │ │ │ └── file_spec.rb │ │ ├── remote_spec.rb │ │ ├── util │ │ │ └── file_permissions_spec.rb │ │ └── util_spec.rb │ └── statistrano_spec.rb ├── spec_helper.rb └── support │ └── given.rb └── statistrano.gemspec /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color --format 'documentation' -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/LICENSE -------------------------------------------------------------------------------- /bin/multi_ruby_rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/bin/multi_ruby_rspec -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/changelog.md -------------------------------------------------------------------------------- /doc/config/file-permissions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/doc/config/file-permissions.md -------------------------------------------------------------------------------- /doc/config/log-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/doc/config/log-files.md -------------------------------------------------------------------------------- /doc/config/task-definitions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/doc/config/task-definitions.md -------------------------------------------------------------------------------- /doc/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/doc/getting-started.md -------------------------------------------------------------------------------- /doc/strategies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/doc/strategies.md -------------------------------------------------------------------------------- /doc/strategies/base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/doc/strategies/base.md -------------------------------------------------------------------------------- /doc/strategies/branches.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/doc/strategies/branches.md -------------------------------------------------------------------------------- /doc/strategies/releases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/doc/strategies/releases.md -------------------------------------------------------------------------------- /lib/statistrano.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/lib/statistrano.rb -------------------------------------------------------------------------------- /lib/statistrano/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/lib/statistrano/config.rb -------------------------------------------------------------------------------- /lib/statistrano/config/configurable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/lib/statistrano/config/configurable.rb -------------------------------------------------------------------------------- /lib/statistrano/config/rake_task_with_context_creation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/lib/statistrano/config/rake_task_with_context_creation.rb -------------------------------------------------------------------------------- /lib/statistrano/deployment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/lib/statistrano/deployment.rb -------------------------------------------------------------------------------- /lib/statistrano/deployment/log_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/lib/statistrano/deployment/log_file.rb -------------------------------------------------------------------------------- /lib/statistrano/deployment/manifest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/lib/statistrano/deployment/manifest.rb -------------------------------------------------------------------------------- /lib/statistrano/deployment/rake_tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/lib/statistrano/deployment/rake_tasks.rb -------------------------------------------------------------------------------- /lib/statistrano/deployment/registerable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/lib/statistrano/deployment/registerable.rb -------------------------------------------------------------------------------- /lib/statistrano/deployment/releaser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/lib/statistrano/deployment/releaser.rb -------------------------------------------------------------------------------- /lib/statistrano/deployment/releaser/revisions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/lib/statistrano/deployment/releaser/revisions.rb -------------------------------------------------------------------------------- /lib/statistrano/deployment/releaser/single.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/lib/statistrano/deployment/releaser/single.rb -------------------------------------------------------------------------------- /lib/statistrano/deployment/strategy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/lib/statistrano/deployment/strategy.rb -------------------------------------------------------------------------------- /lib/statistrano/deployment/strategy/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/lib/statistrano/deployment/strategy/base.rb -------------------------------------------------------------------------------- /lib/statistrano/deployment/strategy/branches.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/lib/statistrano/deployment/strategy/branches.rb -------------------------------------------------------------------------------- /lib/statistrano/deployment/strategy/branches/index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/lib/statistrano/deployment/strategy/branches/index.rb -------------------------------------------------------------------------------- /lib/statistrano/deployment/strategy/branches/index/template.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/lib/statistrano/deployment/strategy/branches/index/template.html.erb -------------------------------------------------------------------------------- /lib/statistrano/deployment/strategy/branches/release.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/lib/statistrano/deployment/strategy/branches/release.rb -------------------------------------------------------------------------------- /lib/statistrano/deployment/strategy/check_git.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/lib/statistrano/deployment/strategy/check_git.rb -------------------------------------------------------------------------------- /lib/statistrano/deployment/strategy/invoke_tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/lib/statistrano/deployment/strategy/invoke_tasks.rb -------------------------------------------------------------------------------- /lib/statistrano/deployment/strategy/releases.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/lib/statistrano/deployment/strategy/releases.rb -------------------------------------------------------------------------------- /lib/statistrano/log.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/lib/statistrano/log.rb -------------------------------------------------------------------------------- /lib/statistrano/log/default_logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/lib/statistrano/log/default_logger.rb -------------------------------------------------------------------------------- /lib/statistrano/remote.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/lib/statistrano/remote.rb -------------------------------------------------------------------------------- /lib/statistrano/remote/file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/lib/statistrano/remote/file.rb -------------------------------------------------------------------------------- /lib/statistrano/shell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/lib/statistrano/shell.rb -------------------------------------------------------------------------------- /lib/statistrano/util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/lib/statistrano/util.rb -------------------------------------------------------------------------------- /lib/statistrano/util/file_permissions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/lib/statistrano/util/file_permissions.rb -------------------------------------------------------------------------------- /lib/statistrano/version.rb: -------------------------------------------------------------------------------- 1 | module Statistrano 2 | VERSION = "1.3.0" 3 | end 4 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/readme.md -------------------------------------------------------------------------------- /spec/fixtures/base/source/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/spec/fixtures/base/source/index.html -------------------------------------------------------------------------------- /spec/fixtures/error_on_build/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/spec/fixtures/error_on_build/Rakefile -------------------------------------------------------------------------------- /spec/fixtures/error_on_build/source/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/spec/fixtures/error_on_build/source/index.html -------------------------------------------------------------------------------- /spec/fixtures/releases-deployed/deployment/target01/current: -------------------------------------------------------------------------------- 1 | /Users/stevensloan/code/statistrano/tmp/deployment/target01/releases/1372040000 -------------------------------------------------------------------------------- /spec/fixtures/releases-deployed/deployment/target01/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/spec/fixtures/releases-deployed/deployment/target01/manifest.json -------------------------------------------------------------------------------- /spec/fixtures/releases-deployed/deployment/target01/releases/1372030000/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/spec/fixtures/releases-deployed/deployment/target01/releases/1372030000/index.html -------------------------------------------------------------------------------- /spec/fixtures/releases-deployed/deployment/target01/releases/1372040000/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/spec/fixtures/releases-deployed/deployment/target01/releases/1372040000/index.html -------------------------------------------------------------------------------- /spec/fixtures/releases-deployed/deployment/target02/current: -------------------------------------------------------------------------------- 1 | /Users/stevensloan/code/statistrano/tmp/deployment/target02/releases/1372040000 -------------------------------------------------------------------------------- /spec/fixtures/releases-deployed/deployment/target02/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/spec/fixtures/releases-deployed/deployment/target02/manifest.json -------------------------------------------------------------------------------- /spec/fixtures/releases-deployed/deployment/target02/releases/1372030000/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/spec/fixtures/releases-deployed/deployment/target02/releases/1372030000/index.html -------------------------------------------------------------------------------- /spec/fixtures/releases-deployed/deployment/target02/releases/1372040000/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/spec/fixtures/releases-deployed/deployment/target02/releases/1372040000/index.html -------------------------------------------------------------------------------- /spec/fixtures/releases-deployed/deployment/target03/current: -------------------------------------------------------------------------------- 1 | /Users/stevensloan/code/statistrano/tmp/deployment/target03/releases/1372040000 -------------------------------------------------------------------------------- /spec/fixtures/releases-deployed/deployment/target03/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/spec/fixtures/releases-deployed/deployment/target03/manifest.json -------------------------------------------------------------------------------- /spec/fixtures/releases-deployed/deployment/target03/releases/1372030000/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/spec/fixtures/releases-deployed/deployment/target03/releases/1372030000/index.html -------------------------------------------------------------------------------- /spec/fixtures/releases-deployed/deployment/target03/releases/1372040000/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/spec/fixtures/releases-deployed/deployment/target03/releases/1372040000/index.html -------------------------------------------------------------------------------- /spec/integration_tests/base_integration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/spec/integration_tests/base_integration_spec.rb -------------------------------------------------------------------------------- /spec/integration_tests/branches_integration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/spec/integration_tests/branches_integration_spec.rb -------------------------------------------------------------------------------- /spec/integration_tests/releases/deploy_integration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/spec/integration_tests/releases/deploy_integration_spec.rb -------------------------------------------------------------------------------- /spec/integration_tests/releases/list_releases_integration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/spec/integration_tests/releases/list_releases_integration_spec.rb -------------------------------------------------------------------------------- /spec/integration_tests/releases/prune_releases_integration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/spec/integration_tests/releases/prune_releases_integration_spec.rb -------------------------------------------------------------------------------- /spec/integration_tests/releases/rollback_release_integration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/spec/integration_tests/releases/rollback_release_integration_spec.rb -------------------------------------------------------------------------------- /spec/lib/statistrano/config/configurable_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/spec/lib/statistrano/config/configurable_spec.rb -------------------------------------------------------------------------------- /spec/lib/statistrano/config/rake_task_with_context_creation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/spec/lib/statistrano/config/rake_task_with_context_creation_spec.rb -------------------------------------------------------------------------------- /spec/lib/statistrano/config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/spec/lib/statistrano/config_spec.rb -------------------------------------------------------------------------------- /spec/lib/statistrano/deployment/log_file_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/spec/lib/statistrano/deployment/log_file_spec.rb -------------------------------------------------------------------------------- /spec/lib/statistrano/deployment/manifest_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/spec/lib/statistrano/deployment/manifest_spec.rb -------------------------------------------------------------------------------- /spec/lib/statistrano/deployment/rake_tasks_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/spec/lib/statistrano/deployment/rake_tasks_spec.rb -------------------------------------------------------------------------------- /spec/lib/statistrano/deployment/registerable_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/spec/lib/statistrano/deployment/registerable_spec.rb -------------------------------------------------------------------------------- /spec/lib/statistrano/deployment/releaser/revisions_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/spec/lib/statistrano/deployment/releaser/revisions_spec.rb -------------------------------------------------------------------------------- /spec/lib/statistrano/deployment/releaser/single_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/spec/lib/statistrano/deployment/releaser/single_spec.rb -------------------------------------------------------------------------------- /spec/lib/statistrano/deployment/strategy/base_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/spec/lib/statistrano/deployment/strategy/base_spec.rb -------------------------------------------------------------------------------- /spec/lib/statistrano/deployment/strategy/branches_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/spec/lib/statistrano/deployment/strategy/branches_spec.rb -------------------------------------------------------------------------------- /spec/lib/statistrano/deployment/strategy/check_git_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/spec/lib/statistrano/deployment/strategy/check_git_spec.rb -------------------------------------------------------------------------------- /spec/lib/statistrano/deployment/strategy/invoke_tasks_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/spec/lib/statistrano/deployment/strategy/invoke_tasks_spec.rb -------------------------------------------------------------------------------- /spec/lib/statistrano/deployment/strategy/releases_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/spec/lib/statistrano/deployment/strategy/releases_spec.rb -------------------------------------------------------------------------------- /spec/lib/statistrano/deployment/strategy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/spec/lib/statistrano/deployment/strategy_spec.rb -------------------------------------------------------------------------------- /spec/lib/statistrano/deployment_spec.rb: -------------------------------------------------------------------------------- 1 | require 'spec_helper' 2 | 3 | describe Statistrano::Deployment do 4 | end 5 | -------------------------------------------------------------------------------- /spec/lib/statistrano/log/default_logger_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/spec/lib/statistrano/log/default_logger_spec.rb -------------------------------------------------------------------------------- /spec/lib/statistrano/log_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/spec/lib/statistrano/log_spec.rb -------------------------------------------------------------------------------- /spec/lib/statistrano/remote/file_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/spec/lib/statistrano/remote/file_spec.rb -------------------------------------------------------------------------------- /spec/lib/statistrano/remote_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/spec/lib/statistrano/remote_spec.rb -------------------------------------------------------------------------------- /spec/lib/statistrano/util/file_permissions_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/spec/lib/statistrano/util/file_permissions_spec.rb -------------------------------------------------------------------------------- /spec/lib/statistrano/util_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/spec/lib/statistrano/util_spec.rb -------------------------------------------------------------------------------- /spec/lib/statistrano_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/spec/lib/statistrano_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/given.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/spec/support/given.rb -------------------------------------------------------------------------------- /statistrano.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailchimp/statistrano/HEAD/statistrano.gemspec --------------------------------------------------------------------------------