Skip to content

Commit

Permalink
Do not break HashMap with StringAccessorPatch
Browse files Browse the repository at this point in the history
  • Loading branch information
UweKubosch committed Nov 28, 2023
1 parent d7c416a commit 143e76a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group 'no.datek'
version '0.11.6'
version '0.11.7'
final String JRUBY_VERSION = '9.4.5.0';

repositories {
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/ruby/slim_renderer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def method_missing(method_name)

module StringAccessorPatch
def [](key)
super(key.to_s)
super(key) || super(key.to_s)
end
end

Expand Down

0 comments on commit 143e76a

Please sign in to comment.