class Rubyists::Opr::Commands::List

List commands

Public Instance Methods

items(vault = nil) click to toggle source
# File lib/rubyists::opr/commands/list.rb, line 18
def items(vault = nil)
  if options[:help]
    invoke :help, ['items']
  else
    require_relative 'list/items'
    Rubyists::Opr::Commands::List::Items.new(vault, options).execute
  end
end
vaults(*) click to toggle source
# File lib/rubyists::opr/commands/list.rb, line 30
def vaults(*)
  if options[:help]
    invoke :help, ['vaults']
  else
    require_relative 'list/vaults'
    Rubyists::Opr::Commands::List::Vaults.new(options).execute
  end
end