cide 0.6.2 → 0.6.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 829b102e520c8b64573f2f18e3d4c24498bf3e9c
4
- data.tar.gz: 6dac347d412f2c7b86731b15b378fc78572ff42a
3
+ metadata.gz: c95bbb126fea1de3d9609f587c10c3b680a95d62
4
+ data.tar.gz: 68642299cb38bec976f53eb43391a4648220ea2d
5
5
  SHA512:
6
- metadata.gz: e5c7d5ba21b416d9b620ed6248f04a3c34ef6032a380ef4b3a858bb07b95b230ed846a48489ae28aaf1fcb57aa276abd36e8f7779f5d66800cc8d638bf1759fb
7
- data.tar.gz: 65e7e8906deec51816b8cccaba04572affa896dace62189b5b7a2c006812e09e84de5315765448e803912ae7958122990c8d940b85f6a83608dc96702a7a714d
6
+ metadata.gz: 140c67ec886ce32ec2c37acec604d692219cfa38f6d32a7bf7de2d130c9dd738477699de9c10669b751dc6bdb9565e0d2ab629f992b28483f0e26e4f670a9822
7
+ data.tar.gz: de9b145835d96ae07fdafd4a402a6a6069e299daedf21fce217bd859102344a9c26dc1b40dc5cc1e2e3291340c03f8237ad1dbb3ce97687c6eafcbf410207f50
data/CHANGELOG.md CHANGED
@@ -1,4 +1,9 @@
1
1
 
2
+ 0.6.3 / 2015-02-09
3
+ ==================
4
+
5
+ * FIX: docker version comparison
6
+
2
7
  0.6.2 / 2015-10-27
3
8
  ==================
4
9
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cide (0.6.1)
4
+ cide (0.6.3)
5
5
  thor (~> 0.19)
6
6
  virtus (~> 1.0)
7
7
 
@@ -85,4 +85,4 @@ DEPENDENCIES
85
85
  rubocop
86
86
 
87
87
  BUNDLED WITH
88
- 1.10.5
88
+ 1.10.6
data/README.md CHANGED
@@ -15,7 +15,7 @@ Usage
15
15
 
16
16
  Go to the target project's root and run `cide init` to populate a default
17
17
  `cide.yml`. This file contains all the instruction to build your project with
18
- cide and is [documented here](docs/cide.yml.md).
18
+ cide.
19
19
 
20
20
  Once the file is configured run `cide` to execute the build. All the output
21
21
  will appear in the console.
@@ -37,6 +37,8 @@ before:
37
37
  run: bundle exec rspec
38
38
  ```
39
39
 
40
+ See [the cide.yml man page](man/cide.yml.1.md) for the full documentation.
41
+
40
42
  Features
41
43
  --------
42
44
 
data/cide.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = 'cide'
5
- s.version = '0.6.2'
5
+ s.version = '0.6.3'
6
6
  s.authors = ['zimbatm']
7
7
  s.email = ['zimbatm@zimbatm.com']
8
8
  s.summary = 'Isolated test runner with Docker'
@@ -24,7 +24,7 @@ export_dir:
24
24
 
25
25
  # Linked-containers to run along the tests
26
26
  links:
27
- # - { from: 'redis:2.6', run: 'redis-server' }
27
+ # - { image: 'redis:2.6', run: 'redis-server' }
28
28
 
29
29
  # Sets additional environment variables
30
30
  env: {}
data/lib/cide/docker.rb CHANGED
@@ -56,7 +56,7 @@ module CIDE
56
56
  fail VersionError, 'Unknown docker version'
57
57
  end
58
58
 
59
- if docker_version < '1.5.0'
59
+ if Gem::Version.new(docker_version) < Gem::Version.new('1.5.0')
60
60
  fail VersionError, "Docker version #{$1} too old"
61
61
  end
62
62
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cide
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.2
4
+ version: 0.6.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - zimbatm
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-10-27 00:00:00.000000000 Z
11
+ date: 2016-02-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor
@@ -174,7 +174,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
174
174
  version: '0'
175
175
  requirements: []
176
176
  rubyforge_project:
177
- rubygems_version: 2.4.8
177
+ rubygems_version: 2.4.5.1
178
178
  signing_key:
179
179
  specification_version: 4
180
180
  summary: Isolated test runner with Docker