global

def all_methods(obj, opts)

Get all the methods that we'll want to output
def all_methods(obj, opts)
  opts.present?(:'instance-methods') ? Pry::Method.all_from_class(obj) : Pry::Method.all_from_obj(obj)
end