├── .gitignore ├── .rspec ├── .ruby-gemset ├── .ruby-version ├── .travis.yml ├── Gemfile ├── Guardfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bosh-workspace.gemspec ├── lib └── bosh │ ├── cli │ └── commands │ │ ├── deployment_patch.rb │ │ ├── prepare.rb │ │ └── project_deployment.rb │ ├── workspace.rb │ └── workspace │ ├── credentials.rb │ ├── deployment_patch.rb │ ├── git_credentials_provider.rb │ ├── helpers │ ├── dns_helper.rb │ ├── git_protocol_helper.rb │ ├── project_deployment_helper.rb │ ├── release_helper.rb │ └── stemcell_helper.rb │ ├── manifest_builder.rb │ ├── merge_tool.rb │ ├── project_deployment.rb │ ├── release.rb │ ├── rspec.rb │ ├── rspec │ ├── manifest_matcher.rb │ └── shared_workspace_examples.rb │ ├── schemas │ ├── credentials.rb │ ├── deployment_patch.rb │ ├── project_deployment.rb │ ├── releases.rb │ └── stemcells.rb │ ├── shell.rb │ ├── stemcell.rb │ ├── stub_file.rb │ ├── tasks.rb │ ├── tasks │ ├── bosh_command_runner.rb │ ├── deployment.rb │ └── workspace.rake │ └── version.rb └── spec ├── assets ├── bin │ ├── spiff │ └── spruce ├── dns │ ├── job-properties.yml │ ├── jobs.yml │ ├── networks-manual.yml │ ├── networks-no-manual.yml │ └── properties.yml ├── empty-manifests-repo │ └── .keep ├── foo-bar-boshrelease-repo.zip ├── foo-boshrelease-repo-new-structure.zip ├── foo-boshrelease-repo-subdir.zip ├── foo-boshrelease-repo-updated.zip ├── foo-boshrelease-repo.zip ├── foo-boshworkspace.zip ├── manifests-repo │ ├── .manifests │ │ └── foo.yml │ ├── deployments │ │ ├── bar.yml │ │ ├── foo.yml │ │ └── foobar.yml │ ├── stubs │ │ ├── foo.yml │ │ └── foobar │ └── templates │ │ └── foo │ │ └── bar.yml ├── submodule-boshrelease-repo.zip ├── supermodule-all-templates-symlinked-boshrelease-repo.zip ├── supermodule-boshrelease-repo.zip └── symlinkreplacement-boshrelease-repo.zip ├── commands ├── deployment_patch_spec.rb ├── prepare_spec.rb └── project_deployment_spec.rb ├── credentials_spec.rb ├── deployment_patch_spec.rb ├── git_credentials_provider_spec.rb ├── helpers ├── dns_helper_spec.rb ├── git_protocol_helper_spec.rb ├── project_deployment_helper_spec.rb ├── release_helper_spec.rb └── stemcell_helper_spec.rb ├── integration └── shared_workspace_examples_spec.rb ├── manifest_builder_spec.rb ├── merge_tool_spec.rb ├── project_deployment_spec.rb ├── release_spec.rb ├── rugged_spec.rb ├── schemas ├── credentials_spec.rb ├── deployment_patch_spec.rb ├── project_deployment_spec.rb ├── releases_spec.rb └── stemcells_spec.rb ├── shell_spec.rb ├── spec_helper.rb ├── stemcell_spec.rb ├── stub_file_spec.rb ├── support └── shared_contexts │ └── rake.rb └── tasks ├── bosh_command_runner_spec.rb ├── deployment_spec.rb └── workspace_task_spec.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | -------------------------------------------------------------------------------- /.ruby-gemset: -------------------------------------------------------------------------------- 1 | bosh-workspace 2 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.2.3 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/Gemfile -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/Rakefile -------------------------------------------------------------------------------- /bosh-workspace.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/bosh-workspace.gemspec -------------------------------------------------------------------------------- /lib/bosh/cli/commands/deployment_patch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/lib/bosh/cli/commands/deployment_patch.rb -------------------------------------------------------------------------------- /lib/bosh/cli/commands/prepare.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/lib/bosh/cli/commands/prepare.rb -------------------------------------------------------------------------------- /lib/bosh/cli/commands/project_deployment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/lib/bosh/cli/commands/project_deployment.rb -------------------------------------------------------------------------------- /lib/bosh/workspace.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/lib/bosh/workspace.rb -------------------------------------------------------------------------------- /lib/bosh/workspace/credentials.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/lib/bosh/workspace/credentials.rb -------------------------------------------------------------------------------- /lib/bosh/workspace/deployment_patch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/lib/bosh/workspace/deployment_patch.rb -------------------------------------------------------------------------------- /lib/bosh/workspace/git_credentials_provider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/lib/bosh/workspace/git_credentials_provider.rb -------------------------------------------------------------------------------- /lib/bosh/workspace/helpers/dns_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/lib/bosh/workspace/helpers/dns_helper.rb -------------------------------------------------------------------------------- /lib/bosh/workspace/helpers/git_protocol_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/lib/bosh/workspace/helpers/git_protocol_helper.rb -------------------------------------------------------------------------------- /lib/bosh/workspace/helpers/project_deployment_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/lib/bosh/workspace/helpers/project_deployment_helper.rb -------------------------------------------------------------------------------- /lib/bosh/workspace/helpers/release_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/lib/bosh/workspace/helpers/release_helper.rb -------------------------------------------------------------------------------- /lib/bosh/workspace/helpers/stemcell_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/lib/bosh/workspace/helpers/stemcell_helper.rb -------------------------------------------------------------------------------- /lib/bosh/workspace/manifest_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/lib/bosh/workspace/manifest_builder.rb -------------------------------------------------------------------------------- /lib/bosh/workspace/merge_tool.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/lib/bosh/workspace/merge_tool.rb -------------------------------------------------------------------------------- /lib/bosh/workspace/project_deployment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/lib/bosh/workspace/project_deployment.rb -------------------------------------------------------------------------------- /lib/bosh/workspace/release.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/lib/bosh/workspace/release.rb -------------------------------------------------------------------------------- /lib/bosh/workspace/rspec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/lib/bosh/workspace/rspec.rb -------------------------------------------------------------------------------- /lib/bosh/workspace/rspec/manifest_matcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/lib/bosh/workspace/rspec/manifest_matcher.rb -------------------------------------------------------------------------------- /lib/bosh/workspace/rspec/shared_workspace_examples.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/lib/bosh/workspace/rspec/shared_workspace_examples.rb -------------------------------------------------------------------------------- /lib/bosh/workspace/schemas/credentials.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/lib/bosh/workspace/schemas/credentials.rb -------------------------------------------------------------------------------- /lib/bosh/workspace/schemas/deployment_patch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/lib/bosh/workspace/schemas/deployment_patch.rb -------------------------------------------------------------------------------- /lib/bosh/workspace/schemas/project_deployment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/lib/bosh/workspace/schemas/project_deployment.rb -------------------------------------------------------------------------------- /lib/bosh/workspace/schemas/releases.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/lib/bosh/workspace/schemas/releases.rb -------------------------------------------------------------------------------- /lib/bosh/workspace/schemas/stemcells.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/lib/bosh/workspace/schemas/stemcells.rb -------------------------------------------------------------------------------- /lib/bosh/workspace/shell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/lib/bosh/workspace/shell.rb -------------------------------------------------------------------------------- /lib/bosh/workspace/stemcell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/lib/bosh/workspace/stemcell.rb -------------------------------------------------------------------------------- /lib/bosh/workspace/stub_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/lib/bosh/workspace/stub_file.rb -------------------------------------------------------------------------------- /lib/bosh/workspace/tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/lib/bosh/workspace/tasks.rb -------------------------------------------------------------------------------- /lib/bosh/workspace/tasks/bosh_command_runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/lib/bosh/workspace/tasks/bosh_command_runner.rb -------------------------------------------------------------------------------- /lib/bosh/workspace/tasks/deployment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/lib/bosh/workspace/tasks/deployment.rb -------------------------------------------------------------------------------- /lib/bosh/workspace/tasks/workspace.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/lib/bosh/workspace/tasks/workspace.rake -------------------------------------------------------------------------------- /lib/bosh/workspace/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/lib/bosh/workspace/version.rb -------------------------------------------------------------------------------- /spec/assets/bin/spiff: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/assets/bin/spruce: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/assets/dns/job-properties.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/assets/dns/job-properties.yml -------------------------------------------------------------------------------- /spec/assets/dns/jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/assets/dns/jobs.yml -------------------------------------------------------------------------------- /spec/assets/dns/networks-manual.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/assets/dns/networks-manual.yml -------------------------------------------------------------------------------- /spec/assets/dns/networks-no-manual.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/assets/dns/networks-no-manual.yml -------------------------------------------------------------------------------- /spec/assets/dns/properties.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/assets/dns/properties.yml -------------------------------------------------------------------------------- /spec/assets/empty-manifests-repo/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/assets/foo-bar-boshrelease-repo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/assets/foo-bar-boshrelease-repo.zip -------------------------------------------------------------------------------- /spec/assets/foo-boshrelease-repo-new-structure.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/assets/foo-boshrelease-repo-new-structure.zip -------------------------------------------------------------------------------- /spec/assets/foo-boshrelease-repo-subdir.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/assets/foo-boshrelease-repo-subdir.zip -------------------------------------------------------------------------------- /spec/assets/foo-boshrelease-repo-updated.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/assets/foo-boshrelease-repo-updated.zip -------------------------------------------------------------------------------- /spec/assets/foo-boshrelease-repo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/assets/foo-boshrelease-repo.zip -------------------------------------------------------------------------------- /spec/assets/foo-boshworkspace.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/assets/foo-boshworkspace.zip -------------------------------------------------------------------------------- /spec/assets/manifests-repo/.manifests/foo.yml: -------------------------------------------------------------------------------- 1 | name: foo -------------------------------------------------------------------------------- /spec/assets/manifests-repo/deployments/bar.yml: -------------------------------------------------------------------------------- 1 | name: bar 2 | -------------------------------------------------------------------------------- /spec/assets/manifests-repo/deployments/foo.yml: -------------------------------------------------------------------------------- 1 | <% ruby_var=42 %> 2 | name: foo 3 | templates: 4 | - foo/bar.yml 5 | meta: {} 6 | -------------------------------------------------------------------------------- /spec/assets/manifests-repo/deployments/foobar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/assets/manifests-repo/deployments/foobar.yml -------------------------------------------------------------------------------- /spec/assets/manifests-repo/stubs/foo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/assets/manifests-repo/stubs/foo.yml -------------------------------------------------------------------------------- /spec/assets/manifests-repo/stubs/foobar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/assets/manifests-repo/stubs/foobar -------------------------------------------------------------------------------- /spec/assets/manifests-repo/templates/foo/bar.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/assets/submodule-boshrelease-repo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/assets/submodule-boshrelease-repo.zip -------------------------------------------------------------------------------- /spec/assets/supermodule-all-templates-symlinked-boshrelease-repo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/assets/supermodule-all-templates-symlinked-boshrelease-repo.zip -------------------------------------------------------------------------------- /spec/assets/supermodule-boshrelease-repo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/assets/supermodule-boshrelease-repo.zip -------------------------------------------------------------------------------- /spec/assets/symlinkreplacement-boshrelease-repo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/assets/symlinkreplacement-boshrelease-repo.zip -------------------------------------------------------------------------------- /spec/commands/deployment_patch_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/commands/deployment_patch_spec.rb -------------------------------------------------------------------------------- /spec/commands/prepare_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/commands/prepare_spec.rb -------------------------------------------------------------------------------- /spec/commands/project_deployment_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/commands/project_deployment_spec.rb -------------------------------------------------------------------------------- /spec/credentials_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/credentials_spec.rb -------------------------------------------------------------------------------- /spec/deployment_patch_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/deployment_patch_spec.rb -------------------------------------------------------------------------------- /spec/git_credentials_provider_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/git_credentials_provider_spec.rb -------------------------------------------------------------------------------- /spec/helpers/dns_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/helpers/dns_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/git_protocol_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/helpers/git_protocol_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/project_deployment_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/helpers/project_deployment_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/release_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/helpers/release_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/stemcell_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/helpers/stemcell_helper_spec.rb -------------------------------------------------------------------------------- /spec/integration/shared_workspace_examples_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/integration/shared_workspace_examples_spec.rb -------------------------------------------------------------------------------- /spec/manifest_builder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/manifest_builder_spec.rb -------------------------------------------------------------------------------- /spec/merge_tool_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/merge_tool_spec.rb -------------------------------------------------------------------------------- /spec/project_deployment_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/project_deployment_spec.rb -------------------------------------------------------------------------------- /spec/release_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/release_spec.rb -------------------------------------------------------------------------------- /spec/rugged_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/rugged_spec.rb -------------------------------------------------------------------------------- /spec/schemas/credentials_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/schemas/credentials_spec.rb -------------------------------------------------------------------------------- /spec/schemas/deployment_patch_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/schemas/deployment_patch_spec.rb -------------------------------------------------------------------------------- /spec/schemas/project_deployment_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/schemas/project_deployment_spec.rb -------------------------------------------------------------------------------- /spec/schemas/releases_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/schemas/releases_spec.rb -------------------------------------------------------------------------------- /spec/schemas/stemcells_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/schemas/stemcells_spec.rb -------------------------------------------------------------------------------- /spec/shell_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/shell_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/stemcell_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/stemcell_spec.rb -------------------------------------------------------------------------------- /spec/stub_file_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/stub_file_spec.rb -------------------------------------------------------------------------------- /spec/support/shared_contexts/rake.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/support/shared_contexts/rake.rb -------------------------------------------------------------------------------- /spec/tasks/bosh_command_runner_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/tasks/bosh_command_runner_spec.rb -------------------------------------------------------------------------------- /spec/tasks/deployment_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/tasks/deployment_spec.rb -------------------------------------------------------------------------------- /spec/tasks/workspace_task_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-attic/bosh-workspace/HEAD/spec/tasks/workspace_task_spec.rb --------------------------------------------------------------------------------