heroku_hatchet 2.0.1 → 2.0.2

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: 8596154413de5982e37e4436abde9157a16a617a
4
- data.tar.gz: ad14d6ed42cdff6b0c836a2f5f9542f8f59496a9
3
+ metadata.gz: f446fdc4fd463ebbf8659b563cfd6f2c46c993ab
4
+ data.tar.gz: 203eefcb75b14667780811188f3d35f2a7b82136
5
5
  SHA512:
6
- metadata.gz: 3d0c3568d2d1a2412414037238ec6f9d99d09a09e01aef4e6141a74b37748482d6b40d931a260a2ba3d876d878135f7c7204de74d80595c6a6c28fad5d26c447
7
- data.tar.gz: df24e71f8545d30e4c1bb8ec90d4aa1178b49c1ac298a4215a9330a24d6e027d2eb5eeed058c170f0e2af2da5373cf1b9140c81e6f0e918a491704ea8105d0e4
6
+ metadata.gz: 9733874b3d5c3be14a1e6a60c81dfe6255d32391abfde97c639899b1b5cd7bef4e5a940a2e021a1c6af36cd93d0f1733ab523fc98758e3fc331520cd5f5bbec4
7
+ data.tar.gz: 5bd310be072a4405c6fbd35cf6efb9441e42bd31306b1bf0e7a225bbee4adbf8c44e6883fc29439074a25cfdb05f7b900a1f13611d022449f880c13ee1f038ea
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## HEAD
2
2
 
3
+ ## 2.0.2
4
+
5
+ - Do not require super user access
6
+
3
7
  ## 2.0.1
4
8
 
5
9
  - Use actual email address instead of example
data/README.md CHANGED
@@ -288,8 +288,18 @@ I recommend signing up for a new heroku account for running your tests on travis
288
288
 
289
289
 
290
290
  ```
291
- $ export HEROKU_API_KEY=`heroku auth:token`
292
- $ travis encrypt HEROKU_API_KEY=$HEROKU_API_KEY --add
291
+ $ travis encrypt HEROKU_API_KEY=<token> --add
292
+ ```
293
+
294
+ You'll also need these specified in your travis.yml:
295
+
296
+ ```
297
+ addons:
298
+ apt:
299
+ sources:
300
+ - heroku
301
+ packages:
302
+ - heroku-toolbelt
293
303
  ```
294
304
 
295
305
  ## Extra App Commands
data/lib/hatchet/tasks.rb CHANGED
@@ -26,7 +26,6 @@ EOF
26
26
  "if [ `git config --get user.email` ]; then echo 'already set'; else `git config --global user.email '#{ENV['HEROKU_API_USER']}'`; fi",
27
27
  "if [ `git config --get user.name` ]; then echo 'already set'; else `git config --global user.name 'BuildpackTester'` ; fi",
28
28
  "echo '#{config_ssh}' >> ~/.ssh/config",
29
- "curl --fail --retry 3 --retry-delay 1 --connect-timeout 3 --max-time 30 https://toolbelt.heroku.com/install-ubuntu.sh | sh",
30
29
  "ssh-keygen -f ~/.ssh/id_rsa -t rsa -N ''",
31
30
  "yes | heroku keys:add"
32
31
  ].each do |command|
@@ -1,3 +1,3 @@
1
1
  module Hatchet
2
- VERSION = "2.0.1"
2
+ VERSION = "2.0.2"
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: 2.0.1
4
+ version: 2.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Richard Schneeman