├── .gitignore ├── .gitmodules ├── .travis.yml ├── Cartfile ├── Cartfile.resolved ├── Documentation └── Images │ └── pancake_all_demo.gif ├── ISSUE_TEMPLATE.md ├── LICENSE ├── Makefile ├── PULL_REQUEST_TEMPLATE.md ├── Pancake.pkg ├── Pancake.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── PancakeKit.xcscheme │ └── pancake.xcscheme ├── Pancake.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ ├── Pancake.xcscmblueprint │ └── WorkspaceSettings.xcsettings ├── Pancake └── Documentation │ ├── CreateDocumentationDirectoryStructure.md │ ├── DiscussionStructure.md │ ├── DiscussionStructureReference.md │ ├── DocParametersStructure.md │ ├── DocParametersStructureReference.md │ ├── MarkdownClass.md │ ├── MarkdownClassReference.md │ ├── MarkdownTemplateStructure.md │ ├── MarkdownTemplateStructureReference.md │ ├── ReplaceTargetStructure.md │ ├── ReplaceTargetStructureReference.md │ ├── SwiftDocsParserClass.md │ ├── SwiftDocsParserClassReference.md │ ├── SwiftObjectStructure.md │ ├── SwiftObjectStructureReference.md │ ├── TemplateTypeEnumeration.md │ ├── TemplateTypeEnumerationReference.md │ ├── WriteToFileStructure.md │ └── WriteToFileStructureReference.md ├── README.md ├── Sources ├── DemoKit │ ├── DemoKit.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── DemoKit.xcscheme │ ├── DemoKit │ │ ├── Demo.swift │ │ ├── Demo2.swift │ │ ├── Demo3 │ │ ├── Demo3.swift │ │ ├── DemoKit.h │ │ └── Info.plist │ └── Pancake │ │ └── Documentation │ │ ├── DemoClass.md │ │ ├── DemoTypeEnumeration.md │ │ ├── EnumTypeEnumeration.md │ │ ├── Global.md │ │ └── SuffleStructure.md ├── PancakeKit │ ├── Info.plist │ ├── MarkdownGenerator.swift │ ├── MarkdownOutput.swift │ ├── MarkdownTemplate.swift │ ├── Pancake.h │ ├── Resources │ │ ├── Classes.md │ │ ├── Enumerations.md │ │ ├── GlobalDeclaration.md │ │ ├── GlobalDocComment.md │ │ ├── GlobalEnumerations.md │ │ ├── GlobalVariable.md │ │ ├── GlobalVariables.md │ │ ├── MemberDeclaration.md │ │ ├── MemberDocComment.md │ │ ├── MemberEnumeration.md │ │ ├── MemberMethod.md │ │ ├── MemberParameter.md │ │ ├── MemberParameters.md │ │ ├── MemberProperty.md │ │ ├── MemberReturnValue.md │ │ ├── MemberSeeAlso.md │ │ ├── Methods.md │ │ ├── Properties.md │ │ └── Structures.md │ ├── SwiftDocsParser.swift │ ├── SwiftObject.swift │ └── WriteToFile.swift ├── PancakeKitTests │ ├── Info.plist │ ├── MarkdownTemplateTests.swift │ ├── MarkdownTests.swift │ ├── SwiftDocsParserTests.swift │ ├── SwiftObjectTests.swift │ └── WriteToFileTests.swift └── pancake │ ├── AllCommand.swift │ ├── Info.plist │ ├── PancakeError.swift │ ├── components.plist │ └── main.swift └── scripts ├── bootstrap └── extract-tool /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Cartfile -------------------------------------------------------------------------------- /Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Cartfile.resolved -------------------------------------------------------------------------------- /Documentation/Images/pancake_all_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Documentation/Images/pancake_all_demo.gif -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | # Pancake Issue 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Makefile -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | # Pancake Pull Request 2 | -------------------------------------------------------------------------------- /Pancake.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Pancake.pkg -------------------------------------------------------------------------------- /Pancake.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Pancake.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pancake.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Pancake.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Pancake.xcodeproj/xcshareddata/xcschemes/PancakeKit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Pancake.xcodeproj/xcshareddata/xcschemes/PancakeKit.xcscheme -------------------------------------------------------------------------------- /Pancake.xcodeproj/xcshareddata/xcschemes/pancake.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Pancake.xcodeproj/xcshareddata/xcschemes/pancake.xcscheme -------------------------------------------------------------------------------- /Pancake.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Pancake.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Pancake.xcworkspace/xcshareddata/Pancake.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Pancake.xcworkspace/xcshareddata/Pancake.xcscmblueprint -------------------------------------------------------------------------------- /Pancake.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Pancake.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Pancake/Documentation/CreateDocumentationDirectoryStructure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Pancake/Documentation/CreateDocumentationDirectoryStructure.md -------------------------------------------------------------------------------- /Pancake/Documentation/DiscussionStructure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Pancake/Documentation/DiscussionStructure.md -------------------------------------------------------------------------------- /Pancake/Documentation/DiscussionStructureReference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Pancake/Documentation/DiscussionStructureReference.md -------------------------------------------------------------------------------- /Pancake/Documentation/DocParametersStructure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Pancake/Documentation/DocParametersStructure.md -------------------------------------------------------------------------------- /Pancake/Documentation/DocParametersStructureReference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Pancake/Documentation/DocParametersStructureReference.md -------------------------------------------------------------------------------- /Pancake/Documentation/MarkdownClass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Pancake/Documentation/MarkdownClass.md -------------------------------------------------------------------------------- /Pancake/Documentation/MarkdownClassReference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Pancake/Documentation/MarkdownClassReference.md -------------------------------------------------------------------------------- /Pancake/Documentation/MarkdownTemplateStructure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Pancake/Documentation/MarkdownTemplateStructure.md -------------------------------------------------------------------------------- /Pancake/Documentation/MarkdownTemplateStructureReference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Pancake/Documentation/MarkdownTemplateStructureReference.md -------------------------------------------------------------------------------- /Pancake/Documentation/ReplaceTargetStructure.md: -------------------------------------------------------------------------------- 1 | # ReplaceTarget 2 | 3 | 4 | -------------------------------------------------------------------------------- /Pancake/Documentation/ReplaceTargetStructureReference.md: -------------------------------------------------------------------------------- 1 | # ReplaceTarget 2 | 3 | 4 | -------------------------------------------------------------------------------- /Pancake/Documentation/SwiftDocsParserClass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Pancake/Documentation/SwiftDocsParserClass.md -------------------------------------------------------------------------------- /Pancake/Documentation/SwiftDocsParserClassReference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Pancake/Documentation/SwiftDocsParserClassReference.md -------------------------------------------------------------------------------- /Pancake/Documentation/SwiftObjectStructure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Pancake/Documentation/SwiftObjectStructure.md -------------------------------------------------------------------------------- /Pancake/Documentation/SwiftObjectStructureReference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Pancake/Documentation/SwiftObjectStructureReference.md -------------------------------------------------------------------------------- /Pancake/Documentation/TemplateTypeEnumeration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Pancake/Documentation/TemplateTypeEnumeration.md -------------------------------------------------------------------------------- /Pancake/Documentation/TemplateTypeEnumerationReference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Pancake/Documentation/TemplateTypeEnumerationReference.md -------------------------------------------------------------------------------- /Pancake/Documentation/WriteToFileStructure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Pancake/Documentation/WriteToFileStructure.md -------------------------------------------------------------------------------- /Pancake/Documentation/WriteToFileStructureReference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Pancake/Documentation/WriteToFileStructureReference.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/README.md -------------------------------------------------------------------------------- /Sources/DemoKit/DemoKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/DemoKit/DemoKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Sources/DemoKit/DemoKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/DemoKit/DemoKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Sources/DemoKit/DemoKit.xcodeproj/xcshareddata/xcschemes/DemoKit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/DemoKit/DemoKit.xcodeproj/xcshareddata/xcschemes/DemoKit.xcscheme -------------------------------------------------------------------------------- /Sources/DemoKit/DemoKit/Demo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/DemoKit/DemoKit/Demo.swift -------------------------------------------------------------------------------- /Sources/DemoKit/DemoKit/Demo2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/DemoKit/DemoKit/Demo2.swift -------------------------------------------------------------------------------- /Sources/DemoKit/DemoKit/Demo3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/DemoKit/DemoKit/Demo3 -------------------------------------------------------------------------------- /Sources/DemoKit/DemoKit/Demo3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/DemoKit/DemoKit/Demo3.swift -------------------------------------------------------------------------------- /Sources/DemoKit/DemoKit/DemoKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/DemoKit/DemoKit/DemoKit.h -------------------------------------------------------------------------------- /Sources/DemoKit/DemoKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/DemoKit/DemoKit/Info.plist -------------------------------------------------------------------------------- /Sources/DemoKit/Pancake/Documentation/DemoClass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/DemoKit/Pancake/Documentation/DemoClass.md -------------------------------------------------------------------------------- /Sources/DemoKit/Pancake/Documentation/DemoTypeEnumeration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/DemoKit/Pancake/Documentation/DemoTypeEnumeration.md -------------------------------------------------------------------------------- /Sources/DemoKit/Pancake/Documentation/EnumTypeEnumeration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/DemoKit/Pancake/Documentation/EnumTypeEnumeration.md -------------------------------------------------------------------------------- /Sources/DemoKit/Pancake/Documentation/Global.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/DemoKit/Pancake/Documentation/Global.md -------------------------------------------------------------------------------- /Sources/DemoKit/Pancake/Documentation/SuffleStructure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/DemoKit/Pancake/Documentation/SuffleStructure.md -------------------------------------------------------------------------------- /Sources/PancakeKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/PancakeKit/Info.plist -------------------------------------------------------------------------------- /Sources/PancakeKit/MarkdownGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/PancakeKit/MarkdownGenerator.swift -------------------------------------------------------------------------------- /Sources/PancakeKit/MarkdownOutput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/PancakeKit/MarkdownOutput.swift -------------------------------------------------------------------------------- /Sources/PancakeKit/MarkdownTemplate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/PancakeKit/MarkdownTemplate.swift -------------------------------------------------------------------------------- /Sources/PancakeKit/Pancake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/PancakeKit/Pancake.h -------------------------------------------------------------------------------- /Sources/PancakeKit/Resources/Classes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/PancakeKit/Resources/Classes.md -------------------------------------------------------------------------------- /Sources/PancakeKit/Resources/Enumerations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/PancakeKit/Resources/Enumerations.md -------------------------------------------------------------------------------- /Sources/PancakeKit/Resources/GlobalDeclaration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/PancakeKit/Resources/GlobalDeclaration.md -------------------------------------------------------------------------------- /Sources/PancakeKit/Resources/GlobalDocComment.md: -------------------------------------------------------------------------------- 1 | {% doc_comment %} 2 | 3 | -------------------------------------------------------------------------------- /Sources/PancakeKit/Resources/GlobalEnumerations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/PancakeKit/Resources/GlobalEnumerations.md -------------------------------------------------------------------------------- /Sources/PancakeKit/Resources/GlobalVariable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/PancakeKit/Resources/GlobalVariable.md -------------------------------------------------------------------------------- /Sources/PancakeKit/Resources/GlobalVariables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/PancakeKit/Resources/GlobalVariables.md -------------------------------------------------------------------------------- /Sources/PancakeKit/Resources/MemberDeclaration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/PancakeKit/Resources/MemberDeclaration.md -------------------------------------------------------------------------------- /Sources/PancakeKit/Resources/MemberDocComment.md: -------------------------------------------------------------------------------- 1 | {% doc_comment %} 2 | -------------------------------------------------------------------------------- /Sources/PancakeKit/Resources/MemberEnumeration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/PancakeKit/Resources/MemberEnumeration.md -------------------------------------------------------------------------------- /Sources/PancakeKit/Resources/MemberMethod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/PancakeKit/Resources/MemberMethod.md -------------------------------------------------------------------------------- /Sources/PancakeKit/Resources/MemberParameter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/PancakeKit/Resources/MemberParameter.md -------------------------------------------------------------------------------- /Sources/PancakeKit/Resources/MemberParameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/PancakeKit/Resources/MemberParameters.md -------------------------------------------------------------------------------- /Sources/PancakeKit/Resources/MemberProperty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/PancakeKit/Resources/MemberProperty.md -------------------------------------------------------------------------------- /Sources/PancakeKit/Resources/MemberReturnValue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/PancakeKit/Resources/MemberReturnValue.md -------------------------------------------------------------------------------- /Sources/PancakeKit/Resources/MemberSeeAlso.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/PancakeKit/Resources/MemberSeeAlso.md -------------------------------------------------------------------------------- /Sources/PancakeKit/Resources/Methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/PancakeKit/Resources/Methods.md -------------------------------------------------------------------------------- /Sources/PancakeKit/Resources/Properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/PancakeKit/Resources/Properties.md -------------------------------------------------------------------------------- /Sources/PancakeKit/Resources/Structures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/PancakeKit/Resources/Structures.md -------------------------------------------------------------------------------- /Sources/PancakeKit/SwiftDocsParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/PancakeKit/SwiftDocsParser.swift -------------------------------------------------------------------------------- /Sources/PancakeKit/SwiftObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/PancakeKit/SwiftObject.swift -------------------------------------------------------------------------------- /Sources/PancakeKit/WriteToFile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/PancakeKit/WriteToFile.swift -------------------------------------------------------------------------------- /Sources/PancakeKitTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/PancakeKitTests/Info.plist -------------------------------------------------------------------------------- /Sources/PancakeKitTests/MarkdownTemplateTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/PancakeKitTests/MarkdownTemplateTests.swift -------------------------------------------------------------------------------- /Sources/PancakeKitTests/MarkdownTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/PancakeKitTests/MarkdownTests.swift -------------------------------------------------------------------------------- /Sources/PancakeKitTests/SwiftDocsParserTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/PancakeKitTests/SwiftDocsParserTests.swift -------------------------------------------------------------------------------- /Sources/PancakeKitTests/SwiftObjectTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/PancakeKitTests/SwiftObjectTests.swift -------------------------------------------------------------------------------- /Sources/PancakeKitTests/WriteToFileTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/PancakeKitTests/WriteToFileTests.swift -------------------------------------------------------------------------------- /Sources/pancake/AllCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/pancake/AllCommand.swift -------------------------------------------------------------------------------- /Sources/pancake/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/pancake/Info.plist -------------------------------------------------------------------------------- /Sources/pancake/PancakeError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/pancake/PancakeError.swift -------------------------------------------------------------------------------- /Sources/pancake/components.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/pancake/components.plist -------------------------------------------------------------------------------- /Sources/pancake/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/Sources/pancake/main.swift -------------------------------------------------------------------------------- /scripts/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/scripts/bootstrap -------------------------------------------------------------------------------- /scripts/extract-tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmartha/Pancake/HEAD/scripts/extract-tool --------------------------------------------------------------------------------