heroku_hatchet 1.2.0 → 1.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: 41fe3c7326911d5c112ba7ef95ef7f25397fb59e
4
- data.tar.gz: eba86db8f7652204a308b910e5d2e01c160b15f4
3
+ metadata.gz: 6494838495fd48c9286d2854cca1a316326b09c4
4
+ data.tar.gz: d54287274ec3208678d4f8799e14891f9169e7a0
5
5
  SHA512:
6
- metadata.gz: 82f41b5be9b220f58b504829044a7da3e38f690af0862a59692ac28cf61e0fc70808a99d6fb7878aaa69007108771dc55362349fdffeec2f1333bf8dbfefa7a2
7
- data.tar.gz: 0f4a2b231c42870ffebbe886c0eaab1f4dd158a824321b7209846302a3a75389a71ed397d16cd7e3e1aa3d58fb46a9059fe2ebcbd5d3b50645d3b067b991b6cf
6
+ metadata.gz: 418375c35f800dd22a22cd12ed614c95f1e9c6221f7116c47dd5cf61cd6da1388df00746f1871f5579c880c1c498175681bb8611ac94daab5f6b4fc06ebfa463
7
+ data.tar.gz: d0cf46cef54024e94158d69273d3dedf4cbd2990897dac18eb01e4e803acc45a498412c20d59685aeb0813f6c55b80fc5e9745a6db7b555b19b98ad2f0ae5561
@@ -1,5 +1,9 @@
1
1
  ## HEAD
2
2
 
3
+ ## 1.2.1
4
+
5
+ - Remove debug puts
6
+
3
7
  ## 1.2.0
4
8
 
5
9
  - Change `App#push` default behavior to be `App#push_with_retry!`
@@ -20,8 +20,6 @@ module Hatchet
20
20
  end
21
21
 
22
22
  def push_without_retry!
23
- puts `pwd`
24
- puts `ls`
25
23
  output = `git push #{git_repo} master 2>&1`
26
24
  if !$?.success?
27
25
  raise FailedDeploy.new(self, "Buildpack: #{@buildpack.inspect}\nRepo: #{git_repo}\n#{output}") unless @allow_failure
@@ -1,3 +1,3 @@
1
1
  module Hatchet
2
- VERSION = "1.2.0"
2
+ VERSION = "1.2.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: heroku_hatchet
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Richard Schneeman