jets 1.1.3 → 1.1.4

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
  SHA256:
3
- metadata.gz: f0e2ca4e1e46c54d0900404bd31e09e0d142a2e1b15452e680a1ca61caec0c11
4
- data.tar.gz: f299c7812a68de607e111195649b948c7099055ebb7db250c351807828ad38ca
3
+ metadata.gz: ce0b14790bc57baa9dfcdf1caf6c4d6f4224326a3664b2ec47d20bd05abd123f
4
+ data.tar.gz: 5964441e10debe6a51e185c02ba32d88a81196713be63d4d136a106510830466
5
5
  SHA512:
6
- metadata.gz: 50812ce230aad0e1fa837152dcf69ad53436772ce2c4339f1b2e868efe182ae9af7bec4c2f5dc8efc9d86ebd2f0857f3bc8c6dc0faedb4822af2b69c9636cea7
7
- data.tar.gz: a34ff0de3463ec1db9f4cab3f5f9372de2211c2efa6eb0888a0c680755605b4d82e8843553e9bfca484cf056046b57b7dc36a5d054aba94a47d6dc1bd2641094
6
+ metadata.gz: 13948762fdf93c03173f85267fdd5f9b268b6aacc8de062633a07b6da89e8046ff350e6e5d3d4fba16f9524265ce32d928221cc7252c59f8cd16f93daa9bc589
7
+ data.tar.gz: '078b9ab98342bdd28126a69e2a363b3cbe01c673987a1e19290aaed451587fbaed2ae48cb3400891d45339bb38ac2e51bf044567a3ef3e997b7765a696c873a6'
@@ -3,6 +3,10 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  This project *loosely tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
5
5
 
6
+ ## [1.1.4]
7
+ - Fully qualify bundle install path, to fix issue when building on CodeBuild. Fixes #80.
8
+ - Merge pull request #81 from adam-harwood/master
9
+
6
10
  ## [1.1.3]
7
11
  - Merge pull request #79 from tongueroo/misc-fixes
8
12
  - fix has_poly? check to account for shared functions
@@ -11,7 +11,7 @@ GIT
11
11
  PATH
12
12
  remote: .
13
13
  specs:
14
- jets (1.1.3)
14
+ jets (1.1.4)
15
15
  actionpack (>= 5.2.1)
16
16
  actionview (>= 5.2.1)
17
17
  activerecord (>= 5.2.1)
@@ -65,14 +65,14 @@ GEM
65
65
  tzinfo (~> 1.1)
66
66
  arel (9.0.0)
67
67
  aws-eventstream (1.0.1)
68
- aws-partitions (1.115.0)
68
+ aws-partitions (1.117.0)
69
69
  aws-sdk-cloudformation (1.13.0)
70
70
  aws-sdk-core (~> 3, >= 3.39.0)
71
71
  aws-sigv4 (~> 1.0)
72
72
  aws-sdk-cloudwatchlogs (1.11.0)
73
73
  aws-sdk-core (~> 3, >= 3.39.0)
74
74
  aws-sigv4 (~> 1.0)
75
- aws-sdk-core (3.39.0)
75
+ aws-sdk-core (3.40.0)
76
76
  aws-eventstream (~> 1.0)
77
77
  aws-partitions (~> 1.0)
78
78
  aws-sigv4 (~> 1.0)
@@ -80,13 +80,13 @@ GEM
80
80
  aws-sdk-dynamodb (1.17.0)
81
81
  aws-sdk-core (~> 3, >= 3.39.0)
82
82
  aws-sigv4 (~> 1.0)
83
- aws-sdk-kms (1.12.0)
83
+ aws-sdk-kms (1.13.0)
84
84
  aws-sdk-core (~> 3, >= 3.39.0)
85
85
  aws-sigv4 (~> 1.0)
86
86
  aws-sdk-lambda (1.15.0)
87
87
  aws-sdk-core (~> 3, >= 3.39.0)
88
88
  aws-sigv4 (~> 1.0)
89
- aws-sdk-s3 (1.25.0)
89
+ aws-sdk-s3 (1.27.0)
90
90
  aws-sdk-core (~> 3, >= 3.39.0)
91
91
  aws-sdk-kms (~> 1)
92
92
  aws-sigv4 (~> 1.0)
@@ -174,4 +174,4 @@ DEPENDENCIES
174
174
  webpacker!
175
175
 
176
176
  BUNDLED WITH
177
- 1.16.3
177
+ 1.17.1
@@ -56,7 +56,7 @@ class Jets::Builders
56
56
  # cd /tmp/jets/demo
57
57
  sh(
58
58
  "cd #{cache_area} && " \
59
- "env BUNDLE_IGNORE_CONFIG=1 bundle install --path bundled/gems --without development test"
59
+ "env BUNDLE_IGNORE_CONFIG=1 bundle install --path #{cache_area}/bundled/gems --without development test"
60
60
  )
61
61
  end
62
62
 
@@ -1,3 +1,3 @@
1
1
  module Jets
2
- VERSION = "1.1.3"
2
+ VERSION = "1.1.4"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jets
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.3
4
+ version: 1.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tung Nguyen
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-11-26 00:00:00.000000000 Z
11
+ date: 2018-11-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: actionpack