deb-s3-lock-fix 0.11.8.fix8 → 0.11.8.fix9

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +2 -2
  3. data/lib/deb/s3/lock.rb +2 -2
  4. metadata +4 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1a7f40985258d5212ac5f40cf777e3c18ead8e1f73768444462a14f4b04727fe
4
- data.tar.gz: d90d94de2da1ffab4439347e2f9fbe964b41b0663f58b509c110a71a91f32878
3
+ metadata.gz: 7359269b0c261eb75e972418c5d5b52b9cba54982c538ed3cb33d5c809fe8822
4
+ data.tar.gz: e9fe79de351ab1c1fee248b166ae403a24f8eaa2981a47916f2d89a3b332547a
5
5
  SHA512:
6
- metadata.gz: 7dffaadf897accef8d6427768d393d543959843531bd2e2ce7756243580b3c6793cb917bf1f78eed47e2314ac03bc640e89b7cd252c9380aea2e258224e293d1
7
- data.tar.gz: 749f27fca151c95688da92a2b7ed3686bb59df8c6118120c80ae385987091224c6bf0e00a8f3b49defd1ed4b56b1c920756b567e4676832f6cfe54bae6fbf814
6
+ metadata.gz: 537086dbaf030c0227fc536326b863925080b18002cab7bb296730d2b65542bbf34ec0c9358d2d0f83dbf2fcf3f09c0a38d53075daa9991bf0372aef3f38d897
7
+ data.tar.gz: 25e69e5642d3a819484bbffaad0405d77ec4fdd88e62ea39d8cd9cd5ca0be73fdf510610ee8292de1999f8a474e778876203ea671f8f36133dc382d50f758896
data/README.md CHANGED
@@ -10,8 +10,8 @@ consistency model. This fork uses DynamoDB for distributed locking, since it ens
10
10
  conditional put operations on the lock.
11
11
 
12
12
  To use this library create a DynamoDB table and export the following three env variables:
13
- `DEB_S3_LOCK_ACCESS_KEY_ID`
14
- `DEB_S3_LOCK_SECRET_ACCESS_KEY`
13
+ `DEB_S3_ACCESS_KEY_ID`
14
+ `DEB_S3_SECRET_ACCESS_KEY`
15
15
  `AWS_BUILDERS_REGION`
16
16
 
17
17
  `deb-s3` is a simple utility to make creating and managing APT repositories on
data/lib/deb/s3/lock.rb CHANGED
@@ -16,8 +16,8 @@ class Deb::S3::Lock
16
16
  @dynamodb ||= begin
17
17
  validate_environment_variables!
18
18
  Aws::DynamoDB::Client.new(
19
- access_key_id: ENV['DEB_S3_LOCK_ACCESS_KEY_ID'],
20
- secret_access_key: ENV['DEB_S3_LOCK_SECRET_ACCESS_KEY'],
19
+ access_key_id: ENV['DEB_S3_ACCESS_KEY_ID'],
20
+ secret_access_key: ENV['DEB_S3_SECRET_ACCESS_KEY'],
21
21
  region: ENV['AWS_BUILDERS_REGION']
22
22
  )
23
23
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: deb-s3-lock-fix
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.8.fix8
4
+ version: 0.11.8.fix9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Braeden Wolf & Ken Robertson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-09-18 00:00:00.000000000 Z
11
+ date: 2023-09-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor
@@ -80,8 +80,7 @@ dependencies:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
82
  version: '11'
83
- description: Fork of deb-s3 with a specific fix for locking. Original work by Ken
84
- Robertson.
83
+ description: Fork of deb-s3 with fix for locking. Original work by Ken Robertson.
85
84
  email: braeden.wolf@sanctuary.ai & ken@invalidlogic.com
86
85
  executables:
87
86
  - deb-s3
@@ -121,5 +120,5 @@ requirements: []
121
120
  rubygems_version: 3.1.2
122
121
  signing_key:
123
122
  specification_version: 4
124
- summary: Easily create and manage an APT repository on S3 (with specific lock fix).
123
+ summary: Easily create and manage an APT repository on S3 with lock fix.
125
124
  test_files: []