Sha256: 8764c0dd8741b0c95dcabbf2cb84b253b2135ce13485227f443dec7b6c8b29f2
Contents?: true
Size: 679 Bytes
Versions: 660
Compression:
Stored size: 679 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
660 entries across 660 versions & 5 rubygems