class Gzr::Commands::Permissions

Public Instance Methods

ls(*) click to toggle source
# File lib/gzr/commands/permissions.rb, line 39
def ls(*)
  if options[:help]
    invoke :help, ['ls']
  else
    require_relative 'permissions/ls'
    Gzr::Commands::Permissions::Ls.new(options).execute
  end
end