class BitexBot::FileSettings

Documentation here!

Public Instance Methods

method_missing(name, *args, &block) click to toggle source
Calls superclass method
# File lib/bitex_bot/settings.rb, line 9
def method_missing(name, *args, &block)
  return super unless args.none? && args.size == 1

  self[name] = args.first
end
respond_to_missing?(method_name, include_private = false) click to toggle source
Calls superclass method
# File lib/bitex_bot/settings.rb, line 15
def respond_to_missing?(method_name, include_private = false)
  respond_to?(method_name) || super
end