heroku_hatchet 1.1.1 → 1.1.2

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: 5315711673cc47ca589aa39f28e02f0b2d2b56b6
4
- data.tar.gz: 5678646d4511dd25e033a8107344bb871db55fac
3
+ metadata.gz: 4dde8ea97b717ba6247cf43e694d4543c3b0c08f
4
+ data.tar.gz: e7eb1eb15c439855e15d5e01ae9fb2219a44d301
5
5
  SHA512:
6
- metadata.gz: 3401c9359d44dec14f649ceede85815b482a31544aa11c00406f1353cbc8ec125bb76a9a18f9d7b3e46673705749f0febb751d3b550df25a7689596a5e232260
7
- data.tar.gz: 47cba782fcb59d14ae0919e215ee350629b89314f2f6cce1fa256e98b0cd83e91eee95eb9771b3926b2dc981bfe9479b1855bc29d6acf093803a404970ea8d62
6
+ metadata.gz: a1413025868ae273b252935fc3a5110e4a530113471e33de750b6e3390770da5606fe61e74855d83d1e1242c3526b61092fcea34d1585533857ef0558e2e82c9
7
+ data.tar.gz: 162d067cf8fb02e5a5a5ba91824c7d13ed656250b762531243bbd2c98ff18eaceaa3eec751a2e3ad71e978bf51a42642c03fb482151cb0dc9cbceca685c790d7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## HEAD
2
2
 
3
+ ## 1.1.2
4
+
5
+ - Bugfix: test setup on travis now works correctly
6
+
3
7
  ## 1.1.1
4
8
 
5
9
  - Ensure external commands run inside of `bundle_exec` block are run with propper environment variables set.
data/lib/hatchet/tasks.rb CHANGED
@@ -1,16 +1,23 @@
1
1
  require 'rake'
2
2
  require 'rake/testtask'
3
3
 
4
+ config_ssh = <<-RUBY
5
+ Host heroku.com
6
+ StrictHostKeyChecking no
7
+ CheckHostIP no
8
+ UserKnownHostsFile=/dev/null
9
+ Host github.com
10
+ StrictHostKeyChecking no
11
+ RUBY
12
+
4
13
  namespace :hatchet do
5
14
  task :setup_travis do
6
15
  puts "== Setting Up Travis =="
7
16
  ['bundle exec hatchet install',
8
- %Q{echo "\nHost heroku.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config},
9
- %Q{echo "\nHost github.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config},
17
+ "echo '#{config_ssh}' >> ~/.ssh/config",
10
18
  'wget -qO- https://toolbelt.heroku.com/install-ubuntu.sh | sh',
11
- 'ssh-keygen -t rsa -N "" -f ~/.ssh/id_rsa',
12
- 'heroku keys:add',
13
- 'heroku login'
19
+ 'heroku keys:clear',
20
+ 'yes | heroku keys:add'
14
21
  ].each do |command|
15
22
  puts "== Running: #{command}"
16
23
  `#{command}`
@@ -24,4 +31,4 @@ namespace :hatchet do
24
31
  `#{command}`
25
32
  end
26
33
  end
27
- end
34
+ end
@@ -1,3 +1,3 @@
1
1
  module Hatchet
2
- VERSION = "1.1.1"
2
+ VERSION = "1.1.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: 1.1.1
4
+ version: 1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Richard Schneeman