This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Pod::Spec.new do |s| | |
| s.name = 'AppSpectorSDKE2E' | |
| s.version = '1.4.7' | |
| s.summary = 'Debugging doesn\'t have to be painful!' | |
| s.homepage = 'http://appspector.com' | |
| s.license = { type: 'MIT', file: 'LICENSE' } | |
| s.author = { 'Techery' => 'heroes@techery.io' } | |
| s.platform = :ios | |
| s.ios.deployment_target = '10.0' | |
| s.source = { :http => 'https://github.com/appspector/ios-sdk/blob/master/AppSpectorSDKE2E.zip?raw=true' } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Builds xcframework from iOS framework template project called TestFramework | |
| # Archive for iOS | |
| xcodebuild archive -scheme TestFramework -destination="iOS" -archivePath /tmp/xcf/ios.xcarchive -derivedDataPath /tmp/iphoneos -sdk iphoneos SKIP_INSTALL=NO BUILD_LIBRARY_FOR_DISTRIBUTION=YES | |
| # Archive for simulator | |
| xcodebuild archive -scheme TestFramework -destination="iOS Simulator" -archivePath /tmp/xcf/iossimulator.xcarchive -derivedDataPath /tmp/iphoneos -sdk iphonesimulator SKIP_INSTALL=NO BUILD_LIBRARY_FOR_DISTRIBUTION=YES | |
| # Build xcframework with two archives | |
| xcodebuild -create-xcframework -framework /tmp/xcf/ios.xcarchive/Products/Library/Frameworks/TestFramework.framework -framework /tmp/xcf/iossimulator.xcarchive/Products/Library/Frameworks/TestFramework.framework -output /tmp/xcf/TestFrame |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| => Switching to working directory: /Users/vagrant/git | |
| $ cd /Users/vagrant/git | |
| 2015/12/11 05:20:09 Failed to get valid project file (invalid project file): Standalone.workspace | |
| exit status 1 | |
| ERRO[05:20:09] Step (Xcode: Unit Test) failed, error: (exit status 1) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # with space in path | |
| zardoz@MBPR ~/Projects/LittleMouse (master*) $ ./objc-dependency-visualizer/generate-objc-dependencies-to-json.rb -d -p "/Users/zardoz/Library/Developer/Xcode/DerivedData/Little_Mouse-amujtlftngfqiwftknemzgkcsiep/Build/Intermediates/Little Mouse.build/Debug-iphonesimulator/Little_Mouse.build" | |
| var dependencies = { | |
| links: | |
| [ | |
| error: unable to open '/Users/zardoz/Library/Developer/Xcode/DerivedData/Little_Mouse-amujtlftngfqiwftknemzgkcsiep/Build/Intermediates/Little': No such file or directory | |
| # with escaped space | |
| zardoz@MBPR ~/Projects/LittleMouse (master*) $ ./objc-dependency-visualizer/generate-objc-dependencies-to-json.rb -d -p "/Users/zardoz/Library/Developer/Xcode/DerivedData/Little_Mouse-amujtlftngfqiwftknemzgkcsiep/Build/Intermediates/Little\ Mouse.build/Debug-iphonesimulator/Little_Mouse.build" | |
| var dependencies = { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| zardoz@MBPR ~/Projects/LittleMouse (master*) $ ./objc-dependency-visualizer/generate-objc-dependencies-to-json.rb -d -p "/Users/zardoz/Library/Developer/Xcode/DerivedData/Little_Mouse-amujtlftngfqiwftknemzgkcsiep/Build/Intermediates/Little Mouse.build/Debug-iphonesimulator/Little_Mouse.build" | |
| var dependencies = { | |
| links: | |
| [ | |
| error: unable to open '/Users/zardoz/Library/Developer/Xcode/DerivedData/Little_Mouse-amujtlftngfqiwftknemzgkcsiep/Build/Intermediates/Little': No such file or directory |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| zardoz@MBPR ~/Projects/LittleMouse (master*) $ ./objc-dependency-visualizer/generate-objc-dependencies-to-json.rb -d -p "/Users/zardoz/Library/Developer/Xcode/DerivedData/Little_Mouse-amujtlftngfqiwftknemzgkcsiep/Build/Intermediates/Little Mouse.build/Debug-iphonesimulator/Little_Mouse.build" | |
| var dependencies = { | |
| links: | |
| [ | |
| error: unable to open '/Users/zardoz/Library/Developer/Xcode/DerivedData/Little_Mouse-amujtlftngfqiwftknemzgkcsiep/Build/Intermediates/Little': No such file or directory |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| func foo(first: Int, second: Int, third: String) { | |
| //... | |
| } | |
| let args = (1, 2, "bar") | |
| foo(args) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| switch (poiModel.visited, poiModel.type) { | |
| case (true, Poi.Type.Star) : annotationView.type = LMPoiAnnotationView.IconType.VisitedSpecial | |
| case (true, _) : annotationView.type = LMPoiAnnotationView.IconType.Visited | |
| case (false, Poi.Type.Star) : annotationView.type = LMPoiAnnotationView.IconType.MissedSpecial | |
| case (false, _) : annotationView.type = LMPoiAnnotationView.IconType.Missed | |
| default : () | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| echo $1 | tr "[:lower:]" "[:upper:]" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://www.icloud.com/pages/AwBWCAESECFa5ANJ2Ovm6rGZnxOShfkaKtAtWbKL-kWs26XjE2zH6CAXwVDf_16tEpOv7IEWX2lKZQp8rY-O5Sc65gMCUCAQEEIDfFCoaj_HzFdXxDkjW3iLQnO3cT5hCKoV6X5-JQQgXW#Blank_7 |
NewerOlder