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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/hatchet/tasks.rb +13 -6
- 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: 4dde8ea97b717ba6247cf43e694d4543c3b0c08f
|
4
|
+
data.tar.gz: e7eb1eb15c439855e15d5e01ae9fb2219a44d301
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a1413025868ae273b252935fc3a5110e4a530113471e33de750b6e3390770da5606fe61e74855d83d1e1242c3526b61092fcea34d1585533857ef0558e2e82c9
|
7
|
+
data.tar.gz: 162d067cf8fb02e5a5a5ba91824c7d13ed656250b762531243bbd2c98ff18eaceaa3eec751a2e3ad71e978bf51a42642c03fb482151cb0dc9cbceca685c790d7
|
data/CHANGELOG.md
CHANGED
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
|
-
|
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
|
-
'
|
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
|
data/lib/hatchet/version.rb
CHANGED