heroku_hatchet 1.3.5 → 1.3.6
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 +4 -4
- data/.travis.yml +1 -6
- data/CHANGELOG.md +4 -0
- data/README.md +6 -1
- data/lib/hatchet/tasks.rb +1 -0
- data/lib/hatchet/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2291088e8746a7ffdab70c8e2b5cab06160a5400
|
4
|
+
data.tar.gz: 77c8796127875ace29eaae8b578aa757ef7f5b1a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
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://
|
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}"
|
data/lib/hatchet/version.rb
CHANGED