minke-generator-swift 0.2.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6661f47c066da5d1c051afbeb9521d1cce4d303f
4
- data.tar.gz: e442ee227e5cf94d35e001009ede479f39bd2a0d
3
+ metadata.gz: c4cac329278b2c8efeff51b0431522059e4fe6b2
4
+ data.tar.gz: 67fc351aa1ddbf3720db2960c90f4c3f05a355be
5
5
  SHA512:
6
- metadata.gz: fb8083b41aa166eeb17854f4964c5a6dbe601bed63dc16f8ec7a7db29f319a14abf8ed96c33c547679d1e7fcd6b8d565becce2ab7122120c061cb6943664f52f
7
- data.tar.gz: 39dd2cf6084982b1de096f9ed95019ba89c6f84442bb1194e016041e73f5118a81bdfa339fa26f08e402f960ec391b23c92172319b3d8bc06a852d9d244be8d5
6
+ metadata.gz: d50782cdf47f3ff20c9a649a02800171d21103362f39d51de074d7e7e517bfc218d3d945dd6c13e480760911a9995914adf56bb223dad9a9620903628c995def
7
+ data.tar.gz: 65edd7acf2325007853047fd52e5715d422713840a7365b23adf6662c233e0f8d90ced58a0a23c00f0bb44d7e9662288665e5f5f8feee2f4503f8095e2c982f7
@@ -25,23 +25,21 @@ build:
25
25
  from: './swagger_spec/swagger.yml'
26
26
  to: './dockerfile/<%= application_name %>/swagger_spec'
27
27
  run:
28
- pre:
29
- consul_loader:
30
- config_file: './consul_keys.yml'
31
- url:
32
- address: consul
33
- port: 8500
34
- type: bridge
28
+ consul_loader:
29
+ config_file: './consul_keys.yml'
30
+ url:
31
+ address: consul
32
+ port: 8500
33
+ type: bridge
35
34
  cucumber:
36
- pre:
37
- consul_loader:
38
- config_file: './consul_keys.yml'
39
- url:
40
- address: consul
41
- port: 8500
42
- type: bridge
43
- health_check:
44
- address: <%= application_name %>
45
- port: 8090
46
- path: /v1/health
35
+ consul_loader:
36
+ config_file: './consul_keys.yml'
37
+ url:
38
+ address: consul
39
+ port: 8500
47
40
  type: bridge
41
+ health_check:
42
+ address: <%= application_name %>
43
+ port: 8090
44
+ path: /v1/health
45
+ type: bridge
@@ -8,16 +8,7 @@ services:
8
8
  environment:
9
9
  - "CONSUL_URI=consul:8500"
10
10
  links:
11
- - consul:consul
12
11
  - statsd:statsd
13
- consul:
14
- image: progrium/consul
15
- ports:
16
- - "::8400"
17
- - "::8500"
18
- - "::53/udp"
19
- hostname: node1
20
- command: "-server -bootstrap -ui-dir /ui"
21
12
  statsd:
22
13
  image: 'hopsoft/graphite-statsd:latest'
23
14
  ports:
@@ -26,8 +17,6 @@ services:
26
17
  - "8125/udp"
27
18
  registrator:
28
19
  image: 'gliderlabs/registrator:latest'
29
- links:
30
- - consul:consul
31
20
  command: '-internal -tags=dev consul://consul:8500'
32
21
  volumes:
33
22
  - '/var/run/docker.sock:/tmp/docker.sock'
@@ -1,14 +1,6 @@
1
1
  version: '2'
2
2
 
3
3
  services:
4
- consul:
5
- image: progrium/consul
6
- ports:
7
- - "9400:8400"
8
- - "9500:8500"
9
- - "9600:53/udp"
10
- hostname: node1
11
- command: "-server -bootstrap -ui-dir /ui"
12
4
  statsd:
13
5
  image: 'hopsoft/graphite-statsd:latest'
14
6
  ports:
@@ -16,8 +8,6 @@ services:
16
8
  - "8125:8125/udp"
17
9
  registrator:
18
10
  image: 'gliderlabs/registrator:latest'
19
- links:
20
- - consul:consul
21
11
  command: '-internal -tags=dev consul://consul:8500'
22
12
  volumes:
23
13
  - '/var/run/docker.sock:/tmp/docker.sock'
@@ -29,7 +29,7 @@ public class HealthHandlerTests: XCTestCase {
29
29
  }
30
30
 
31
31
  extension HealthHandlerTests {
32
- static var allTests: [(String, HealthHandlerTests -> () throws -> Void)] {
32
+ static var allTests: [(String, (HealthHandlerTests) -> () throws -> Void)] {
33
33
  return [
34
34
  ("testReturnsHTTPStatusOK", testReturnsHTTPStatusOK),
35
35
  ("testReturnsValidResponse", testReturnsValidResponse)
@@ -15,7 +15,7 @@ public class HealthHandlerResponseTests: XCTestCase {
15
15
  }
16
16
 
17
17
  extension HealthHandlerResponseTests {
18
- static var allTests: [(String, HealthHandlerResponseTests -> () throws -> Void)] {
18
+ static var allTests: [(String, (HealthHandlerResponseTests) -> () throws -> Void)] {
19
19
  return [
20
20
  ("testSerializesObject", testSerializesObject)
21
21
  ]
@@ -1,7 +1,7 @@
1
1
  module Minke
2
2
  module Generators
3
3
  module Swift
4
- VERSION = "0.2.0"
4
+ VERSION = "0.2.1"
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: minke-generator-swift
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nic Jackson
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-07-19 00:00:00.000000000 Z
11
+ date: 2016-07-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler