full360-sequencer 0.3.0 → 0.3.1
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/.github/workflows/release.yml +1 -1
- data/CHANGELOG.md +6 -0
- data/Gemfile.lock +2 -2
- data/bin/sequencer +1 -1
- data/lib/full360_sequencer/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6b306d37c59d71853d6163ceb7ee5536d760891d403a9306f81ecbfb83cb6400
|
|
4
|
+
data.tar.gz: 93dc22959e26473187909b980c706218807f5ed07ac5e00d28877517155785c0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8829c54bb964f3de9361cb58ea6eb23451f5c2ac8f91a81f180f2a957a7ab576f89273409ec1ac615e56ca1aeec2d2cf9e096657a1b82cb50f37258cfeb64d26
|
|
7
|
+
data.tar.gz: 45d0bf6df5196b24a71af673932187d9908888dd5993682a4481631ca906cadef0bfd8141f28696145f49a3516d78826fc311ba7f172835769b93f4c3d18f7d4
|
data/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,12 @@ Versioning](http://semver.org/spec/v2.0.0.html).
|
|
|
10
10
|
### Changed
|
|
11
11
|
### Removed
|
|
12
12
|
|
|
13
|
+
## 0.3.1
|
|
14
|
+
### Added
|
|
15
|
+
### Changed
|
|
16
|
+
- Make the S3 URL matcher work with all types of prefixes.
|
|
17
|
+
### Removed
|
|
18
|
+
|
|
13
19
|
## 0.3.0
|
|
14
20
|
### Added
|
|
15
21
|
- AWS SDK for S3 as a dependency.
|
data/Gemfile.lock
CHANGED
data/bin/sequencer
CHANGED
|
@@ -24,7 +24,7 @@ begin
|
|
|
24
24
|
|
|
25
25
|
# Will split the path into two groups one for the bucket and one for the
|
|
26
26
|
# prefix and we will use this later on when we download the file.
|
|
27
|
-
matches =
|
|
27
|
+
matches = /\As3:\/\/(?<bucket>.+?)\/(?<prefix>.+)\z/.match(s3_str)
|
|
28
28
|
|
|
29
29
|
s3_client = Aws::S3::Client.new(region: region)
|
|
30
30
|
|