fastlane/lib/fastlane/lane_manager.rb in fastlane-2.27.0.beta.20170408010009 vs fastlane/lib/fastlane/lane_manager.rb in fastlane-2.27.0.beta.20170409010031
- old
+ new
@@ -113,11 +113,11 @@
puts ""
puts Terminal::Table.new(
title: "fastlane summary".green,
headings: ["Step", "Action", "Time (in s)"],
- rows: rows
+ rows: FastlaneCore::PrintTable.transform_output(rows)
)
puts ""
end
# Lane chooser if user didn't provide a lane
@@ -143,11 +143,11 @@
rows << [0, "cancel", "No selection, exit fastlane!"]
table = Terminal::Table.new(
title: "Available lanes to run",
headings: ['Number', 'Lane Name', 'Description'],
- rows: rows
+ rows: FastlaneCore::PrintTable.transform_output(rows)
)
UI.message "Welcome to fastlane! Here's what your app is setup to do:"
puts table
@@ -230,15 +230,14 @@
# Print a nice table unless in FastlaneCore::Globals.verbose? mode
rows = Actions.lane_context.collect do |key, content|
[key, content.to_s]
end
- rows = FastlaneCore::PrintTable.limit_row_size(rows)
require 'terminal-table'
puts Terminal::Table.new({
title: "Lane Context".yellow,
- rows: rows
+ rows: FastlaneCore::PrintTable.transform_output(rows)
})
end
end
end