Sha256: c5d7e0330e0c549ff69c9025893039459b9d527acb23d235e230564e98e5c8c5
Contents?: true
Size: 706 Bytes
Versions: 521
Compression:
Stored size: 706 Bytes
Contents
require 'fastlane_core/print_table' require_relative 'module' require_relative 'runner' module Scan class Manager def work(options) Scan.config = options # Also print out the path to the used Xcode installation # We go 2 folders up, to not show "Contents/Developer/" values = Scan.config.values(ask: false) values[:xcode_path] = File.expand_path("../..", FastlaneCore::Helper.xcode_path) FastlaneCore::PrintTable.print_values(config: values, hide_keys: [:destination, :slack_url], title: "Summary for scan #{Fastlane::VERSION}") return Runner.new.run end end end
Version data entries
521 entries across 521 versions & 2 rubygems
Version | Path |
---|---|
fastlane-2.74.0.beta.20180107010004 | scan/lib/scan/manager.rb |