method

respond_to_missing?

ruby latest stable - Class: OpenStruct
respond_to_missing?(mid, include_private = false)
public

No documentation available.

# File lib/ostruct.rb, line 193
  def respond_to_missing?(mid, include_private = false) # :nodoc:
    mname = mid.to_s.chomp("=").to_sym
    @table&.key?(mname) || super
  end