heroku_hatchet 1.3.5 → 1.3.6

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
  SHA1:
3
- metadata.gz: f7c988335800a9dca89f7a076e3ce6cfdac19d83
4
- data.tar.gz: d60e3963f8d0fdb5e9093de065fb0febb76e18c5
3
+ metadata.gz: 2291088e8746a7ffdab70c8e2b5cab06160a5400
4
+ data.tar.gz: 77c8796127875ace29eaae8b578aa757ef7f5b1a
5
5
  SHA512:
6
- metadata.gz: 329323e1be9617e21c2a23ca6ac0755a7bbf31645bfe0081a8d27ba9936eb328f3a2444b6a650efcd39e0924cfbf7fd5de62fe82eb213764582edf2cb33ab084
7
- data.tar.gz: 8bef99fdd2e069e5d81f401a0dc20b790da68fff8ee269568ec1dc05e4e25bfc5d6165fe8114bf4821bc45b48fcd123f680d45c7010e49ca31e1c4d0060cca9b
6
+ metadata.gz: 0a2b6af230025b731762ddb7399fe00e2d98513735d1cb47dbe994127aa433db38dea6b28db301523fd4f3d2cd25e2b46178927ed118d29b8d8fbeea81a3d388
7
+ data.tar.gz: fddc091cbf0c2adb2c7343dde772f218d570be85f77fd0ead7d3bd55b63151de640cbbfe6ba0b2f2508a360503bd17c7894b59ad162217b70f4c4739b6349893
data/.travis.yml CHANGED
@@ -1,16 +1,11 @@
1
- ---
2
1
  language: ruby
3
2
  rvm:
4
3
  - 2.0.0
5
4
  before_script: bundle exec rake hatchet:setup_travis
6
5
  script: bundle exec parallel_test test/hatchet -n 9
7
6
  after_script: bundle exec rake hatchet:teardown_travis
8
-
9
7
  env:
10
8
  global:
11
9
  - HATCHET_RETRIES=3
12
10
  - HATCHET_BUILDPACK_BRANCH=master
13
- - secure: |-
14
- SfUgPagZILPjm4rjkYlEck76PUE47dimpNZgUtUf7wTAbe6EE83QmnRl6uDT
15
- eSdxuY9uNFoTwNLC0J+mRiDAJtAQxBsst8wFoc3diK2o8Ojnor5yd3cxddBv
16
- uvJK6optVPzDveg7rjC7zsELzWYvzWW9enZ6gr8BY/cIPIWTXMw=
11
+ - secure: QP6PJWH/0loXYyeecwpg47ydV3cWFM/7+kQ3qnB37YB8d1VeADbi5+38Lv3PUVayKT52j1CELRfVPSjexlvGElqk4tvZm/wjN2utvUp6U2WuKuP2UloHXBtK/7DsFe2ZEdG8UWmFx+bEUElwpOY2pVcWZOc83rXWI/G1mJNvbK0=
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## HEAD
2
2
 
3
+ ## 1.3.6
4
+
5
+ - Re-push of 1.3.5 with actual commits.
6
+
3
7
  ## 1.3.5
4
8
 
5
9
  - Ensure travis box has an SSH key
data/README.md CHANGED
@@ -257,9 +257,14 @@ For reference see the `.travis.yml` from [hatchet](https://github.com/heroku/hat
257
257
  before_script: bundle exec rake hatchet:setup_travis
258
258
  ```
259
259
 
260
- I recommend signing up for a new heroku account for running your tests on travis, otherwise you will quickly excede your API limit. Once you have the new api token you can use this technique to [securely send travis the data](http://about.travis-ci.org/docs/user/build-configuration/#Secure-environment-variables).
260
+ I recommend signing up for a new heroku account for running your tests on travis, otherwise you will quickly excede your API limit. Once you have the new api token you can use this technique to [securely send travis the data](http://docs.travis-ci.com/user/environment-variables/#Secure-Variables).
261
261
 
262
262
 
263
+ ```
264
+ $ export HEROKU_API_KEY=`heroku auth:token`
265
+ $ travis encrypt HEROKU_API_KEY=$HEROKU_API_KEY --add
266
+ ```
267
+
263
268
  ## Extra App Commands
264
269
 
265
270
  ```
data/lib/hatchet/tasks.rb CHANGED
@@ -17,6 +17,7 @@ namespace :hatchet do
17
17
  "if [ `git config --get user.name` ]; then echo 'already set'; else `git config --global user.name 'BuildpackTester'` ; fi",
18
18
  "echo '#{config_ssh}' >> ~/.ssh/config",
19
19
  "curl --fail --retry 3 --retry-delay 1 --connect-timeout 3 --max-time 30 https://toolbelt.heroku.com/install-ubuntu.sh | sh",
20
+ "ssh-keygen -f ~/.ssh/id_rsa -t rsa -N ''",
20
21
  "yes | heroku keys:add"
21
22
  ].each do |command|
22
23
  puts "== Running: #{command}"
@@ -1,3 +1,3 @@
1
1
  module Hatchet
2
- VERSION = "1.3.5"
2
+ VERSION = "1.3.6"
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.3.5
4
+ version: 1.3.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Richard Schneeman