We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e21f77d commit ea4b0b8Copy full SHA for ea4b0b8
CHANGELOG.md
@@ -1,3 +1,15 @@
1
+## 2.3.2
2
+
3
+- Fix hash type with indifferent access.
4
5
+```rb
6
+Setting.smtp_settings = { foo: 1, bar: 2 }
7
+Setting.smtp_settings[:foo]
8
+=> 1
9
+Setting.smtp_settings["foo"]
10
11
+```
12
13
## 2.3.1
14
15
- Add `get_field` method to get field option.
Gemfile.lock
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
- rails-settings-cached (2.3.1)
+ rails-settings-cached (2.3.2)
rails (>= 4.2.0)
request_store
lib/rails-settings/version.rb
@@ -3,7 +3,7 @@
module RailsSettings
class << self
def version
- "2.3.1"
+ "2.3.2"
end
0 commit comments