Method: SentryApi::ObjectifiedHash#respond_to_missing?

Defined in:
lib/sentry-api/objectified_hash.rb

#respond_to_missing?(method_name, include_private = false) ⇒ Boolean

Returns:

  • (Boolean)


31
32
33
# File 'lib/sentry-api/objectified_hash.rb', line 31

def respond_to_missing?(method_name, include_private = false)
  @hash.keys.map(&:to_sym).include?(method_name.to_sym) || super
end