# File lib/git-review/settings.rb, line 17
    def method_missing(method, *args)
      if args.empty?
        config.send(method)
      else
        config.send(method, args.shift)
      end
    end