Skip to content

Commit

Permalink
Change dependency version of test-kitchen
Browse files Browse the repository at this point in the history
  • Loading branch information
marcy-terui committed Jan 23, 2015
1 parent a1cbf9b commit 62e68d1
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 13 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.3.1

* Change dependency version of `test-kitchen`

## 0.3.0

* Use docker exec command to transfer the test-kitchen's sandbox
Expand Down
2 changes: 0 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
source 'https://rubygems.org'

gemspec

gem 'test-kitchen', github: 'test-kitchen/test-kitchen', ref: '237efd17dbcafd0c1334134e3f26b050f2ef49d5'
11 changes: 2 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ Therefore, we can test with an environment that has no extra software such as ``

## <a name="requirements"></a> Requirements

- Test-Kitchen (>= 1.3)

- Docker (>= 1.3)
This driver uses ```docker exec``` command.

Expand All @@ -31,15 +33,6 @@ and
bundle install
```

If you want to use the ```kithcen exec``` command, should you put Gemfile like this. (as of 25 Dec, 2014)

```ruby
source 'https://rubygems.org'

gem 'test-kitchen', github: 'test-kitchen/test-kitchen', ref: '237efd17dbcafd0c1334134e3f26b050f2ef49d5'
gem 'kitchen-docker_cli'
```

## <a name="config"></a> Configuration

At first, put your ```.kithcen(.local).yml``` like this.
Expand Down
2 changes: 1 addition & 1 deletion kitchen-docker_cli.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']

spec.add_dependency 'test-kitchen'
spec.add_dependency 'test-kitchen', '>= 1.3'

spec.add_development_dependency 'bundler', '~> 1.3'
spec.add_development_dependency 'rake'
Expand Down
2 changes: 1 addition & 1 deletion lib/kitchen/driver/docker_cli_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ module Kitchen
module Driver

# Version string for DockerCli Kitchen driver
DOCKER_CLI_VERSION = '0.3.0'
DOCKER_CLI_VERSION = '0.3.1'
end
end

0 comments on commit 62e68d1

Please sign in to comment.