class OpenStruct

TODO: Temporary fix for missing on OpenStruct in opal

Public Instance Methods

respond_to?(method_name) click to toggle source
Calls superclass method
# File lib/volt/config.rb, line 10
def respond_to?(method_name)
  @table.key?(method_name) || super
end