class Guard::Internals::Groups

def all(filter = nil)

def all(filter = nil)
  return @groups if filter.nil?
  matcher = matcher_for(filter)
  @groups.select { |group| matcher.call(group) }
end