sluice 0.3.3 → 0.3.4

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,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- YmNkZjU1YmJkYTg2ZDM3Y2EyODVjNGUzZGMxZjMzYjlmYjdjMmMzZQ==
4
+ Zjk2NmI3NTI4Zjc5MjA2YWQ4MzEzMTA5MjQ3MWVhOTExNmU1ZWRhMQ==
5
5
  data.tar.gz: !binary |-
6
- MmNmZDY5M2IzOTY4ZGVjMDVjN2M1NjViZjRhZTUwNWJhN2QxNGEwZQ==
6
+ YzcyY2VlYTNmMzBiMTNhOTUxY2VlMTRhMWU3MTNiZjM2ODMzMDNiNQ==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- MjE5YjhiOGI1NTIwNzQ0YTA0YzUxMWY0Nzk5NzE4NGM4MWVkYWI3ZWZjZTZi
10
- MzJkYjM2ZTNmM2I2OTRjNGNjM2ZlZjU4OWEwYjM3MDRjZjFkMDdmY2U0OTJi
11
- ZTg4N2Y2ODVlYzljMDk4YWU5MGY1NTZkYjJkOWY4NTMyNWMyMjc=
9
+ ZGE4ZjU1NWY3YTU5ODE2ODFkNDgxZDg2Mjg1ZTYwYWUwMzk4ZmQ1MGYwMTQz
10
+ MjcxZGJkOTgyNmU2ZmZlNzk3Mzc4M2NlNTVmOGVmZTBiNTRiZWMzOWJmY2I1
11
+ MmYwZDNiNzI3MGUwN2M3NjA2ODBmY2VjM2EzYzg4YjE5MTI5MWM=
12
12
  data.tar.gz: !binary |-
13
- NTY0OGQxNGFjZTljNzEzNmYwNDI5ZjQ2OTFlODRiNDM4YTMxOWYxMDUxYzAz
14
- Zjk1Y2JhZWM2NjAxZDlmN2EzNmYxZTI0YWRmYzlhMGIyOGYxOGE4MTNjYzQ4
15
- YzVkODYwOTgyNjI4NmZkOTM1OGUxNGI2NDNkMGYzMzA4NGU2YjE=
13
+ YjBhYTJmODNmOTI5MDkwNzg1ZjQwYjcxMjY5M2UyOTU3ZWI0NGU5NzZhYThj
14
+ YmRhYTcyNzc3MTFkNGVjMTU0ZGUyYThkNzQxOWE5Y2E2MzM5NzRiNGI5NDZl
15
+ NDMwOWY0ZmQ4ZjY3NGI1MTgwNWNkMzM4M2RmYjFlODU4YTJjMzM=
data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ Version 0.3.4 (2016-07-09)
2
+ --------------------------
3
+ Fully qualify RETRIES in Sluice::Storage::S3 (#49)
4
+
1
5
  Version 0.3.3 (2016-07-08)
2
6
  --------------------------
3
7
  Remove problematic contract on Sluice::Storage::S3::rename_file (#48)
data/README.md CHANGED
@@ -26,7 +26,7 @@ Sluice has been extracted from a pair of Ruby ETL applications built by the [Sno
26
26
 
27
27
  Or in your Gemfile:
28
28
 
29
- gem 'sluice', '~> 0.3.3'
29
+ gem 'sluice', '~> 0.3.4'
30
30
 
31
31
  ## Usage
32
32
 
@@ -523,7 +523,7 @@ module Sluice
523
523
  retry_x(
524
524
  Sluice::Storage::S3,
525
525
  [:upload_file, s3, filepath, to_loc_or_dir.bucket, target],
526
- RETRIES,
526
+ Sluice::Storage::S3::RETRIES,
527
527
  " +/> #{target}",
528
528
  "Problem uploading #{filepath}. Retrying.")
529
529
  end
@@ -533,7 +533,7 @@ module Sluice
533
533
  retry_x(
534
534
  Sluice::Storage::S3,
535
535
  [:download_file, s3, file, target],
536
- RETRIES,
536
+ Sluice::Storage::S3::RETRIES,
537
537
  " +/> #{target}",
538
538
  "Problem downloading #{filepath}. Retrying.")
539
539
  end
@@ -543,7 +543,7 @@ module Sluice
543
543
  retry_x(
544
544
  file,
545
545
  [:copy, to_loc_or_dir.bucket, target],
546
- RETRIES,
546
+ Sluice::Storage::S3::RETRIES,
547
547
  " +-> #{to_loc_or_dir.bucket}/#{target}",
548
548
  "Problem copying #{filepath}. Retrying.")
549
549
  end
@@ -553,7 +553,7 @@ module Sluice
553
553
  retry_x(
554
554
  file,
555
555
  [:destroy],
556
- RETRIES,
556
+ Sluice::Storage::S3::RETRIES,
557
557
  " x #{source}",
558
558
  "Problem destroying #{filepath}. Retrying.")
559
559
  end
@@ -15,5 +15,5 @@
15
15
 
16
16
  module Sluice
17
17
  NAME = "sluice"
18
- VERSION = "0.3.3"
18
+ VERSION = "0.3.4"
19
19
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sluice
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.3
4
+ version: 0.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alex Dean