Module: OmniAuthConfigure::ConfiguratorLanguage

Included in:
Configurator
Defined in:
lib/omniauth_configure/configuration.rb

Instance Method Summary collapse

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(m, *args, &block) ⇒ Object



29
30
31
32
33
34
35
# File 'lib/omniauth_configure/configuration.rb', line 29

def method_missing(m, *args, &block)
  if @config.respond_to?(:"#{m}=")
    @config.send(:"#{m}=", *args)
  else
    super
  end
end