module XLSXToHTML::Helpers
Public Instance Methods
method_missing(method_name, *args)
click to toggle source
For accessing configuration methods directly
Calls superclass method
# File lib/xlsx_to_html/helpers.rb, line 4 def method_missing(method_name, *args) super unless XLSXToHTML.configuration.respond_to? method_name XLSXToHTML.configuration.public_send(method_name) end
respond_to_missing?(method_name, include_private = false)
click to toggle source
Calls superclass method
# File lib/xlsx_to_html/helpers.rb, line 10 def respond_to_missing?(method_name, include_private = false) XLSXToHTML.configuration.respond_to?(method_name) || super end