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: f599fdd5cd498d2ae129b6959f7b6dddd3a38f09
4
- data.tar.gz: d0849be7471a29e4ba036a1c653bffffc899c293
3
+ metadata.gz: e53c22af46d2e7151890c776233821f7304b4782
4
+ data.tar.gz: c4c03d2687dce50016503eafabdf5decac714450
5
5
  SHA512:
6
- metadata.gz: 7f7c69ba420a67c6cf7f96d7ddd8b3551d38f9cef93269d6d6aecc675afb9233af6d2a8d1de4e37fb799125850a8e1c6669f09fb44f51db9095358b6a982dc18
7
- data.tar.gz: dcd40a61cc945fc4bfc01b2b2161e236724cdb8d101d674eca08466c35259929f5f5b5bcd6083d0abc374e506be589ba00e27b8ab27cdda41ca8568982302263
6
+ metadata.gz: 1abba76bc636d9c47f5cb70a2a5b905cd484c53403369eea06413aa6a7f0c3cfc2928d9ee8a7afac75c0fcd3c4628d27a7ac009800035f355ca383e71b13e94d
7
+ data.tar.gz: f01a51efc076f08486967cef80835d7e3457467285c5988f268d1f16ac03fec84c64d403f7057a558a797e919f876cea613a6c8aaa6b54fd5a5fe73915eaa4bc
data/.gitignore CHANGED
@@ -14,3 +14,7 @@
14
14
  mkmf.log
15
15
  /.idea/
16
16
  *.gem
17
+ /Vagrantfile
18
+ /.vagrant
19
+ /vendor
20
+ /test/deployment
@@ -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
- config_file.puts " #{CONFIG_MAP[key]} #{ssh_config[key]}" unless ssh_config[key].blank?
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
@@ -1,4 +1,4 @@
1
1
  # Provides a global version number
2
2
  module Fulmar
3
- VERSION = '1.9.0'
3
+ VERSION = '1.9.1'
4
4
  end
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.0
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: 2016-11-10 00:00:00.000000000 Z
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.5.1
204
+ rubygems_version: 2.6.8
205
205
  signing_key:
206
206
  specification_version: 4
207
207
  summary: A deployment task manager.