# File lib/dister/options.rb, line 26
    def method_missing(method, *args)
      method_name = method.to_s
      if (method_name =~ /=$/).nil?
        # Getter
        provide[method_name]
      else
        # Setter
        store(method_name[0..-2], args.first)
      end
    end