cutlass 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
  SHA256:
3
- metadata.gz: caf52d0c928b8bdb62add7cb160bd3d44bc4290782499f8ca63b4af3e4aa0bd8
4
- data.tar.gz: 7f28abdce7de1d37e5b5fb29e2edb89e954b404f0feb62291add8195d31865ad
3
+ metadata.gz: 6108df69ef77042bd071df45a813aafc53d4b48684a6d5348f999da8e641d7ce
4
+ data.tar.gz: a6b71ca0d84404bed8f8ea12f6eebb01ec2664bd72a5b66d7c16eb76a2bd37e9
5
5
  SHA512:
6
- metadata.gz: 80de95412848883761c5c1e7e9aa45c0d55ed03088b53a1b2f9f140fcfba90c70336f52a35a3e3c43a83792ffdfd5df71d33089b70c0a384dba824604bde3f75
7
- data.tar.gz: c705cc0a211304b8d7c7be53b58a31a0bcdfdd8b145cbe71a7a2450fa3f6ee52c55e752136d69e9b29969f684886ed0aab3422af71bdc27b782c60280c62fbd7
6
+ metadata.gz: 05f3f9e730c1b20ee833ac67b0c4a18210d5554e66dbc7e892e30cc6275af24c7c40517d1e543f50fc055b405209acba99b2c6e6a18fa7537618211fb065c69e
7
+ data.tar.gz: 5cc971e2fcf8ff09e815fc46904b23f4f5be348d2ddeb02104a6113715a0ac3ad255cc7332fdf89966d78deb86e7ca5ca732c23da402bca68e8f7d8a824d56e4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## 0.2.1
4
+
5
+ - Fix incorrect conversion of a ProcessStatus into an exit code https://github.com/heroku/cutlass/pull/16
6
+
3
7
  ## 0.2.0
4
8
 
5
9
  - Allow exercising salesforce functions via FunctionQuery (Experimental API) https://github.com/heroku/cutlass/pull/10
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cutlass (0.2.0)
4
+ cutlass (0.2.1)
5
5
  docker-api (>= 2.0)
6
6
 
7
7
  GEM
@@ -63,7 +63,7 @@ GEM
63
63
  rubocop (= 1.12.1)
64
64
  rubocop-performance (= 1.10.1)
65
65
  unicode-display_width (2.0.0)
66
- webmock (3.12.2)
66
+ webmock (3.13.0)
67
67
  addressable (>= 2.3.6)
68
68
  crack (>= 0.3.2)
69
69
  hashdiff (>= 0.4.0, < 2.0.0)
@@ -28,7 +28,7 @@ module Cutlass
28
28
  def initialize(stdout:, stderr:, status:)
29
29
  @stdout = stdout
30
30
  @stderr = stderr
31
- @status = status.to_i
31
+ @status = status.respond_to?(:exitstatus) ? status.exitstatus : status.to_i
32
32
  end
33
33
 
34
34
  # @return [Boolean]
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Cutlass
4
4
  # Version
5
- VERSION = "0.2.0"
5
+ VERSION = "0.2.1"
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cutlass
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
  - schneems
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-05-12 00:00:00.000000000 Z
11
+ date: 2021-05-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: docker-api