cprobert-s3sync 1.4.2 → 1.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,15 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- MWFmZjE2YjczOTI4ZDAwNzkwMGVmMjc4YjI0OGYzZGQwYTZlNjY1Mw==
5
- data.tar.gz: !binary |-
6
- ZjgzM2M1ODQ1MmE3ZTIyNjA1Nzg0YTZmODcyMjcxYjExZjc3M2E1Ng==
2
+ SHA1:
3
+ metadata.gz: 48d6436a81641243280c4b215ba23dbed4af5429
4
+ data.tar.gz: cca1f3a384ac016ad5b7fc4262721a71b56835bc
7
5
  SHA512:
8
- metadata.gz: !binary |-
9
- MTIyNWQ0MjU2ZTAxNjI0ZjkwMDhkMzhjNzU3ZDk0YzczMjFlYjQxMjI0ZGQ5
10
- MTViODdiMmEzZjM3ZmUzMzM4NzNiYzE2OTQxZWRmYWE4MDg3YjFmMGE2MmMy
11
- YjE5MzRjYjFhNjk4NzJmNmMxNzI0N2RiZDYzY2I2M2I4ZTExYjk=
12
- data.tar.gz: !binary |-
13
- ODlmZDJmMzE5NmNkZGNjNmI4NDVmZjBkMWM4NjhlOGRkNjc1ZjlmNjBkNjAy
14
- NGRmYjZmMjZlZTQxMzAxMWEwNzk4ZTI5ZGQ3NDljZjllNWUyMjcyNGE5OGFk
15
- MmI3OTcwNGU3NGVjYjBhNWI4YTUwOTU1YTZkOGQ3YjE2N2Y0MjA=
6
+ metadata.gz: cf384d0522f859a7a1f2baee0b557b1cf3d2c9b9f7229b8a55974e59a0cae0b060cd2ddc3abe4efc9f022db8658bdc00aaba2471bb6dcadda2c225e6e14e15e4
7
+ data.tar.gz: b4613723b19022c1c571b2672ea35343f030b9f8887ea9843eb00ff28089e5fb66bfb09409eaa85549f20b65031c8663a41f02ab1d75e02c0118ea64bf5d1d13
@@ -1,3 +1,8 @@
1
+ 2016-09-14
2
+ Version 1.4.4
3
+ Fix for bug:
4
+ Use OpenSSL::Digest instead of deprecated OpenSSL::Digest::Digest
5
+
1
6
  2010-11-29
2
7
  Version 1.3.5
3
8
  able to set Content-Encoding with --gzip option
@@ -1,4 +1,8 @@
1
1
 
2
+ == CHANGED from original to be compatible with 2.x
3
+ Fix for bug:
4
+ Use OpenSSL::Digest instead of deprecated OpenSSL::Digest::Digest
5
+
2
6
  == CHANGED from original to be compatible with 1.9.3
3
7
  Removed Iconv dependancy - changed to string.encode
4
8
 
data/Rakefile CHANGED
@@ -5,7 +5,7 @@ begin
5
5
  require 'jeweler'
6
6
  Jeweler::Tasks.new do |gem|
7
7
  gem.name = "cprobert-s3sync"
8
- gem.summary = %Q{Fork of s3sync to be compatible with ruby 1.9.3}
8
+ gem.summary = %Q{Fork of s3sync to be compatible with ruby 2.x}
9
9
  gem.email = "cprobert@gmail.com"
10
10
  gem.homepage = "https://github.com/cprobert/s3sync"
11
11
  gem.authors = ["cprobert"]
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.4.2
1
+ 1.4.4
@@ -102,7 +102,7 @@ module S3
102
102
  # url encode the result of that to protect the string if it's going to
103
103
  # be used as a query string parameter.
104
104
  def S3.encode(aws_secret_access_key, str, urlencode=false)
105
- digest = OpenSSL::Digest::Digest.new('sha1')
105
+ digest = OpenSSL::Digest.new('sha1')
106
106
  b64_hmac =
107
107
  Base64.encode64(
108
108
  OpenSSL::HMAC.digest(digest, aws_secret_access_key, str)).strip
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cprobert-s3sync
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.2
4
+ version: 1.4.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - cprobert
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-09-12 00:00:00.000000000 Z
11
+ date: 2016-09-14 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email: cprobert@gmail.com
@@ -51,18 +51,18 @@ require_paths:
51
51
  - lib
52
52
  required_ruby_version: !ruby/object:Gem::Requirement
53
53
  requirements:
54
- - - ! '>='
54
+ - - ">="
55
55
  - !ruby/object:Gem::Version
56
56
  version: '0'
57
57
  required_rubygems_version: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - ! '>='
59
+ - - ">="
60
60
  - !ruby/object:Gem::Version
61
61
  version: '0'
62
62
  requirements: []
63
63
  rubyforge_project:
64
- rubygems_version: 2.4.1
64
+ rubygems_version: 2.5.1
65
65
  signing_key:
66
66
  specification_version: 4
67
- summary: Fork of s3sync to be compatible with ruby 1.9.3
67
+ summary: Fork of s3sync to be compatible with ruby 2.x
68
68
  test_files: []