We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de26cad commit 369445cCopy full SHA for 369445c
CHANGELOG.md
@@ -2,6 +2,7 @@
2
3
#### Features
4
5
+* [#2574](https://github.com/ruby-grape/grape/pull/2574) Reduce ActiveSupport::Concern usage - [@ericproulx](https://github.com/ericproulx).
6
* Your contribution here.
7
8
#### Fixes
spec/grape/dsl/inside_route_spec.rb
@@ -54,7 +54,7 @@ def namespace_inheritable_hash
54
end
55
56
def namespace_stackable_hash
57
- @namespace_stackable_hash ||= Hash.new { [] }
+ @namespace_stackable_hash ||= Hash.new { |h, k| h[k] = [] }
58
59
60
def namespace_stackable_with_hash_hash
0 commit comments