sample_data_dump_aws_s3_compressed_dump_storage 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 28a5d82217195195e9fa7fa5d3a4823bbd3a0b22
4
- data.tar.gz: 75ebe0a83877cc8e989db885ceef772d42eb761c
3
+ metadata.gz: b8ebd3ee5cf469591d68681c9b2f42b8252b2cf3
4
+ data.tar.gz: 65057e54114dcb886f29eab07d0c2a8dae504f3e
5
5
  SHA512:
6
- metadata.gz: cf634f416aedfd36556eb431862f3e8b013e5afbe503b2cb542293eb7295490869b457cc01cdfb1138a503e4a6c6e021a539512cee5d7306492b60a5e001ea28
7
- data.tar.gz: bd4aa899a521a256c9973414120cd12cf4655d9248c847c4a1e7d8506d38cd01e5930c5da3d244f02e6d968aa0a434a85fe0766f1bb1e989652f56658b0face8
6
+ metadata.gz: d8144a28477ed06533bb0ce0d1433623ae3297ba931bf7c7c004245aa3d876b05f793074a167603c442351687c21f4a96a42492542a004596dfcff01ea8431fa
7
+ data.tar.gz: 1f36f6804fdf82d59f4c636a52b81352cf75a59838707b4a4575c038d778c662cd82349664094995a58bc1ed7ad209a41b092eaf86939f97c9240a6be481504f
data/CHANGELOG.md CHANGED
@@ -1,7 +1,11 @@
1
+ 0.0.3
2
+
3
+ * Make access_key_id and secret_access_key optional in S3 options
4
+
1
5
  0.0.2
2
6
 
3
7
  * Update dependencies
4
-
8
+
5
9
  0.0.1
6
10
 
7
11
  * First release
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- sample_data_dump_aws_s3_compressed_dump_storage (0.0.2)
4
+ sample_data_dump_aws_s3_compressed_dump_storage (0.0.3)
5
5
  aws-sdk-s3
6
6
  dry-matcher
7
7
  dry-monads
data/LICENSE.md ADDED
@@ -0,0 +1,11 @@
1
+ Copyright 2018 Bellroy
2
+
3
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
4
+
5
+ 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
6
+
7
+ 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
8
+
9
+ 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
10
+
11
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -6,9 +6,9 @@ require 'sample_data_dump/entities/settings'
6
6
 
7
7
  module SampleDataDumpAwsS3CompressedDumpStorage
8
8
  class Settings < SampleDataDump::Entities::Settings
9
- attribute :aws_s3_access_key_id, SampleDataDump::Types::Strict::String
9
+ attribute :aws_s3_access_key_id, SampleDataDump::Types::Strict::String.optional
10
10
  attribute :aws_s3_bucket_name, SampleDataDump::Types::Strict::String
11
11
  attribute :aws_s3_region, SampleDataDump::Types::Strict::String
12
- attribute :aws_s3_secret_access_key, SampleDataDump::Types::Strict::String
12
+ attribute :aws_s3_secret_access_key, SampleDataDump::Types::Strict::String.optional
13
13
  end
14
14
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SampleDataDumpAwsS3CompressedDumpStorage
4
- VERSION = '0.0.2'
4
+ VERSION = '0.0.3'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sample_data_dump_aws_s3_compressed_dump_storage
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bellroy Dev Team
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-12-03 00:00:00.000000000 Z
11
+ date: 2018-12-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-s3
@@ -166,6 +166,7 @@ files:
166
166
  - Gemfile
167
167
  - Gemfile.lock
168
168
  - Guardfile
169
+ - LICENSE.md
169
170
  - README.md
170
171
  - lib/sample_data_dump_aws_s3_compressed_dump_storage.rb
171
172
  - lib/sample_data_dump_aws_s3_compressed_dump_storage/gateway.rb