method
respond_to_missing?
v2_6_3 -
Show latest stable
- Class:
OpenStruct
respond_to_missing?(mid, include_private = false)public
No documentation available.
# File lib/ostruct.rb, line 207
def respond_to_missing?(mid, include_private = false) # :nodoc:
mname = mid.to_s.chomp("=").to_sym
@table&.key?(mname) || super
end