instance method
locals
Ruby on Rails 8.1.2
Since v7.1.6Signature
locals()
The locals this template has been or will be compiled for, or nil if this is a strict locals template.
Source
# File actionview/lib/action_view/template.rb, line 223
def locals
if strict_locals?
nil
else
@locals
end
end
Defined in actionview/lib/action_view/template.rb line 223
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionView::Template