Sha256: 76fdeea2aea8075d771e8cfd2ab8593a0d7e06afc0a1f155abe8554d588fbdfd

Contents?: true

Size: 701 Bytes

Versions: 3

Compression:

Stored size: 701 Bytes

Contents

require 'fastlane_core/print_table'
require_relative 'module'
require_relative 'runner'

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 #{Fastlane::VERSION}")

      return Runner.new.run
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
fastlane_hotfix-2.165.1 gym/lib/gym/manager.rb
fastlane_hotfix-2.165.0 gym/lib/gym/manager.rb
fastlane_hotfix-2.187.0 gym/lib/gym/manager.rb