Sha256: 672d1239a5f2cd1ba716c2eb38d89986a7329f7bc2d285881de790d281c4bac5
Contents?: true
Size: 870 Bytes
Versions: 7
Compression:
Stored size: 870 Bytes
Contents
module Fastlane module Actions class XctoolAction < Action def self.run(params) unless Helper.test? raise 'xctool not installed, please install using `brew install xctool`'.red if `which xctool`.length == 0 end params = [] if params.kind_of?FastlaneCore::Configuration Actions.sh('xctool ' + params.join(' ')) end def self.description "Run tests using xctool" end def self.details [ "It is recommended to store the build configuration in the `.xctool-args` file.", "More information available on GitHub: https://github.com/KrauseFx/fastlane/blob/master/docs/Actions.md#xctool" ].join(' ') end def self.author "KrauseFx" end def self.is_supported?(platform) platform == :ios end end end end
Version data entries
7 entries across 7 versions & 1 rubygems