class CustomReport::Settings

Public Instance Methods

method_missing(name, *args) click to toggle source
Calls superclass method
# File lib/custom_report/settings.rb, line 3
def method_missing(name, *args)
  return self[name] if args.length == 0
  self[name] = args.first if args.length == 1
  super
end