Method: Fastlane::Actions::XctoolAction.example_code
- Defined in:
- fastlane/lib/fastlane/actions/xctool.rb
.example_code ⇒ Object
35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
# File 'fastlane/lib/fastlane/actions/xctool.rb', line 35 def self.example_code [ 'xctool(:test)', '# If you prefer to have the build configuration stored in the `Fastfile`: xctool(:test, [ "--workspace", "\'AwesomeApp.xcworkspace\'", "--scheme", "\'Schema Name\'", "--configuration", "Debug", "--sdk", "iphonesimulator", "--arch", "i386" ].join(" "))' ] end |