filbunke 1.10.2 → 1.10.3
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 +5 -13
- data/VERSION +1 -1
- data/filbunke.gemspec +4 -5
- data/lib/filbunke/client.rb +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,15 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
|
5
|
-
data.tar.gz: !binary |-
|
6
|
-
Njc3OGE3YWFmNWM4Mzk2ZjczOTliYzdhYWYzOTZlMjBlYWYyOGJlMQ==
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: c037040d9ad780d44b920b3a6dbe1df82463b250
|
4
|
+
data.tar.gz: 08d359f508446e24881402b5be25de5ea9897ce3
|
7
5
|
SHA512:
|
8
|
-
metadata.gz:
|
9
|
-
|
10
|
-
MDhkY2E1ZmQ4MGQwMTdhNmViZjg4YjlkN2M1ZGMyNGQ1NTc5OTM3MGMyYzYw
|
11
|
-
MzE2NzRlMTRmOTJlOTc0MWIyYzE4MjQ5MzMwNzMwMjk4YWE4MGE=
|
12
|
-
data.tar.gz: !binary |-
|
13
|
-
YmFiYzNlMTBmNDk0YzI4OGZmNDVlYTNlY2FjMDU3ZjU0N2NjNjIzZTEyN2Rk
|
14
|
-
ZTQ5OGMxZjc5YThmYmVmMzA1NzMwMjJlMTBiMWI5ODk2OWZlMWMzYmE3NDBk
|
15
|
-
NDUwM2YyN2RkNDlhOTJiMjBiNzlmY2UzM2NiODRkZDY5NTJmNGI=
|
6
|
+
metadata.gz: c1f3a1556b9a09dd8f334794636646abaf0814d3308ce1be1f47fe248ce94f99b3989bd5ab5226ff52f9dc9f35fa68d31250bb11f9b8fc57398f71730341effb
|
7
|
+
data.tar.gz: e58c070c818db39a1273699f13184ae208f292bde5f4c603e3f715aa1f1bbe19e69833e7e3dd952bf7acd1cac1988274c907b003e818faded4df04dc4e726ed0
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.10.
|
1
|
+
1.10.3
|
data/filbunke.gemspec
CHANGED
@@ -2,16 +2,14 @@
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
|
-
# stub: filbunke 1.10.2 ruby lib
|
6
5
|
|
7
6
|
Gem::Specification.new do |s|
|
8
7
|
s.name = "filbunke"
|
9
|
-
s.version = "1.10.
|
8
|
+
s.version = "1.10.3"
|
10
9
|
|
11
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
12
|
-
s.require_paths = ["lib"]
|
13
11
|
s.authors = ["Bjorn Sperber", "Karl Ravn"]
|
14
|
-
s.date = "2014-11-
|
12
|
+
s.date = "2014-11-12"
|
15
13
|
s.description = "Filbunke client and library"
|
16
14
|
s.email = "info@deltaprojects.com"
|
17
15
|
s.executables = ["filbunked"]
|
@@ -38,7 +36,8 @@ Gem::Specification.new do |s|
|
|
38
36
|
"test/test_filbunke.rb"
|
39
37
|
]
|
40
38
|
s.homepage = "http://github.com/deltaprojects/filbunke"
|
41
|
-
s.
|
39
|
+
s.require_paths = ["lib"]
|
40
|
+
s.rubygems_version = "2.0.14"
|
42
41
|
s.summary = "Filbunke client"
|
43
42
|
|
44
43
|
if s.respond_to? :specification_version then
|
data/lib/filbunke/client.rb
CHANGED
@@ -239,7 +239,7 @@ module Filbunke
|
|
239
239
|
::FileUtils.mkdir_p(::File.dirname(local_file_path))
|
240
240
|
::FileUtils.rm_f("#{local_file_path}.tmp")
|
241
241
|
url = file.url
|
242
|
-
url.gsub(/hdfs:\/\/([^\/]*)(.*)/, "hdfs://\\2")
|
242
|
+
url.gsub!(/hdfs:\/\/([^\/]*)(.*)/, "hdfs://\\2")
|
243
243
|
hdfs_cmd = "#{@repository.hadoop_binary} dfs -copyToLocal #{url} #{local_file_path}.tmp"
|
244
244
|
@logger.log "Trying to update #{local_file_path} with '#{hdfs_cmd}'"
|
245
245
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: filbunke
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.10.
|
4
|
+
version: 1.10.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Bjorn Sperber
|
@@ -9,20 +9,20 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-11-
|
12
|
+
date: 2014-11-12 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: thoughtbot-shoulda
|
16
16
|
requirement: !ruby/object:Gem::Requirement
|
17
17
|
requirements:
|
18
|
-
- -
|
18
|
+
- - '>='
|
19
19
|
- !ruby/object:Gem::Version
|
20
20
|
version: '0'
|
21
21
|
type: :development
|
22
22
|
prerelease: false
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
24
24
|
requirements:
|
25
|
-
- -
|
25
|
+
- - '>='
|
26
26
|
- !ruby/object:Gem::Version
|
27
27
|
version: '0'
|
28
28
|
- !ruby/object:Gem::Dependency
|
@@ -117,17 +117,17 @@ require_paths:
|
|
117
117
|
- lib
|
118
118
|
required_ruby_version: !ruby/object:Gem::Requirement
|
119
119
|
requirements:
|
120
|
-
- -
|
120
|
+
- - '>='
|
121
121
|
- !ruby/object:Gem::Version
|
122
122
|
version: '0'
|
123
123
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
124
124
|
requirements:
|
125
|
-
- -
|
125
|
+
- - '>='
|
126
126
|
- !ruby/object:Gem::Version
|
127
127
|
version: '0'
|
128
128
|
requirements: []
|
129
129
|
rubyforge_project:
|
130
|
-
rubygems_version: 2.
|
130
|
+
rubygems_version: 2.0.14
|
131
131
|
signing_key:
|
132
132
|
specification_version: 4
|
133
133
|
summary: Filbunke client
|