fulmar 1.9.0 → 1.9.1
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e53c22af46d2e7151890c776233821f7304b4782
|
|
4
|
+
data.tar.gz: c4c03d2687dce50016503eafabdf5decac714450
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1abba76bc636d9c47f5cb70a2a5b905cd484c53403369eea06413aa6a7f0c3cfc2928d9ee8a7afac75c0fcd3c4628d27a7ac009800035f355ca383e71b13e94d
|
|
7
|
+
data.tar.gz: f01a51efc076f08486967cef80835d7e3457467285c5988f268d1f16ac03fec84c64d403f7057a558a797e919f876cea613a6c8aaa6b54fd5a5fe73915eaa4bc
|
data/.gitignore
CHANGED
|
@@ -18,7 +18,7 @@ module Fulmar
|
|
|
18
18
|
if Dir.exist? "#{data[:path]}/.git"
|
|
19
19
|
shell.run 'git fetch -q', in: data[:path]
|
|
20
20
|
else
|
|
21
|
-
shell.run "git clone #{data[:source]} #{data[:path]} -q"
|
|
21
|
+
shell.run "git clone \"#{data[:source]}\" \"#{data[:path]}\" -q"
|
|
22
22
|
shell.last_error.each do |line|
|
|
23
23
|
puts line unless line.include? 'already exists and is not an empty directory'
|
|
24
24
|
end
|
|
@@ -76,7 +76,9 @@ module Fulmar
|
|
|
76
76
|
config_file.puts "# Automatically generated by fulmar for project #{@config.project.description}"
|
|
77
77
|
config_file.puts "Host #{hostname}"
|
|
78
78
|
CONFIG_MAP.keys.each do |key|
|
|
79
|
-
|
|
79
|
+
unless ssh_config[key].blank?
|
|
80
|
+
config_file.puts " #{CONFIG_MAP[key]} \"#{ssh_config[key].gsub('"', '\\"')}\""
|
|
81
|
+
end
|
|
80
82
|
end
|
|
81
83
|
|
|
82
84
|
config_file.close
|
data/lib/fulmar/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fulmar
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.9.
|
|
4
|
+
version: 1.9.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jonas Siegl
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2017-01-10 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bundler
|
|
@@ -201,7 +201,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
201
201
|
version: '0'
|
|
202
202
|
requirements: []
|
|
203
203
|
rubyforge_project:
|
|
204
|
-
rubygems_version: 2.
|
|
204
|
+
rubygems_version: 2.6.8
|
|
205
205
|
signing_key:
|
|
206
206
|
specification_version: 4
|
|
207
207
|
summary: A deployment task manager.
|