├── .codecov.yml ├── .gitignore ├── .swiftlint.yml ├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── Gemfile.lock ├── IBAnalyzer.podspec ├── IBAnalyzer.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── IBAnalyzer.xcscheme ├── IBAnalyzer.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── IBAnalyzer ├── Analyzers │ ├── Analyzer.swift │ └── ConnectionAnalyzer.swift ├── Helpers │ └── DirectoryContentsEnumerator.swift ├── Info.plist ├── Models │ ├── Class.swift │ └── Nib.swift ├── Parsers │ ├── NibParser.swift │ ├── SwiftParser.swift │ └── UIKitOutlets.swift ├── Runner.swift └── main.swift ├── IBAnalyzerTests ├── ConnectionAnalyzerTests.swift ├── DirectoryContentsEnumeratorTests.swift ├── Examples │ └── Example.storyboard ├── Info.plist ├── NibParserTests.swift ├── RunnerTests.swift ├── Stubs.swift └── SwiftParserTests.swift ├── LICENSE ├── Podfile ├── Podfile.lock ├── Pods ├── Manifest.lock ├── Manifest.lock-e ├── Pods.xcodeproj │ ├── project.pbxproj │ └── project.pbxproj-e ├── SWXMLHash │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── SWXMLHash+TypeConversion.swift │ │ └── SWXMLHash.swift ├── SourceKittenFramework │ ├── LICENSE │ ├── README.md │ └── Source │ │ └── SourceKittenFramework │ │ ├── Clang+SourceKitten.swift │ │ ├── ClangTranslationUnit.swift │ │ ├── CodeCompletionItem.swift │ │ ├── Dictionary+Merge.swift │ │ ├── Documentation.swift │ │ ├── File.swift │ │ ├── JSONOutput.swift │ │ ├── Language.swift │ │ ├── LinuxCompatibility.swift │ │ ├── Module.swift │ │ ├── ObjCDeclarationKind.swift │ │ ├── OffsetMap.swift │ │ ├── Parameter.swift │ │ ├── Request.swift │ │ ├── SourceDeclaration.swift │ │ ├── SourceLocation.swift │ │ ├── StatementKind.swift │ │ ├── String+SourceKitten.swift │ │ ├── Structure.swift │ │ ├── SwiftDeclarationKind.swift │ │ ├── SwiftDocKey.swift │ │ ├── SwiftDocs.swift │ │ ├── SwiftLangSyntax.swift │ │ ├── SyntaxKind.swift │ │ ├── SyntaxMap.swift │ │ ├── SyntaxToken.swift │ │ ├── Text.swift │ │ ├── Version.swift │ │ ├── Xcode.swift │ │ ├── clang-c │ │ ├── BuildSystem.h │ │ ├── CXCompilationDatabase.h │ │ ├── CXErrorCode.h │ │ ├── CXString.h │ │ ├── Documentation.h │ │ ├── Index.h │ │ └── Platform.h │ │ ├── library_wrapper.swift │ │ ├── library_wrapper_CXString.swift │ │ ├── library_wrapper_Documentation.swift │ │ ├── library_wrapper_Index.swift │ │ ├── library_wrapper_sourcekitd.swift │ │ └── sourcekitd.h ├── Target Support Files │ ├── Pods-IBAnalyzer-IBAnalyzerTests │ │ ├── Info.plist │ │ ├── Pods-IBAnalyzer-IBAnalyzerTests-acknowledgements.markdown │ │ ├── Pods-IBAnalyzer-IBAnalyzerTests-acknowledgements.plist │ │ ├── Pods-IBAnalyzer-IBAnalyzerTests-dummy.m │ │ ├── Pods-IBAnalyzer-IBAnalyzerTests-frameworks.sh │ │ ├── Pods-IBAnalyzer-IBAnalyzerTests-resources.sh │ │ ├── Pods-IBAnalyzer-IBAnalyzerTests-umbrella.h │ │ ├── Pods-IBAnalyzer-IBAnalyzerTests.debug.xcconfig │ │ ├── Pods-IBAnalyzer-IBAnalyzerTests.modulemap │ │ └── Pods-IBAnalyzer-IBAnalyzerTests.release.xcconfig │ ├── Pods-IBAnalyzer │ │ ├── Info.plist │ │ ├── Pods-IBAnalyzer-acknowledgements.markdown │ │ ├── Pods-IBAnalyzer-acknowledgements.plist │ │ ├── Pods-IBAnalyzer-dummy.m │ │ ├── Pods-IBAnalyzer-frameworks.sh │ │ ├── Pods-IBAnalyzer-resources.sh │ │ ├── Pods-IBAnalyzer-umbrella.h │ │ ├── Pods-IBAnalyzer.debug.xcconfig │ │ ├── Pods-IBAnalyzer.modulemap │ │ └── Pods-IBAnalyzer.release.xcconfig │ ├── SWXMLHash │ │ ├── Info.plist │ │ ├── SWXMLHash-dummy.m │ │ ├── SWXMLHash-prefix.pch │ │ ├── SWXMLHash-umbrella.h │ │ ├── SWXMLHash.modulemap │ │ └── SWXMLHash.xcconfig │ ├── SourceKittenFramework │ │ ├── Info.plist │ │ ├── SourceKittenFramework-dummy.m │ │ ├── SourceKittenFramework-prefix.pch │ │ ├── SourceKittenFramework-umbrella.h │ │ ├── SourceKittenFramework.modulemap │ │ └── SourceKittenFramework.xcconfig │ └── Yams │ │ ├── Info.plist │ │ ├── Yams-dummy.m │ │ ├── Yams-prefix.pch │ │ ├── Yams-umbrella.h │ │ ├── Yams.modulemap │ │ └── Yams.xcconfig └── Yams │ ├── LICENSE │ ├── README.md │ └── Sources │ ├── CYaml │ ├── include │ │ ├── CYaml.h │ │ └── yaml.h │ └── src │ │ ├── api.c │ │ ├── emitter.c │ │ ├── parser.c │ │ ├── reader.c │ │ ├── scanner.c │ │ ├── writer.c │ │ └── yaml_private.h │ └── Yams │ ├── Constructor.swift │ ├── Decoder.swift │ ├── Emitter.swift │ ├── Encoder.swift │ ├── Mark.swift │ ├── Node.Mapping.swift │ ├── Node.Scalar.swift │ ├── Node.Sequence.swift │ ├── Node.swift │ ├── Parser.swift │ ├── Representer.swift │ ├── Resolver.swift │ ├── String+Yams.swift │ ├── Tag.swift │ ├── YamlError.swift │ └── Yams.h ├── README.md ├── Rakefile ├── Resources ├── unnecessary-action@2x.png └── unnecessary-outlet@2x.png └── bin └── ibanalyzer /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /IBAnalyzer.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/IBAnalyzer.podspec -------------------------------------------------------------------------------- /IBAnalyzer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/IBAnalyzer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /IBAnalyzer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/IBAnalyzer.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /IBAnalyzer.xcodeproj/xcshareddata/xcschemes/IBAnalyzer.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/IBAnalyzer.xcodeproj/xcshareddata/xcschemes/IBAnalyzer.xcscheme -------------------------------------------------------------------------------- /IBAnalyzer.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/IBAnalyzer.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /IBAnalyzer.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/IBAnalyzer.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /IBAnalyzer/Analyzers/Analyzer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/IBAnalyzer/Analyzers/Analyzer.swift -------------------------------------------------------------------------------- /IBAnalyzer/Analyzers/ConnectionAnalyzer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/IBAnalyzer/Analyzers/ConnectionAnalyzer.swift -------------------------------------------------------------------------------- /IBAnalyzer/Helpers/DirectoryContentsEnumerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/IBAnalyzer/Helpers/DirectoryContentsEnumerator.swift -------------------------------------------------------------------------------- /IBAnalyzer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/IBAnalyzer/Info.plist -------------------------------------------------------------------------------- /IBAnalyzer/Models/Class.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/IBAnalyzer/Models/Class.swift -------------------------------------------------------------------------------- /IBAnalyzer/Models/Nib.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/IBAnalyzer/Models/Nib.swift -------------------------------------------------------------------------------- /IBAnalyzer/Parsers/NibParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/IBAnalyzer/Parsers/NibParser.swift -------------------------------------------------------------------------------- /IBAnalyzer/Parsers/SwiftParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/IBAnalyzer/Parsers/SwiftParser.swift -------------------------------------------------------------------------------- /IBAnalyzer/Parsers/UIKitOutlets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/IBAnalyzer/Parsers/UIKitOutlets.swift -------------------------------------------------------------------------------- /IBAnalyzer/Runner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/IBAnalyzer/Runner.swift -------------------------------------------------------------------------------- /IBAnalyzer/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/IBAnalyzer/main.swift -------------------------------------------------------------------------------- /IBAnalyzerTests/ConnectionAnalyzerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/IBAnalyzerTests/ConnectionAnalyzerTests.swift -------------------------------------------------------------------------------- /IBAnalyzerTests/DirectoryContentsEnumeratorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/IBAnalyzerTests/DirectoryContentsEnumeratorTests.swift -------------------------------------------------------------------------------- /IBAnalyzerTests/Examples/Example.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/IBAnalyzerTests/Examples/Example.storyboard -------------------------------------------------------------------------------- /IBAnalyzerTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/IBAnalyzerTests/Info.plist -------------------------------------------------------------------------------- /IBAnalyzerTests/NibParserTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/IBAnalyzerTests/NibParserTests.swift -------------------------------------------------------------------------------- /IBAnalyzerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/IBAnalyzerTests/RunnerTests.swift -------------------------------------------------------------------------------- /IBAnalyzerTests/Stubs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/IBAnalyzerTests/Stubs.swift -------------------------------------------------------------------------------- /IBAnalyzerTests/SwiftParserTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/IBAnalyzerTests/SwiftParserTests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Manifest.lock-e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Manifest.lock-e -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj-e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Pods.xcodeproj/project.pbxproj-e -------------------------------------------------------------------------------- /Pods/SWXMLHash/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SWXMLHash/LICENSE -------------------------------------------------------------------------------- /Pods/SWXMLHash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SWXMLHash/README.md -------------------------------------------------------------------------------- /Pods/SWXMLHash/Source/SWXMLHash+TypeConversion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SWXMLHash/Source/SWXMLHash+TypeConversion.swift -------------------------------------------------------------------------------- /Pods/SWXMLHash/Source/SWXMLHash.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SWXMLHash/Source/SWXMLHash.swift -------------------------------------------------------------------------------- /Pods/SourceKittenFramework/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SourceKittenFramework/LICENSE -------------------------------------------------------------------------------- /Pods/SourceKittenFramework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SourceKittenFramework/README.md -------------------------------------------------------------------------------- /Pods/SourceKittenFramework/Source/SourceKittenFramework/Clang+SourceKitten.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SourceKittenFramework/Source/SourceKittenFramework/Clang+SourceKitten.swift -------------------------------------------------------------------------------- /Pods/SourceKittenFramework/Source/SourceKittenFramework/ClangTranslationUnit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SourceKittenFramework/Source/SourceKittenFramework/ClangTranslationUnit.swift -------------------------------------------------------------------------------- /Pods/SourceKittenFramework/Source/SourceKittenFramework/CodeCompletionItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SourceKittenFramework/Source/SourceKittenFramework/CodeCompletionItem.swift -------------------------------------------------------------------------------- /Pods/SourceKittenFramework/Source/SourceKittenFramework/Dictionary+Merge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SourceKittenFramework/Source/SourceKittenFramework/Dictionary+Merge.swift -------------------------------------------------------------------------------- /Pods/SourceKittenFramework/Source/SourceKittenFramework/Documentation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SourceKittenFramework/Source/SourceKittenFramework/Documentation.swift -------------------------------------------------------------------------------- /Pods/SourceKittenFramework/Source/SourceKittenFramework/File.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SourceKittenFramework/Source/SourceKittenFramework/File.swift -------------------------------------------------------------------------------- /Pods/SourceKittenFramework/Source/SourceKittenFramework/JSONOutput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SourceKittenFramework/Source/SourceKittenFramework/JSONOutput.swift -------------------------------------------------------------------------------- /Pods/SourceKittenFramework/Source/SourceKittenFramework/Language.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SourceKittenFramework/Source/SourceKittenFramework/Language.swift -------------------------------------------------------------------------------- /Pods/SourceKittenFramework/Source/SourceKittenFramework/LinuxCompatibility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SourceKittenFramework/Source/SourceKittenFramework/LinuxCompatibility.swift -------------------------------------------------------------------------------- /Pods/SourceKittenFramework/Source/SourceKittenFramework/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SourceKittenFramework/Source/SourceKittenFramework/Module.swift -------------------------------------------------------------------------------- /Pods/SourceKittenFramework/Source/SourceKittenFramework/ObjCDeclarationKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SourceKittenFramework/Source/SourceKittenFramework/ObjCDeclarationKind.swift -------------------------------------------------------------------------------- /Pods/SourceKittenFramework/Source/SourceKittenFramework/OffsetMap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SourceKittenFramework/Source/SourceKittenFramework/OffsetMap.swift -------------------------------------------------------------------------------- /Pods/SourceKittenFramework/Source/SourceKittenFramework/Parameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SourceKittenFramework/Source/SourceKittenFramework/Parameter.swift -------------------------------------------------------------------------------- /Pods/SourceKittenFramework/Source/SourceKittenFramework/Request.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SourceKittenFramework/Source/SourceKittenFramework/Request.swift -------------------------------------------------------------------------------- /Pods/SourceKittenFramework/Source/SourceKittenFramework/SourceDeclaration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SourceKittenFramework/Source/SourceKittenFramework/SourceDeclaration.swift -------------------------------------------------------------------------------- /Pods/SourceKittenFramework/Source/SourceKittenFramework/SourceLocation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SourceKittenFramework/Source/SourceKittenFramework/SourceLocation.swift -------------------------------------------------------------------------------- /Pods/SourceKittenFramework/Source/SourceKittenFramework/StatementKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SourceKittenFramework/Source/SourceKittenFramework/StatementKind.swift -------------------------------------------------------------------------------- /Pods/SourceKittenFramework/Source/SourceKittenFramework/String+SourceKitten.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SourceKittenFramework/Source/SourceKittenFramework/String+SourceKitten.swift -------------------------------------------------------------------------------- /Pods/SourceKittenFramework/Source/SourceKittenFramework/Structure.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SourceKittenFramework/Source/SourceKittenFramework/Structure.swift -------------------------------------------------------------------------------- /Pods/SourceKittenFramework/Source/SourceKittenFramework/SwiftDeclarationKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SourceKittenFramework/Source/SourceKittenFramework/SwiftDeclarationKind.swift -------------------------------------------------------------------------------- /Pods/SourceKittenFramework/Source/SourceKittenFramework/SwiftDocKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SourceKittenFramework/Source/SourceKittenFramework/SwiftDocKey.swift -------------------------------------------------------------------------------- /Pods/SourceKittenFramework/Source/SourceKittenFramework/SwiftDocs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SourceKittenFramework/Source/SourceKittenFramework/SwiftDocs.swift -------------------------------------------------------------------------------- /Pods/SourceKittenFramework/Source/SourceKittenFramework/SwiftLangSyntax.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SourceKittenFramework/Source/SourceKittenFramework/SwiftLangSyntax.swift -------------------------------------------------------------------------------- /Pods/SourceKittenFramework/Source/SourceKittenFramework/SyntaxKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SourceKittenFramework/Source/SourceKittenFramework/SyntaxKind.swift -------------------------------------------------------------------------------- /Pods/SourceKittenFramework/Source/SourceKittenFramework/SyntaxMap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SourceKittenFramework/Source/SourceKittenFramework/SyntaxMap.swift -------------------------------------------------------------------------------- /Pods/SourceKittenFramework/Source/SourceKittenFramework/SyntaxToken.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SourceKittenFramework/Source/SourceKittenFramework/SyntaxToken.swift -------------------------------------------------------------------------------- /Pods/SourceKittenFramework/Source/SourceKittenFramework/Text.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SourceKittenFramework/Source/SourceKittenFramework/Text.swift -------------------------------------------------------------------------------- /Pods/SourceKittenFramework/Source/SourceKittenFramework/Version.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SourceKittenFramework/Source/SourceKittenFramework/Version.swift -------------------------------------------------------------------------------- /Pods/SourceKittenFramework/Source/SourceKittenFramework/Xcode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SourceKittenFramework/Source/SourceKittenFramework/Xcode.swift -------------------------------------------------------------------------------- /Pods/SourceKittenFramework/Source/SourceKittenFramework/clang-c/BuildSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SourceKittenFramework/Source/SourceKittenFramework/clang-c/BuildSystem.h -------------------------------------------------------------------------------- /Pods/SourceKittenFramework/Source/SourceKittenFramework/clang-c/CXCompilationDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SourceKittenFramework/Source/SourceKittenFramework/clang-c/CXCompilationDatabase.h -------------------------------------------------------------------------------- /Pods/SourceKittenFramework/Source/SourceKittenFramework/clang-c/CXErrorCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SourceKittenFramework/Source/SourceKittenFramework/clang-c/CXErrorCode.h -------------------------------------------------------------------------------- /Pods/SourceKittenFramework/Source/SourceKittenFramework/clang-c/CXString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SourceKittenFramework/Source/SourceKittenFramework/clang-c/CXString.h -------------------------------------------------------------------------------- /Pods/SourceKittenFramework/Source/SourceKittenFramework/clang-c/Documentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SourceKittenFramework/Source/SourceKittenFramework/clang-c/Documentation.h -------------------------------------------------------------------------------- /Pods/SourceKittenFramework/Source/SourceKittenFramework/clang-c/Index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SourceKittenFramework/Source/SourceKittenFramework/clang-c/Index.h -------------------------------------------------------------------------------- /Pods/SourceKittenFramework/Source/SourceKittenFramework/clang-c/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SourceKittenFramework/Source/SourceKittenFramework/clang-c/Platform.h -------------------------------------------------------------------------------- /Pods/SourceKittenFramework/Source/SourceKittenFramework/library_wrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SourceKittenFramework/Source/SourceKittenFramework/library_wrapper.swift -------------------------------------------------------------------------------- /Pods/SourceKittenFramework/Source/SourceKittenFramework/library_wrapper_CXString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SourceKittenFramework/Source/SourceKittenFramework/library_wrapper_CXString.swift -------------------------------------------------------------------------------- /Pods/SourceKittenFramework/Source/SourceKittenFramework/library_wrapper_Documentation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SourceKittenFramework/Source/SourceKittenFramework/library_wrapper_Documentation.swift -------------------------------------------------------------------------------- /Pods/SourceKittenFramework/Source/SourceKittenFramework/library_wrapper_Index.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SourceKittenFramework/Source/SourceKittenFramework/library_wrapper_Index.swift -------------------------------------------------------------------------------- /Pods/SourceKittenFramework/Source/SourceKittenFramework/library_wrapper_sourcekitd.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SourceKittenFramework/Source/SourceKittenFramework/library_wrapper_sourcekitd.swift -------------------------------------------------------------------------------- /Pods/SourceKittenFramework/Source/SourceKittenFramework/sourcekitd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/SourceKittenFramework/Source/SourceKittenFramework/sourcekitd.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-IBAnalyzer-IBAnalyzerTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Target Support Files/Pods-IBAnalyzer-IBAnalyzerTests/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-IBAnalyzer-IBAnalyzerTests/Pods-IBAnalyzer-IBAnalyzerTests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Target Support Files/Pods-IBAnalyzer-IBAnalyzerTests/Pods-IBAnalyzer-IBAnalyzerTests-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-IBAnalyzer-IBAnalyzerTests/Pods-IBAnalyzer-IBAnalyzerTests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Target Support Files/Pods-IBAnalyzer-IBAnalyzerTests/Pods-IBAnalyzer-IBAnalyzerTests-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-IBAnalyzer-IBAnalyzerTests/Pods-IBAnalyzer-IBAnalyzerTests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Target Support Files/Pods-IBAnalyzer-IBAnalyzerTests/Pods-IBAnalyzer-IBAnalyzerTests-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-IBAnalyzer-IBAnalyzerTests/Pods-IBAnalyzer-IBAnalyzerTests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Target Support Files/Pods-IBAnalyzer-IBAnalyzerTests/Pods-IBAnalyzer-IBAnalyzerTests-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-IBAnalyzer-IBAnalyzerTests/Pods-IBAnalyzer-IBAnalyzerTests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Target Support Files/Pods-IBAnalyzer-IBAnalyzerTests/Pods-IBAnalyzer-IBAnalyzerTests-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-IBAnalyzer-IBAnalyzerTests/Pods-IBAnalyzer-IBAnalyzerTests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Target Support Files/Pods-IBAnalyzer-IBAnalyzerTests/Pods-IBAnalyzer-IBAnalyzerTests-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-IBAnalyzer-IBAnalyzerTests/Pods-IBAnalyzer-IBAnalyzerTests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Target Support Files/Pods-IBAnalyzer-IBAnalyzerTests/Pods-IBAnalyzer-IBAnalyzerTests.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-IBAnalyzer-IBAnalyzerTests/Pods-IBAnalyzer-IBAnalyzerTests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Target Support Files/Pods-IBAnalyzer-IBAnalyzerTests/Pods-IBAnalyzer-IBAnalyzerTests.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-IBAnalyzer-IBAnalyzerTests/Pods-IBAnalyzer-IBAnalyzerTests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Target Support Files/Pods-IBAnalyzer-IBAnalyzerTests/Pods-IBAnalyzer-IBAnalyzerTests.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-IBAnalyzer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Target Support Files/Pods-IBAnalyzer/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-IBAnalyzer/Pods-IBAnalyzer-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Target Support Files/Pods-IBAnalyzer/Pods-IBAnalyzer-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-IBAnalyzer/Pods-IBAnalyzer-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Target Support Files/Pods-IBAnalyzer/Pods-IBAnalyzer-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-IBAnalyzer/Pods-IBAnalyzer-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Target Support Files/Pods-IBAnalyzer/Pods-IBAnalyzer-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-IBAnalyzer/Pods-IBAnalyzer-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Target Support Files/Pods-IBAnalyzer/Pods-IBAnalyzer-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-IBAnalyzer/Pods-IBAnalyzer-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Target Support Files/Pods-IBAnalyzer/Pods-IBAnalyzer-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-IBAnalyzer/Pods-IBAnalyzer-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Target Support Files/Pods-IBAnalyzer/Pods-IBAnalyzer-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-IBAnalyzer/Pods-IBAnalyzer.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Target Support Files/Pods-IBAnalyzer/Pods-IBAnalyzer.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-IBAnalyzer/Pods-IBAnalyzer.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Target Support Files/Pods-IBAnalyzer/Pods-IBAnalyzer.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-IBAnalyzer/Pods-IBAnalyzer.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Target Support Files/Pods-IBAnalyzer/Pods-IBAnalyzer.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SWXMLHash/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Target Support Files/SWXMLHash/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/SWXMLHash/SWXMLHash-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Target Support Files/SWXMLHash/SWXMLHash-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/SWXMLHash/SWXMLHash-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Target Support Files/SWXMLHash/SWXMLHash-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/SWXMLHash/SWXMLHash-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Target Support Files/SWXMLHash/SWXMLHash-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/SWXMLHash/SWXMLHash.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Target Support Files/SWXMLHash/SWXMLHash.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/SWXMLHash/SWXMLHash.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Target Support Files/SWXMLHash/SWXMLHash.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SourceKittenFramework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Target Support Files/SourceKittenFramework/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/SourceKittenFramework/SourceKittenFramework-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Target Support Files/SourceKittenFramework/SourceKittenFramework-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/SourceKittenFramework/SourceKittenFramework-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Target Support Files/SourceKittenFramework/SourceKittenFramework-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/SourceKittenFramework/SourceKittenFramework-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Target Support Files/SourceKittenFramework/SourceKittenFramework-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/SourceKittenFramework/SourceKittenFramework.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Target Support Files/SourceKittenFramework/SourceKittenFramework.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/SourceKittenFramework/SourceKittenFramework.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Target Support Files/SourceKittenFramework/SourceKittenFramework.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Yams/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Target Support Files/Yams/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Yams/Yams-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Target Support Files/Yams/Yams-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Yams/Yams-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Target Support Files/Yams/Yams-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Yams/Yams-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Target Support Files/Yams/Yams-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Yams/Yams.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Target Support Files/Yams/Yams.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Yams/Yams.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Target Support Files/Yams/Yams.xcconfig -------------------------------------------------------------------------------- /Pods/Yams/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Yams/LICENSE -------------------------------------------------------------------------------- /Pods/Yams/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Yams/README.md -------------------------------------------------------------------------------- /Pods/Yams/Sources/CYaml/include/CYaml.h: -------------------------------------------------------------------------------- 1 | #include "yaml.h" 2 | -------------------------------------------------------------------------------- /Pods/Yams/Sources/CYaml/include/yaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Yams/Sources/CYaml/include/yaml.h -------------------------------------------------------------------------------- /Pods/Yams/Sources/CYaml/src/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Yams/Sources/CYaml/src/api.c -------------------------------------------------------------------------------- /Pods/Yams/Sources/CYaml/src/emitter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Yams/Sources/CYaml/src/emitter.c -------------------------------------------------------------------------------- /Pods/Yams/Sources/CYaml/src/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Yams/Sources/CYaml/src/parser.c -------------------------------------------------------------------------------- /Pods/Yams/Sources/CYaml/src/reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Yams/Sources/CYaml/src/reader.c -------------------------------------------------------------------------------- /Pods/Yams/Sources/CYaml/src/scanner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Yams/Sources/CYaml/src/scanner.c -------------------------------------------------------------------------------- /Pods/Yams/Sources/CYaml/src/writer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Yams/Sources/CYaml/src/writer.c -------------------------------------------------------------------------------- /Pods/Yams/Sources/CYaml/src/yaml_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Yams/Sources/CYaml/src/yaml_private.h -------------------------------------------------------------------------------- /Pods/Yams/Sources/Yams/Constructor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Yams/Sources/Yams/Constructor.swift -------------------------------------------------------------------------------- /Pods/Yams/Sources/Yams/Decoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Yams/Sources/Yams/Decoder.swift -------------------------------------------------------------------------------- /Pods/Yams/Sources/Yams/Emitter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Yams/Sources/Yams/Emitter.swift -------------------------------------------------------------------------------- /Pods/Yams/Sources/Yams/Encoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Yams/Sources/Yams/Encoder.swift -------------------------------------------------------------------------------- /Pods/Yams/Sources/Yams/Mark.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Yams/Sources/Yams/Mark.swift -------------------------------------------------------------------------------- /Pods/Yams/Sources/Yams/Node.Mapping.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Yams/Sources/Yams/Node.Mapping.swift -------------------------------------------------------------------------------- /Pods/Yams/Sources/Yams/Node.Scalar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Yams/Sources/Yams/Node.Scalar.swift -------------------------------------------------------------------------------- /Pods/Yams/Sources/Yams/Node.Sequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Yams/Sources/Yams/Node.Sequence.swift -------------------------------------------------------------------------------- /Pods/Yams/Sources/Yams/Node.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Yams/Sources/Yams/Node.swift -------------------------------------------------------------------------------- /Pods/Yams/Sources/Yams/Parser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Yams/Sources/Yams/Parser.swift -------------------------------------------------------------------------------- /Pods/Yams/Sources/Yams/Representer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Yams/Sources/Yams/Representer.swift -------------------------------------------------------------------------------- /Pods/Yams/Sources/Yams/Resolver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Yams/Sources/Yams/Resolver.swift -------------------------------------------------------------------------------- /Pods/Yams/Sources/Yams/String+Yams.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Yams/Sources/Yams/String+Yams.swift -------------------------------------------------------------------------------- /Pods/Yams/Sources/Yams/Tag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Yams/Sources/Yams/Tag.swift -------------------------------------------------------------------------------- /Pods/Yams/Sources/Yams/YamlError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Yams/Sources/Yams/YamlError.swift -------------------------------------------------------------------------------- /Pods/Yams/Sources/Yams/Yams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Pods/Yams/Sources/Yams/Yams.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Rakefile -------------------------------------------------------------------------------- /Resources/unnecessary-action@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Resources/unnecessary-action@2x.png -------------------------------------------------------------------------------- /Resources/unnecessary-outlet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/Resources/unnecessary-outlet@2x.png -------------------------------------------------------------------------------- /bin/ibanalyzer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastred/IBAnalyzer/HEAD/bin/ibanalyzer --------------------------------------------------------------------------------