six-rsync 0.6.8 → 0.6.9

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.
data/Rakefile CHANGED
@@ -12,7 +12,7 @@ require 'rake/testtask'
12
12
 
13
13
  spec = Gem::Specification.new do |s|
14
14
  s.name = 'six-rsync'
15
- s.version = '0.6.8'
15
+ s.version = '0.6.9'
16
16
  s.has_rdoc = true
17
17
  s.extra_rdoc_files = ['README', 'LICENSE']
18
18
  s.summary = 'Your summary here'
data/lib/six/rsync-app.rb CHANGED
@@ -124,7 +124,7 @@ module Six
124
124
  #app = App.new(ARGV[0])
125
125
  ARGV.each do |arg|
126
126
  todo.each do |option|
127
- App.send option, "#{arg}"
127
+ App.send option, "#{arg}" # Unfreeze
128
128
  end
129
129
  end
130
130
  end
data/lib/six/rsync.rb CHANGED
@@ -27,7 +27,7 @@ module Six
27
27
 
28
28
  module Rsync
29
29
  COMPONENT = 'six-rsync'
30
- VERSION = '0.6.8'
30
+ VERSION = '0.6.9'
31
31
  BASE_PATH = Dir.pwd
32
32
 
33
33
  case RUBY_PLATFORM
data/lib/six/rsync/lib.rb CHANGED
@@ -54,8 +54,9 @@ module Six
54
54
  @rsync_dir = base[:repository]
55
55
  @rsync_work_dir = base[:working_directory]
56
56
  end
57
- @rsync_dir.gsub!("\\", "/")
58
- @rsync_work_dir.gsub!("\\", "/")
57
+
58
+ @rsync_dir.gsub!("\\", "/") if @rsync_dir
59
+ @rsync_work_dir.gsub!("\\", "/") if @rsync_work_dir
59
60
  end
60
61
 
61
62
  def status
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 6
8
- - 8
9
- version: 0.6.8
8
+ - 9
9
+ version: 0.6.9
10
10
  platform: ruby
11
11
  authors:
12
12
  - Sickboy