dynamo-store 1.0.2 → 1.0.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1a41c0e38990bb420a8d0ba5b2c05683af84077287fbf0bf77d45dfddbffe29e
4
- data.tar.gz: efc6d8055b7638e9074e49a841a7fe0169462c341667e31724bbb9798c618d78
3
+ metadata.gz: 5616acaff728093d4bbb379bde8046bd4a8abd3fcac764bb64caabe238a3965b
4
+ data.tar.gz: '09e1a882b359386b60d2cbe93ad8eaa4cb9b3863b885b9d7cae4ddf7a90f33a7'
5
5
  SHA512:
6
- metadata.gz: ca50fce5a9fb97baebfac4c7fa3e97ee4a7390d43baffaf11ff76c33d82a46c3fd190ad799f10cf0bc2dfb43d70a08626538b28ec70d4cdc2051f141fa4bc4a0
7
- data.tar.gz: 79df7cc56c5d13fbe7e59fb3463ba2e8d1f7cd757d1c07175e4ffa931fb2c1b0c89de05c4285f85a139f588c1c290c53727ba05962b1f273ce1a756072773001
6
+ metadata.gz: 530fe5a7ea7d83b3a54072243e9d759f4557ffbd8ead0cecf32fbe1df7b3ac3f400347aef27e75430d488569ec28e294ade8d9b5150d1ffb14c20938a006ba01
7
+ data.tar.gz: c620a465585d5bdfa95809d75b944210cc4aca2b34cbbbab0f47e2b05992b791c47ef626509e00844a06afe2ec3e5e552043147d9900bafa01d8ebafac293dbd
@@ -14,8 +14,8 @@ jobs:
14
14
  fail-fast: false
15
15
  matrix:
16
16
  ruby:
17
- - 3.0.2
18
- - 2.7.4
17
+ - 3.1.1
18
+ - 2.7.5
19
19
  services:
20
20
  dynamodb:
21
21
  image: amazon/dynamodb-local
data/.gitignore CHANGED
@@ -10,3 +10,5 @@
10
10
 
11
11
  # rspec failure tracking
12
12
  .rspec_status
13
+
14
+ dynamo-store-*.gem
data/Changelog.md CHANGED
@@ -1,6 +1,10 @@
1
+ # 1.0.2.1
2
+
3
+ Fix load order issue which surfaced from activesupport 7
4
+
1
5
  # 1.0.2
2
6
 
3
- Rake 13 added as requirement
7
+ Rake 13 added as a dev requirement
4
8
 
5
9
  # 1.0.1
6
10
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- dynamo-store (1.0.1)
4
+ dynamo-store (1.0.2.1)
5
5
  activesupport (> 5.0)
6
6
  aws-sdk-dynamodb (> 1.0)
7
7
  rexml
@@ -9,26 +9,25 @@ PATH
9
9
  GEM
10
10
  remote: https://rubygems.org/
11
11
  specs:
12
- activesupport (6.1.4.1)
12
+ activesupport (7.0.2.2)
13
13
  concurrent-ruby (~> 1.0, >= 1.0.2)
14
14
  i18n (>= 1.6, < 2)
15
15
  minitest (>= 5.1)
16
16
  tzinfo (~> 2.0)
17
- zeitwerk (~> 2.3)
18
17
  appraisal (2.4.1)
19
18
  bundler
20
19
  rake
21
20
  thor (>= 0.14.0)
22
21
  ast (2.4.2)
23
22
  aws-eventstream (1.2.0)
24
- aws-partitions (1.531.0)
25
- aws-sdk-core (3.122.1)
23
+ aws-partitions (1.559.0)
24
+ aws-sdk-core (3.127.0)
26
25
  aws-eventstream (~> 1, >= 1.0.2)
27
26
  aws-partitions (~> 1, >= 1.525.0)
28
27
  aws-sigv4 (~> 1.1)
29
28
  jmespath (~> 1.0)
30
- aws-sdk-dynamodb (1.66.0)
31
- aws-sdk-core (~> 3, >= 3.122.0)
29
+ aws-sdk-dynamodb (1.74.0)
30
+ aws-sdk-core (~> 3, >= 3.127.0)
32
31
  aws-sigv4 (~> 1.1)
33
32
  aws-sigv4 (1.4.0)
34
33
  aws-eventstream (~> 1, >= 1.0.2)
@@ -53,11 +52,11 @@ GEM
53
52
  diff-lcs (1.4.4)
54
53
  docile (1.4.0)
55
54
  highline (2.0.3)
56
- i18n (1.8.11)
55
+ i18n (1.10.0)
57
56
  concurrent-ruby (~> 1.0)
58
- jmespath (1.4.0)
57
+ jmespath (1.6.0)
59
58
  method_source (1.0.0)
60
- minitest (5.14.4)
59
+ minitest (5.15.0)
61
60
  parser (3.0.2.0)
62
61
  ast (~> 2.4.1)
63
62
  pry (0.14.1)
@@ -102,7 +101,6 @@ GEM
102
101
  unicode-display_width (2.1.0)
103
102
  with_progress (1.0.1)
104
103
  ruby-progressbar (~> 1.4)
105
- zeitwerk (2.5.1)
106
104
 
107
105
  PLATFORMS
108
106
  ruby
@@ -1,5 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require 'active_support'
3
4
  require 'active_support/cache'
4
5
  require 'active_support/notifications'
5
6
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DynamoStore
4
- VERSION = '1.0.2'
4
+ VERSION = '1.0.2.1'
5
5
  end
data/lib/dynamo-store.rb CHANGED
@@ -1 +1,2 @@
1
+ require 'active_support'
1
2
  require 'active_support/cache/dynamo_store'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dynamo-store
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Harkness
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2022-02-02 00:00:00.000000000 Z
12
+ date: 2022-02-28 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activesupport