Sha256: 465dbc8ca3162d4ef00902bd55533fcf658664d4491a678b7363f4f8cc03d40b
Contents?: true
Size: 861 Bytes
Versions: 32
Compression:
Stored size: 861 Bytes
Contents
module Fastlane module Actions class ScanAction < Action def self.run(values) require 'scan' begin FastlaneCore::UpdateChecker.start_looking_for_update('scan') unless Helper.is_test? Scan::Manager.new.work(values) true ensure FastlaneCore::UpdateChecker.show_update_status('scan', Scan::VERSION) end end def self.description "Easily test your app using `scan`" end def self.details "More information: https://github.com/fastlane/fastlane/tree/master/scan" end def self.author "KrauseFx" end def self.available_options require 'scan' Scan::Options.available_options end def self.is_supported?(platform) [:ios, :mac].include? platform end end end end
Version data entries
32 entries across 32 versions & 1 rubygems