class Erratum::Configuration
Constants
- DEFAULT_ERROR_MAPPINGS
Attributes
developer_documentation_urls[W]
external_documentation_urls[W]
Public Instance Methods
developer_documentation_urls()
click to toggle source
# File lib/erratum/configuration.rb, line 31 def developer_documentation_urls @developer_documentation_urls ||= {} end
error_mappings()
click to toggle source
# File lib/erratum/configuration.rb, line 23 def error_mappings @error_mappings ||= DEFAULT_ERROR_MAPPINGS.dup end
error_mappings=(other)
click to toggle source
# File lib/erratum/configuration.rb, line 27 def error_mappings=(other) @error_mappings = DEFAULT_ERROR_MAPPINGS.merge(other) end
external_documentation_urls()
click to toggle source
# File lib/erratum/configuration.rb, line 35 def external_documentation_urls @external_documentation_urls ||= {} end
to_h()
click to toggle source
# File lib/erratum/configuration.rb, line 39 def to_h { 'external_documentation_urls' => external_documentation_urls, 'developer_documentation_urls' => developer_documentation_urls, } end