Sha256: 7de50d75e3840b354760e73e3b39fbef6742ee0c37c59e1a48d5aef9021dd771

Contents?: true

Size: 584 Bytes

Versions: 5

Compression:

Stored size: 584 Bytes

Contents

module Gym
  class Manager
    def work(options)
      Gym.config = options

      # Also print out the path to the used Xcode installation
      # We go 2 folders up, to not show "Contents/Developer/"
      values = Gym.config.values(ask: false)
      values[:xcode_path] = File.expand_path("../..", FastlaneCore::Helper.xcode_path)
      FastlaneCore::PrintTable.print_values(config: values,
                                         hide_keys: [],
                                             title: "Summary for gym #{Gym::VERSION}")

      return Runner.new.run
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
gym-2.0.0 lib/gym/manager.rb
gym-1.13.0 lib/gym/manager.rb
gym-1.12.1 lib/gym/manager.rb
gym-1.12.0 lib/gym/manager.rb
gym-1.11.3 lib/gym/manager.rb