cutlass 0.1.0 → 0.1.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: 4e4919b3ae4b9ca86167db61346a78a53b2502c0405b1e0d0f2e9b0568f29453
4
- data.tar.gz: 6b69081ae0e60fafe6ae5a5e06af8f2f35aef1e4a425af6bfc4a6231fc71217b
3
+ metadata.gz: 37d5a2eca394ec89a59906c1c5146b73596912198f8eea6e8cc9f97604512907
4
+ data.tar.gz: 46f89fb2766576f84958aa163de11d9fe661829641a9b2c2f814b1aa9b74271d
5
5
  SHA512:
6
- metadata.gz: fe65cc9cf7765ca5b4229b62e0003c783cda266a8fb0f684ed7889c4e4284820d2839781b3dab6f8c57a69d07c73b097817180bfc3dd332206a33b1a0ec3b585
7
- data.tar.gz: be0f8a81aa6a6e728c78b009b73bb42a57ff0fe406c3de89e12ce988a57e40fbc420abfc93c44089b2f036d575595bc4419dbd40ceef8f993f11e9d48fb5fcbd
6
+ metadata.gz: 634836ec72d9c6e0dd3acbd04c4b9dbcbb678ebfa9245ed9f5b1118096293e574b6e603e748575b02c85fc4d7a7ad81c805f5b6566d66d3bbdc144725cca8e04
7
+ data.tar.gz: 31f373061f0a75ef9efa2eaa2d332f7aa98b856ab7408070bfcb37302f7e38d459b1b96a13566d44ef0ca2c9d3c7b390de77cf6f0453b6b09e90502e0e579e0f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## 0.1.1
4
+
5
+ - Fix App#pack_build with no block https://github.com/heroku/cutlass/pull/3
6
+
3
7
  ## [0.1.0] - 2021-03-29
4
8
 
5
9
  - Initial release
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cutlass (0.1.0)
4
+ cutlass (0.1.1)
5
5
  docker-api (>= 2.0)
6
6
 
7
7
  GEM
@@ -13,7 +13,7 @@ GEM
13
13
  docker-api (2.1.0)
14
14
  excon (>= 0.47.0)
15
15
  multi_json
16
- excon (0.79.0)
16
+ excon (0.80.1)
17
17
  multi_json (1.15.0)
18
18
  parallel (1.20.1)
19
19
  parallel_split_test (0.9.1)
@@ -38,7 +38,7 @@ GEM
38
38
  diff-lcs (>= 1.2.0, < 2.0)
39
39
  rspec-support (~> 3.10.0)
40
40
  rspec-support (3.10.2)
41
- rubocop (1.11.0)
41
+ rubocop (1.12.1)
42
42
  parallel (~> 1.10)
43
43
  parser (>= 3.0.0.0)
44
44
  rainbow (>= 2.2.2, < 4.0)
@@ -53,8 +53,8 @@ GEM
53
53
  rubocop (>= 0.90.0, < 2.0)
54
54
  rubocop-ast (>= 0.4.0)
55
55
  ruby-progressbar (1.11.0)
56
- standard (1.0.4)
57
- rubocop (= 1.11.0)
56
+ standard (1.0.5)
57
+ rubocop (= 1.12.1)
58
58
  rubocop-performance (= 1.10.1)
59
59
  unicode-display_width (2.0.0)
60
60
  yard (0.9.26)
@@ -74,4 +74,4 @@ DEPENDENCIES
74
74
  yard
75
75
 
76
76
  BUNDLED WITH
77
- 2.1.4
77
+ 2.2.15
data/README.md CHANGED
@@ -33,7 +33,7 @@ Cutlass.config do |config|
33
33
  config.default_builder = "heroku/buildpacks:18"
34
34
 
35
35
  # Where do your test fixtures live?
36
- config.default_repos_dir = [File.join(__dir__, "..", "repos", "ruby_apps")]
36
+ config.default_repo_dirs = [File.join(__dir__, "..", "repos", "ruby_apps")]
37
37
 
38
38
  # Where does your buildpack live?
39
39
  # Can be a directory or a Cutlass:LocalBuildpack instance
data/lib/cutlass/app.rb CHANGED
@@ -110,7 +110,9 @@ module Cutlass
110
110
  on_teardown { build.teardown }
111
111
 
112
112
  @builds << build
113
- yield build.call
113
+ build.call
114
+
115
+ yield build if block_given?
114
116
  end
115
117
 
116
118
  def transaction
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Cutlass
4
4
  # Version
5
- VERSION = "0.1.0"
5
+ VERSION = "0.1.1"
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cutlass
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - schneems