dynamoid 3.4.0 → 3.4.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: 7dd36d27f502c400c3275bf584ce8eba095b32732db1b9567ad9a3ceac64eb50
4
- data.tar.gz: '084f10baa66c9d22febfaa884f410be5222774283d58fda3f237c7b9b204c572'
3
+ metadata.gz: 25fefa51d69224bd2536fe3afa6f3ee672ff4ad09d22fda85456b1d83a63b040
4
+ data.tar.gz: cb2d6c4bc4d50ace05ffbdd9644081d2141e9e64653a8c421c222aa0eef36de5
5
5
  SHA512:
6
- metadata.gz: 43ac82ed7d651e4b92845bf08f372ca57bf7b3bde0c3f49a3afbc7b6cbd1125574938472d6041627882e82c90379e5063ecd285d0092761cb4a5c209f9041510
7
- data.tar.gz: 2a7f71ed8470bfce21a0b1c761d99681f02bbd797be65b2a4fe21ea72c54b7c22e52571f43ddcbedf980ab24ac26a4b54df1c41fd464f2cc1bdd7ac10817df33
6
+ metadata.gz: 769b5fb40049770a8b8aec38312e791f4d7702b308e3b15b2754f1a838f5d953b663081855df70fe3c3e80b202f3285a51b2e8738441ab9aa0a784d38385f447
7
+ data.tar.gz: 4231f149557483770ed04d81efef46d55f6a1f56475f9426d8dad1a5f26b1e5661ed1f9e0f43f502d073bb2370dbb5d0073668c6757b23230da90e9a5a623e3b
data/CHANGELOG.md CHANGED
@@ -11,6 +11,14 @@
11
11
  ---
12
12
 
13
13
 
14
+ # 3.4.1
15
+
16
+ ## Fixes
17
+ * Fix: [#398](https://github.com/Dynamoid/dynamoid/pull/398) Fix broken configuration
18
+
19
+ ---
20
+
21
+
14
22
 
15
23
  # 3.4.0
16
24
 
@@ -28,8 +36,8 @@
28
36
 
29
37
  ## Fixes
30
38
 
31
- Fix: [#382](https://github.com/Dynamoid/dynamoid/pull/382) Fixed deprecation warning about `Module#parent_name` in Rails 6 (@tmandke)
32
- Fix: Typos in Readme.md (@romeuhcf)
39
+ * Fix: [#382](https://github.com/Dynamoid/dynamoid/pull/382) Fixed deprecation warning about `Module#parent_name` in Rails 6 (@tmandke)
40
+ * Fix: Typos in Readme.md (@romeuhcf)
33
41
 
34
42
  ---
35
43
 
@@ -78,14 +78,14 @@ module Dynamoid
78
78
 
79
79
  # if credentials are passed, they already contain access key & secret key
80
80
  if Dynamoid::Config.credentials?
81
- connection_hash[:credentials] = Dynamoid::Config.credentials
81
+ @connection_hash[:credentials] = Dynamoid::Config.credentials
82
82
  else
83
83
  # otherwise, pass access key & secret key for credentials creation
84
84
  if Dynamoid::Config.access_key?
85
- connection_hash[:access_key_id] = Dynamoid::Config.access_key
85
+ @connection_hash[:access_key_id] = Dynamoid::Config.access_key
86
86
  end
87
87
  if Dynamoid::Config.secret_key?
88
- connection_hash[:secret_access_key] = Dynamoid::Config.secret_key
88
+ @connection_hash[:secret_access_key] = Dynamoid::Config.secret_key
89
89
  end
90
90
  end
91
91
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Dynamoid
4
- VERSION = '3.4.0'
4
+ VERSION = '3.4.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dynamoid
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.4.0
4
+ version: 3.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josh Symonds
@@ -21,7 +21,7 @@ authors:
21
21
  autorequire:
22
22
  bindir: exe
23
23
  cert_chain: []
24
- date: 2019-11-30 00:00:00.000000000 Z
24
+ date: 2019-12-02 00:00:00.000000000 Z
25
25
  dependencies:
26
26
  - !ruby/object:Gem::Dependency
27
27
  name: activemodel