carrierwave-ftp 0.2.5 → 0.2.6

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,15 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 7411a47d5afae7740f57a16098cc1802bc18844f
4
- data.tar.gz: e625d8791b464b33fb434a009bac09accb3ae95b
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ ZGVlODdmMjNmMGZmODExZGM5YzU0MTUwODgxYTU4NGQ4ZTEzNjFjZA==
5
+ data.tar.gz: !binary |-
6
+ ZmVhNGQ3YTM1Njg1ZTE2ZTY4ZjdjNTQyYzRmZjc5MjY5ZjM1ZTBjNQ==
5
7
  SHA512:
6
- metadata.gz: 24e5adcdcbf84b7ee81636e3e189248226a611448d14fb1487c72759b0d8616e29429a738f909513a357ef28a9469e662b686cc94874fb24d030fb642f8dfdcc
7
- data.tar.gz: 30e49e2c97000d9d709ab90c42e9e5b4db01a913c6b5589019d120ab6dad8857271ca8169c67feddbf090c24738af5add58cbf0ca18c797e3937629a64910cb6
8
+ metadata.gz: !binary |-
9
+ NzczNmY3MGJkOTRlYjM1YjVkNjJhMDIyNDA4YWE2MjU4OGEyMGEwMDAwNzUy
10
+ NjU5MmY5Nzk1OGVjYmQ5NzY3ZjlhMTczYzlkMjZkNzBlZGQyMWI2MTZlNjc2
11
+ OGJlZGM2NmE0YWNjNDlkYWVkYWI3ODE2NTBiMjUzN2RiY2ZlYzE=
12
+ data.tar.gz: !binary |-
13
+ Y2VmYmM2ZWYwNzI2NDRiNGFiZDE1MGUyZWM1OGQxZWRjYzllN2RmNDRhYTA5
14
+ YWJhZWZjZTIxYmRmNDYwNDRhNmM1NDc3NmNkYTQyODIwYWYwZTFlZjM2Nzcx
15
+ OGU1ODc5ODBiNmFkZTM4ZmQ1NDBjYTUyMmIyNjNlZWI3NWE0ZDg=
@@ -2,17 +2,12 @@ require 'net/sftp'
2
2
 
3
3
  class Net::SFTP::Session
4
4
  def mkdir_p!(dir)
5
- parts = dir.split("/")
6
- growing_path = ""
5
+ parts = dir.split(File::SEPARATOR)
6
+ growing_parts = []
7
7
  for part in parts
8
- next if part == ""
9
- if growing_path == ""
10
- growing_path = part
11
- else
12
- growing_path = File.join(growing_path, part)
13
- end
8
+ growing_parts.push(part)
14
9
  begin
15
- mkdir!(growing_path)
10
+ mkdir!(File.join(growing_parts))
16
11
  rescue
17
12
  end
18
13
  end
@@ -1,7 +1,7 @@
1
1
  module Carrierwave
2
2
  module Storage
3
3
  class FTP
4
- VERSION = "0.2.5"
4
+ VERSION = "0.2.6"
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,27 +1,27 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: carrierwave-ftp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.5
4
+ version: 0.2.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Luan Santos
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-01-20 00:00:00.000000000 Z
11
+ date: 2014-05-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: carrierwave
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - '>='
17
+ - - ! '>='
18
18
  - !ruby/object:Gem::Version
19
19
  version: 0.6.2
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - '>='
24
+ - - ! '>='
25
25
  - !ruby/object:Gem::Version
26
26
  version: 0.6.2
27
27
  - !ruby/object:Gem::Dependency
@@ -99,17 +99,17 @@ require_paths:
99
99
  - lib
100
100
  required_ruby_version: !ruby/object:Gem::Requirement
101
101
  requirements:
102
- - - '>='
102
+ - - ! '>='
103
103
  - !ruby/object:Gem::Version
104
104
  version: '0'
105
105
  required_rubygems_version: !ruby/object:Gem::Requirement
106
106
  requirements:
107
- - - '>='
107
+ - - ! '>='
108
108
  - !ruby/object:Gem::Version
109
109
  version: '0'
110
110
  requirements: []
111
111
  rubyforge_project: carrierwave-ftp
112
- rubygems_version: 2.0.6
112
+ rubygems_version: 2.1.9
113
113
  signing_key:
114
114
  specification_version: 4
115
115
  summary: FTP support for CarrierWave