Flowdock
method

respond_to_missing?

Importance_0
v2_4_6 - Show latest stable - 0 notes - Class: OpenStruct
respond_to_missing?(mid, include_private = false) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# 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
Register or log in to add new notes.