uppy-s3_multipart 0.3.4 → 1.0.0
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/README.md +34 -22
- data/uppy-s3_multipart.gemspec +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 127c554611e36c8802a60174dfbd624bab6de29aaa5f1ccdd04b71c2224f108e
|
|
4
|
+
data.tar.gz: 6950b75f85c04b03e973ae9581f59ec8defc4d1be7c5c50080fcd638c71adf97
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 292d94dbb74c0efe2108f041207e86a5d46b99d63fb85f4cf2ccc5c252d47c00507b6118bdfd995ee762049fc389705982cfc566ddc1f906b7956185179db1fd
|
|
7
|
+
data.tar.gz: 305fb7fea58a49a3768ebda006c5827b9b3911006087bb61f623a2519b10f5c680a39ab0578db085823963d2046753f3f4b294a4716c3e6e836b3c18173c1999
|
data/README.md
CHANGED
|
@@ -10,7 +10,7 @@ uploads.
|
|
|
10
10
|
Add the gem to your Gemfile:
|
|
11
11
|
|
|
12
12
|
```rb
|
|
13
|
-
gem "uppy-s3_multipart", "~> 0
|
|
13
|
+
gem "uppy-s3_multipart", "~> 1.0"
|
|
14
14
|
```
|
|
15
15
|
|
|
16
16
|
## Setup
|
|
@@ -20,27 +20,39 @@ the bucket's CORS configuration. In the AWS S3 Console go to your bucket, click
|
|
|
20
20
|
on "Permissions" tab and then on "CORS configuration". There paste in the
|
|
21
21
|
following:
|
|
22
22
|
|
|
23
|
-
```
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
23
|
+
```json
|
|
24
|
+
[
|
|
25
|
+
{
|
|
26
|
+
"AllowedHeaders": [
|
|
27
|
+
"content-type",
|
|
28
|
+
"x-amz-content-sha256",
|
|
29
|
+
"x-amz-date"
|
|
30
|
+
],
|
|
31
|
+
"AllowedMethods": [
|
|
32
|
+
"GET",
|
|
33
|
+
"POST",
|
|
34
|
+
"PUT"
|
|
35
|
+
],
|
|
36
|
+
"AllowedOrigins": [
|
|
37
|
+
"https://my-app.com"
|
|
38
|
+
],
|
|
39
|
+
"ExposeHeaders": [
|
|
40
|
+
"ETag"
|
|
41
|
+
],
|
|
42
|
+
"MaxAgeSeconds": 3000
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"AllowedHeaders": [],
|
|
46
|
+
"AllowedMethods": [
|
|
47
|
+
"GET"
|
|
48
|
+
],
|
|
49
|
+
"AllowedOrigins": [
|
|
50
|
+
"*"
|
|
51
|
+
],
|
|
52
|
+
"ExposeHeaders": [],
|
|
53
|
+
"MaxAgeSeconds": 3000
|
|
54
|
+
}
|
|
55
|
+
]
|
|
44
56
|
```
|
|
45
57
|
|
|
46
58
|
Replace `https://my-app.com` with the URL to your app (in development you can
|
data/uppy-s3_multipart.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: uppy-s3_multipart
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Janko Marohnić
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-07-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: roda
|
|
@@ -142,7 +142,7 @@ dependencies:
|
|
|
142
142
|
- - "~>"
|
|
143
143
|
- !ruby/object:Gem::Version
|
|
144
144
|
version: '3.23'
|
|
145
|
-
description:
|
|
145
|
+
description:
|
|
146
146
|
email:
|
|
147
147
|
- janko.marohnic@gmail.com
|
|
148
148
|
executables: []
|
|
@@ -161,7 +161,7 @@ homepage: https://github.com/janko/uppy-s3_multipart
|
|
|
161
161
|
licenses:
|
|
162
162
|
- MIT
|
|
163
163
|
metadata: {}
|
|
164
|
-
post_install_message:
|
|
164
|
+
post_install_message:
|
|
165
165
|
rdoc_options: []
|
|
166
166
|
require_paths:
|
|
167
167
|
- lib
|
|
@@ -176,8 +176,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
176
176
|
- !ruby/object:Gem::Version
|
|
177
177
|
version: '0'
|
|
178
178
|
requirements: []
|
|
179
|
-
rubygems_version: 3.
|
|
180
|
-
signing_key:
|
|
179
|
+
rubygems_version: 3.2.15
|
|
180
|
+
signing_key:
|
|
181
181
|
specification_version: 4
|
|
182
182
|
summary: Provides a Rack application that implements endpoints for the AwsS3Multipart
|
|
183
183
|
Uppy plugin.
|