Sha256: 400a1cb68b2592accd90bb3764587cec0b795e8b7b51b86721e7d2870391b1ad

Contents?: true

Size: 613 Bytes

Versions: 4

Compression:

Stored size: 613 Bytes

Contents

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

      return Runner.new.run
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
scan-1.0.0 lib/scan/manager.rb
scan-0.14.2 lib/scan/manager.rb
scan-0.14.1 lib/scan/manager.rb
scan-0.14.0 lib/scan/manager.rb