class String
Public Instance Methods
testsuite()
click to toggle source
# File lib/fastlane/plugin/retry_tests/helper/xcodebuild_string.rb, line 7 def testsuite if self.testsuite_swift? self.split('.')[1] else self end end
testsuite_swift?()
click to toggle source
# File lib/fastlane/plugin/retry_tests/helper/xcodebuild_string.rb, line 3 def testsuite_swift? self.include?('.') end