lib/pilot/tester_manager.rb in pilot-1.3.0 vs lib/pilot/tester_manager.rb in pilot-1.4.0
- old
+ new
@@ -85,15 +85,15 @@
private
def list(all_testers, title)
rows = []
all_testers.each do |tester|
- rows << [tester.first_name, tester.last_name, tester.email, tester.devices.count]
+ rows << [tester.first_name, tester.last_name, tester.email, tester.devices.count, tester.full_version, tester.pretty_install_date]
end
puts Terminal::Table.new(
title: title.green,
- headings: ["First", "Last", "Email", "Devices"],
+ headings: ["First", "Last", "Email", "Devices", "Latest Version", "Latest Install Date"],
rows: rows
)
end
# Print out all the details of a specific tester