Class: Gzr::Commands::Permissions

Inherits:
Thor
  • Object
show all
Defined in:
lib/gzr/commands/permissions.rb,
lib/gzr/commands/permissions/ls.rb

Defined Under Namespace

Classes: Ls

Instance Method Summary collapse

Instance Method Details

#lsObject



18
19
20
21
22
23
24
25
# File 'lib/gzr/commands/permissions.rb', line 18

def ls(*)
  if options[:help]
    invoke :help, ['ls']
  else
    require_relative 'permissions/ls'
    Gzr::Commands::Permissions::Ls.new(options).execute
  end
end