asset_cloud 2.2.7 → 2.2.8
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 +4 -4
- data/asset_cloud.gemspec +1 -1
- data/lib/asset_cloud/buckets/gcs_bucket.rb +6 -2
- data/spec/gcs_bucket_remote_spec.rb +29 -0
- data/spec/gcs_bucket_spec.rb +47 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f1331f148d5e428464e3d7f539963c1c2651f528656a3c8ef0266d6aa299379c
|
4
|
+
data.tar.gz: 7f62fa26ae75e6e630aee982c08067cfbf38e1e6e3e49cd9afc99a33505825c3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 03aca7a78234bbb51998cad8a0740e7f7ae2d0a14a2b3dc32ed9317bea003cf1e684845c56ae1554e90e2cf7d4f6ba64dbabdf63b1b90f2e85f7a8186b27c7d1
|
7
|
+
data.tar.gz: 7284d30086ea786bdc0b1a18fe6a8a27ea829bedacded167244d21a7334926aa8d444202ad594c98f0c8ed2cb7c998b7c9725fcf4ab4519008970865146908e0
|
data/asset_cloud.gemspec
CHANGED
@@ -13,8 +13,12 @@ module AssetCloud
|
|
13
13
|
downloaded.read
|
14
14
|
end
|
15
15
|
|
16
|
-
def write(key, data)
|
17
|
-
bucket.create_file(
|
16
|
+
def write(key, data, options = {})
|
17
|
+
bucket.create_file(
|
18
|
+
data,
|
19
|
+
absolute_key(key),
|
20
|
+
options
|
21
|
+
)
|
18
22
|
end
|
19
23
|
|
20
24
|
def delete(key)
|
@@ -54,6 +54,35 @@ describe AssetCloud::GCSBucket, if: ENV['GCS_PROJECT_ID'] && ENV['GCS_KEY_FILEPA
|
|
54
54
|
@bucket.write(key, local_path)
|
55
55
|
end
|
56
56
|
|
57
|
+
it "#write writes a file into the bucket with metadata" do
|
58
|
+
local_path = "#{directory}/products/key.txt"
|
59
|
+
key = 'test/key.txt'
|
60
|
+
metadata = {
|
61
|
+
"X-Robots-Tag" => "none"
|
62
|
+
}
|
63
|
+
|
64
|
+
file = @bucket.write(key, local_path, metadata: metadata)
|
65
|
+
expect(file.metadata).to eq(metadata)
|
66
|
+
end
|
67
|
+
|
68
|
+
it "#write writes a file into the bucket with acl" do
|
69
|
+
local_path = "#{directory}/products/key.txt"
|
70
|
+
key = 'test/key.txt'
|
71
|
+
acl = 'public'
|
72
|
+
|
73
|
+
file = @bucket.write(key, local_path, acl: acl)
|
74
|
+
expect(file.acl).to be_truthy
|
75
|
+
end
|
76
|
+
|
77
|
+
it "#write writes a file into the bucket with content_disposition" do
|
78
|
+
local_path = "#{directory}/products/key.txt"
|
79
|
+
key = 'test/key.txt'
|
80
|
+
content_disposition = 'attachment'
|
81
|
+
|
82
|
+
file = @bucket.write(key, local_path, content_disposition: content_disposition)
|
83
|
+
expect(file.content_disposition).to eq(content_disposition)
|
84
|
+
end
|
85
|
+
|
57
86
|
it "#delete removes the file from the bucket" do
|
58
87
|
key = 'test/key.txt'
|
59
88
|
|
data/spec/gcs_bucket_spec.rb
CHANGED
@@ -11,7 +11,7 @@ class MockGCSBucket < AssetCloud::GCSBucket
|
|
11
11
|
def file(key)
|
12
12
|
end
|
13
13
|
|
14
|
-
def create_file(data, key)
|
14
|
+
def create_file(data, key, options = {})
|
15
15
|
end
|
16
16
|
end
|
17
17
|
|
@@ -40,11 +40,56 @@ describe AssetCloud::GCSBucket do
|
|
40
40
|
it "#write writes a file into the bucket" do
|
41
41
|
local_path = "#{directory}/products/key.txt"
|
42
42
|
key = 'test/key.txt'
|
43
|
-
expect_any_instance_of(MockGCSBucket).to receive(:create_file).with(
|
43
|
+
expect_any_instance_of(MockGCSBucket).to receive(:create_file).with(
|
44
|
+
local_path,
|
45
|
+
"s#{@cloud.url}/#{key}",
|
46
|
+
{}
|
47
|
+
)
|
44
48
|
|
45
49
|
@bucket.write(key, local_path)
|
46
50
|
end
|
47
51
|
|
52
|
+
it "#write writes a file into the bucket with metadata" do
|
53
|
+
local_path = "#{directory}/products/key.txt"
|
54
|
+
key = 'test/key.txt'
|
55
|
+
metadata = {
|
56
|
+
"X-Robots-Tag" => "none"
|
57
|
+
}
|
58
|
+
expect_any_instance_of(MockGCSBucket).to receive(:create_file).with(
|
59
|
+
local_path,
|
60
|
+
"s#{@cloud.url}/#{key}",
|
61
|
+
metadata: metadata
|
62
|
+
)
|
63
|
+
|
64
|
+
@bucket.write(key, local_path, metadata: metadata)
|
65
|
+
end
|
66
|
+
|
67
|
+
it "#write writes a file into the bucket with acl" do
|
68
|
+
local_path = "#{directory}/products/key.txt"
|
69
|
+
key = 'test/key.txt'
|
70
|
+
acl = 'public'
|
71
|
+
expect_any_instance_of(MockGCSBucket).to receive(:create_file).with(
|
72
|
+
local_path,
|
73
|
+
"s#{@cloud.url}/#{key}",
|
74
|
+
acl: acl
|
75
|
+
)
|
76
|
+
|
77
|
+
@bucket.write(key, local_path, acl: acl)
|
78
|
+
end
|
79
|
+
|
80
|
+
it "#write writes a file into the bucket with content_disposition" do
|
81
|
+
local_path = "#{directory}/products/key.txt"
|
82
|
+
key = 'test/key.txt'
|
83
|
+
content_disposition = 'attachment'
|
84
|
+
expect_any_instance_of(MockGCSBucket).to receive(:create_file).with(
|
85
|
+
local_path,
|
86
|
+
"s#{@cloud.url}/#{key}",
|
87
|
+
content_disposition: content_disposition
|
88
|
+
)
|
89
|
+
|
90
|
+
@bucket.write(key, local_path, content_disposition: content_disposition)
|
91
|
+
end
|
92
|
+
|
48
93
|
it "#delete removes the file from the bucket" do
|
49
94
|
key = 'test/key.txt'
|
50
95
|
expect_any_instance_of(MockGCSBucket).to receive(:file).with("s#{@cloud.url}/#{key}").and_return(Google::Cloud::Storage::File.new)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: asset_cloud
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.2.
|
4
|
+
version: 2.2.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shopify
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-10-
|
11
|
+
date: 2019-10-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|