class PRGM::Commands::List

Public Instance Methods

execute() click to toggle source
# File lib/prgm/commands/list.rb, line 4
def execute
  PRGM::Models::Item.all.each { |i| puts i.to_s}
end