file_copy 1.0.0 → 1.0.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.
@@ -13,7 +13,7 @@ module FileCopy
13
13
  password = (password and password.length > 0) ? password : nil
14
14
  port = 22 # 22 is a standart SSH port
15
15
  raise "Undefined server" unless server
16
- Log.info "Trying to connect(ssh): #{username}, #{password}, #{server}, #{port}."
16
+ Log.debug1 "Trying to connect(ssh): #{username}, #{password}, #{server}, #{port}."
17
17
  if (username and password)
18
18
  Net::SSH.start(server, username,
19
19
  :password => password,
@@ -36,11 +36,11 @@ module FileCopy
36
36
  uploads = files_map.map { |from,to|
37
37
  remote_dir = File.dirname(to)
38
38
  sftp_mkdir_recursive(sftp, File.dirname(to))
39
- Log.info "Copying #{from} to #{to}"
39
+ Log.debug1 "Copying #{from} to #{to}"
40
40
  sftp.upload(from, to)
41
41
  }
42
42
  uploads.each { |u| u.wait }
43
- Log.info "Done."
43
+ Log.debug1 "Done."
44
44
  end # ssh.sftp.connect
45
45
  end # def initialize
46
46
  module_function :sftp_copy
@@ -48,17 +48,17 @@ module FileCopy
48
48
  def sftp_mkdir_recursive(sftp, path)
49
49
  dir_stat = nil
50
50
  begin
51
- Log.info "Stat remote dir: #{path}."
51
+ Log.debug1 "Stat remote dir: #{path}."
52
52
  dir_stat = sftp.stat!(path).directory?
53
- Log.info "Stat result #{dir_stat}."
53
+ Log.debug1 "Stat result #{dir_stat}."
54
54
  rescue Net::SFTP::StatusException
55
55
  end
56
56
  if !dir_stat
57
- Log.info "Directory does not exists: #{path}."
57
+ Log.debug1 "Directory does not exists: #{path}."
58
58
  sftp_mkdir_recursive sftp, File.dirname(path)
59
- Log.info "Making dir #{path}."
59
+ Log.debug1 "Making dir #{path}."
60
60
  response = sftp.mkdir!(path)
61
- Log.info "Making dir ok:#{response.ok?}."
61
+ Log.debug1 "Making dir ok:#{response.ok?}."
62
62
  end
63
63
  end
64
64
  module_function :sftp_mkdir_recursive
@@ -1,4 +1,4 @@
1
1
  module FileCopy
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
4
4
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: file_copy
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-05-01 00:00:00.000000000 Z
12
+ date: 2013-05-25 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: log