lib/gym/manager.rb in gym-1.2.0 vs lib/gym/manager.rb in gym-1.3.0

- old
+ new

@@ -1,17 +1,13 @@ module Gym class Manager def work(options) Gym.config = options - print_summary + FastlaneCore::PrintTable.print_values(config: Gym.config, + hide_keys: [], + title: "Summary for gym #{Gym::VERSION}") return Runner.new.run - end - - private - - def print_summary - FastlaneCore::PrintTable.print_values(config: Gym.config, hide_keys: [], title: "Summary for gym #{Gym::VERSION}") end end end