resync-client 0.4.3 → 0.4.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,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 34a1a78e5f7e9f178393d7cdff61ad316a7a515b
4
- data.tar.gz: a620cbcbf8b8fe21db2979a81df2c0720925e028
3
+ metadata.gz: 92f6501f07e3f0f32e1c889c7d04e727af8f3f39
4
+ data.tar.gz: 11f40c8d7e424d3ccb95ddf06261b20da2ceb542
5
5
  SHA512:
6
- metadata.gz: f12aea02531df1bc438bd4c91460dc7f92d59218353caed4f4113c686f7e7148d32bcefdd769e882c5a8872f1e3863c723d10f2aee4d497f4c5ffa57ecb601e5
7
- data.tar.gz: 3d1b959ec81de26e0199b528c2f03b821553a8bd0e3879b776c10a41960062257bbe8a8976424e70033feea879e647353e7f63a1c6a0ae5a23478e83e2be16f7
6
+ metadata.gz: dc4e0ccc8532c8e92e411ec668f6f8e9466ad6a27359eb944165405e618902dad9baea44d12d68d6afb09a32fe68a18edc03108560eeadefeebea00eabba0dda
7
+ data.tar.gz: 1e4b39dea5a4fabfeb8a2274ea673dd567444c884f103d564ff85b15804cec4744c908ad035b7f2e2403ee751c484d9ea00b2b66f25d121dd5f3ac1e872fb776
data/CHANGES.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## 0.4.4
2
+
3
+ - Replace all `require_relative` with absolute `require` to avoid symlink issues
4
+ - Update [resync](https://github.com/CDLUC3/resync) 0.4.3 (which does the same thing)
5
+
1
6
  ## 0.4.3
2
7
 
3
8
  - Replace unmaintained [lazy](https://github.com/mental/lazy) gem with [promise](https://github.com/bhuga/promising-future),
@@ -1,4 +1,4 @@
1
- require_relative '../zip'
1
+ require 'resync/client/zip'
2
2
 
3
3
  module Resync
4
4
  class Client
@@ -1,5 +1,5 @@
1
1
  require 'resync'
2
- require_relative 'resource_client_delegate'
2
+ require 'resync/client/mixins/resource_client_delegate'
3
3
 
4
4
  module Resync
5
5
  class Client
@@ -1,4 +1,4 @@
1
- require_relative '../../client'
1
+ require 'resync/client'
2
2
 
3
3
  module Resync
4
4
  class Client
@@ -1,5 +1,5 @@
1
1
  require 'resync'
2
- require_relative 'client_delegator'
2
+ require 'resync/client/mixins/client_delegator'
3
3
 
4
4
  module Resync
5
5
  class Client
@@ -1,7 +1,7 @@
1
1
  require 'resync'
2
2
  require 'promise'
3
- require_relative '../zip'
4
- require_relative 'zipped_resource'
3
+ require 'resync/client/zip'
4
+ require 'resync/client/mixins/zipped_resource'
5
5
 
6
6
  module Resync
7
7
  class Client
@@ -1,5 +1,5 @@
1
1
  require 'resync'
2
- require_relative 'resource_client_delegate'
2
+ require 'resync/client/mixins/resource_client_delegate'
3
3
 
4
4
  module Resync
5
5
  class Client
@@ -1,6 +1,6 @@
1
1
  require 'resync'
2
- require_relative '../zip'
3
- require_relative 'bitstream_resource'
2
+ require 'resync/client/zip'
3
+ require 'resync/client/mixins/bitstream_resource'
4
4
 
5
5
  module Resync
6
6
  class Client
@@ -1,5 +1,5 @@
1
1
  require 'resync'
2
- require_relative 'client_delegator'
2
+ require 'resync/client/mixins/client_delegator'
3
3
 
4
4
  module Resync
5
5
  class Client
@@ -1,5 +1,5 @@
1
1
  require 'resync'
2
- require_relative 'resource_client_delegate'
2
+ require 'resync/client/mixins/resource_client_delegate'
3
3
 
4
4
  module Resync
5
5
  class Client
@@ -1,5 +1,5 @@
1
1
  require 'resync'
2
- require_relative 'resource_client_delegate'
2
+ require 'resync/client/mixins/resource_client_delegate'
3
3
 
4
4
  module Resync
5
5
  class Client
@@ -1,5 +1,5 @@
1
1
  require 'resync'
2
- require_relative 'client_delegator'
2
+ require 'resync/client/mixins/client_delegator'
3
3
 
4
4
  module Resync
5
5
  class Client
@@ -1,5 +1,5 @@
1
- require_relative '../zip'
2
- require_relative 'downloadable'
1
+ require 'resync/client/zip'
2
+ require 'resync/client/mixins/downloadable'
3
3
 
4
4
  module Resync
5
5
  class Client
@@ -1,6 +1,6 @@
1
1
  module Resync
2
2
  class Client
3
3
  # The version of this gem.
4
- VERSION = '0.4.3'
4
+ VERSION = '0.4.4'
5
5
  end
6
6
  end
@@ -1,7 +1,7 @@
1
1
  require 'zip'
2
2
  require 'resync'
3
- require_relative '../mixins'
4
- require_relative 'bitstream'
3
+ require 'resync/client/mixins'
4
+ require 'resync/client/zip/bitstream'
5
5
 
6
6
  module Resync
7
7
  class Client
data/lib/resync/client.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  require 'resync'
2
- require_relative 'client/mixins'
2
+ require 'resync/client/mixins'
3
3
 
4
4
  Dir.glob(File.expand_path('../client/*.rb', __FILE__)).sort.each(&method(:require))
5
5
 
@@ -24,7 +24,7 @@ Gem::Specification.new do |spec|
24
24
  spec.require_paths = ['lib']
25
25
 
26
26
  spec.add_dependency 'promise', '~> 0.3', '>= 0.3.1'
27
- spec.add_dependency 'resync', '~> 0.4', '>= 0.4.2'
27
+ spec.add_dependency 'resync', '~> 0.4', '>= 0.4.3'
28
28
  spec.add_dependency 'rubyzip', '~> 1.1'
29
29
 
30
30
  spec.add_development_dependency 'equivalent-xml', '~> 0.6.0'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: resync-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.3
4
+ version: 0.4.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Moles
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-03-17 00:00:00.000000000 Z
11
+ date: 2016-04-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: promise
@@ -39,7 +39,7 @@ dependencies:
39
39
  version: '0.4'
40
40
  - - ">="
41
41
  - !ruby/object:Gem::Version
42
- version: 0.4.2
42
+ version: 0.4.3
43
43
  type: :runtime
44
44
  prerelease: false
45
45
  version_requirements: !ruby/object:Gem::Requirement
@@ -49,7 +49,7 @@ dependencies:
49
49
  version: '0.4'
50
50
  - - ">="
51
51
  - !ruby/object:Gem::Version
52
- version: 0.4.2
52
+ version: 0.4.3
53
53
  - !ruby/object:Gem::Dependency
54
54
  name: rubyzip
55
55
  requirement: !ruby/object:Gem::Requirement