jets 1.8.12 → 1.8.13
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/CHANGELOG.md +3 -0
- data/CONDUCT.md +1 -0
- data/CONTRIBUTING.md +1 -0
- data/lib/jets/aws_services/s3_bucket.rb +4 -0
- data/lib/jets/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 17d014ad7944c4dc88d523ef6532cb8d2f78060336956bb21611b4660e1876ec
|
|
4
|
+
data.tar.gz: a5139114178444da44ffc4733686350e4aef5d7e4b6fde846a64aa3c3046bd74
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '0037294a33d28720e8b93e9ea344e8f6da0476ea0b284ad7031b41b524a6742f98d3d611f7ce17c3c014cfb034cc10fed3d9e4426f178b6989d746bd30fadf73'
|
|
7
|
+
data.tar.gz: 28906c65ff8ec40ff9bc1e6201b67f480a268a965c1222f93fe17b958ab63ac88972f7ee3a0aa8d239335728d6adc52e965aa3827f52c6fac60bf0ad1fe15650
|
data/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
This project *loosely tries* to adhere to [Semantic Versioning](http://semver.org/).
|
|
5
5
|
|
|
6
|
+
## [1.8.13]
|
|
7
|
+
- s3_event: fix s3 bucket ensure_exists check
|
|
8
|
+
|
|
6
9
|
## [1.8.12]
|
|
7
10
|
- #243 Update activerecord docs
|
|
8
11
|
- #244 Make ENV['HOME'] an absolute path because some file operations will barf otherwise
|
data/CONDUCT.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
http://rubyonjets.com/docs/conduct/
|
data/CONTRIBUTING.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
http://rubyonjets.com/docs/contributing/
|
|
@@ -22,6 +22,10 @@ module Jets::AwsServices
|
|
|
22
22
|
begin
|
|
23
23
|
s3.head_bucket(bucket: @name)
|
|
24
24
|
true
|
|
25
|
+
rescue Aws::S3::Errors::BucketAlreadyOwnedByYou, Aws::S3::Errors::Http301Error => e
|
|
26
|
+
# These exceptions indicate bucket already exists
|
|
27
|
+
# Aws::S3::Errors::Http301Error could be inaccurate but compromising for simplicity
|
|
28
|
+
true
|
|
25
29
|
rescue
|
|
26
30
|
false
|
|
27
31
|
end
|
data/lib/jets/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jets
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.8.
|
|
4
|
+
version: 1.8.13
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tung Nguyen
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-05-
|
|
11
|
+
date: 2019-05-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: actionmailer
|
|
@@ -477,6 +477,8 @@ files:
|
|
|
477
477
|
- ".rspec"
|
|
478
478
|
- ".ruby-version"
|
|
479
479
|
- CHANGELOG.md
|
|
480
|
+
- CONDUCT.md
|
|
481
|
+
- CONTRIBUTING.md
|
|
480
482
|
- Dockerfile
|
|
481
483
|
- Dockerfile.base
|
|
482
484
|
- Gemfile
|