filbunke 1.7.2 → 1.7.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.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.7.2
1
+ 1.7.3
data/filbunke.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{filbunke}
8
- s.version = "1.7.2"
8
+ s.version = "1.7.3"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Wouter de Bie"]
@@ -122,8 +122,8 @@ module Filbunke
122
122
  if file.url =~ /^http:\/\//
123
123
  update_http_file!(file, local_file_path)
124
124
  elsif file.url =~ /^hdfs:\/\//
125
- update_hdfs_file!(file, local_file_path)
126
- run_callbacks(file)
125
+ success = update_hdfs_file!(file, local_file_path)
126
+ run_callbacks(file, local_file_path) if success
127
127
 
128
128
  else
129
129
  raise "Unsupported protocol for file: #{file.inspect}"
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 1
7
7
  - 7
8
- - 2
9
- version: 1.7.2
8
+ - 3
9
+ version: 1.7.3
10
10
  platform: ruby
11
11
  authors:
12
12
  - Wouter de Bie