class Gerrit::Command::Groups

List all groups the user can view.

Public Instance Methods

execute() click to toggle source
# File lib/gerrit/command/groups.rb, line 4
def execute
  client.groups.each do |group|
    ui.print group
  end
end