radosgw-s3 0.9 → 0.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/s3/bucket.rb +6 -1
- data/lib/s3/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 868eb028e225cbc00c66fc3ba4b9d57a8b9e38bf
|
4
|
+
data.tar.gz: 5124a81ca41786fea9801cfd6f46922a41f5466a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 49beb3af4b07623b7fd8db12cb2f65076a5be5ef073edf6b7ea05017fe0e572743b5b6a200a58e86fba87afe262a4e0107dd64fc8024ee614a50d7ee9f2e7c69
|
7
|
+
data.tar.gz: f1c76ecb3f8a08e3eb9e726a5c398c7626f8f91f22ee7ed9c52bbe48d26660a9c089d9d72e4f7476a8aebc850ddf6d012e33c70c18165220c8d39bd0b016543e
|
data/lib/s3/bucket.rb
CHANGED
@@ -94,7 +94,12 @@ module S3
|
|
94
94
|
# name. If the bucket contains characters like underscore it can't
|
95
95
|
# be used as +VHOST+ (e.g. <tt>bucket_name.s3.amazonaws.com</tt>)
|
96
96
|
def vhost?
|
97
|
-
|
97
|
+
#MEGAM_FIX. If this method returns true "MethodNotAllowed" exception arises. (parse_error': undefined method `text' for nil:NilClass)
|
98
|
+
#Fix for bucketname without '_'
|
99
|
+
#HOST & PATH======vhost=flase======>192.168.1.102<======>asd2/<==========
|
100
|
+
#HOST & PATH======vhost=true======>asd2.s3.amazonaws.com<======><==========
|
101
|
+
#!service.use_ssl && service.use_vhost && "#@name.#{HOST}" =~ /\A#{URI::REGEXP::PATTERN::HOSTNAME}\Z/
|
102
|
+
false
|
98
103
|
end
|
99
104
|
|
100
105
|
# Returns host name of the bucket according (see #vhost? method)
|
data/lib/s3/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: radosgw-s3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '0.
|
4
|
+
version: '0.10'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Thomas Alrin, Kishorekumar Neelamegam, Rajthilak, Kuba Kuźma
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-11-
|
11
|
+
date: 2015-11-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: proxies
|