├── .github ├── ISSUE_TEMPLATE │ ├── bug.md │ └── feature_request.md └── workflows │ ├── bump-formula.yml │ ├── deploy-docs.yml │ ├── nef-compile.yml │ ├── swift.yml │ └── xcode.yml ├── .gitignore ├── .mailmap ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Documentation.app ├── Contents │ ├── Info.plist │ ├── MacOS │ │ ├── Command-Line.playground │ │ │ ├── Pages │ │ │ │ ├── Compiling a nef Playground.xcplaygroundpage │ │ │ │ │ └── Contents.swift │ │ │ │ ├── Creating a Playground Book for iPad.xcplaygroundpage │ │ │ │ │ └── Contents.swift │ │ │ │ ├── Creating a nef Playground.xcplaygroundpage │ │ │ │ │ └── Contents.swift │ │ │ │ ├── Exporting Carbon code snippets.xcplaygroundpage │ │ │ │ │ └── Contents.swift │ │ │ │ ├── Generating a Markdown document.xcplaygroundpage │ │ │ │ │ └── Contents.swift │ │ │ │ └── Generating content for Jekyll.xcplaygroundpage │ │ │ │ │ └── Contents.swift │ │ │ ├── Sources │ │ │ │ ├── NefPlaygroundSupport.swift │ │ │ │ └── NefTest.swift │ │ │ ├── contents.xcplayground │ │ │ └── playground.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── Documentation.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Documentation.xcscheme │ │ ├── Documentation.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── Documentation │ │ │ └── Info.plist │ │ ├── First steps.playground │ │ │ ├── Pages │ │ │ │ ├── How to export my snippets?.xcplaygroundpage │ │ │ │ │ └── Contents.swift │ │ │ │ ├── How to use Carbon API?.xcplaygroundpage │ │ │ │ │ └── Contents.swift │ │ │ │ ├── Playground Book with 3rd-party libraries.xcplaygroundpage │ │ │ │ │ └── Contents.swift │ │ │ │ └── Xcode Playground → nef Playground.xcplaygroundpage │ │ │ │ │ └── Contents.swift │ │ │ ├── Sources │ │ │ │ ├── NefPlaygroundSupport.swift │ │ │ │ └── NefTest.swift │ │ │ ├── contents.xcplayground │ │ │ └── playground.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── Library.playground │ │ │ ├── Pages │ │ │ │ ├── APIs.xcplaygroundpage │ │ │ │ │ └── Contents.swift │ │ │ │ └── How to use nef as a library?.xcplaygroundpage │ │ │ │ │ └── Contents.swift │ │ │ ├── Sources │ │ │ │ ├── NefPlaygroundSupport.swift │ │ │ │ └── NefTest.swift │ │ │ ├── contents.xcplayground │ │ │ └── playground.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── Podfile │ │ ├── Quick start.playground │ │ │ ├── Pages │ │ │ │ ├── Getting started.xcplaygroundpage │ │ │ │ │ └── Contents.swift │ │ │ │ └── Resources.xcplaygroundpage │ │ │ │ │ └── Contents.swift │ │ │ ├── Sources │ │ │ │ ├── NefPlaygroundSupport.swift │ │ │ │ └── NefTest.swift │ │ │ ├── contents.xcplayground │ │ │ └── playground.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── launcher │ └── Resources │ │ ├── AppIcon.icns │ │ └── Assets.car └── jekyll │ └── Home.md ├── LICENSE ├── Makefile ├── Package.swift ├── README.md ├── assets ├── header-nef.png ├── nef-carbon-example.png └── nef-playground.png ├── docs ├── CNAME ├── Gemfile ├── _config.yml ├── _data │ ├── features.yml │ └── menu.yml ├── _includes │ ├── _doc.html │ ├── _dropdown.html │ ├── _footer.html │ ├── _head-docs.html │ ├── _head.html │ ├── _header.html │ ├── _main.html │ ├── _nav.html │ └── _sidebar.html ├── _layouts │ ├── docs.html │ └── home.html ├── _sass │ ├── base │ │ ├── _base.scss │ │ ├── _helpers.scss │ │ └── _reset.scss │ ├── components │ │ ├── _button.scss │ │ ├── _code.scss │ │ ├── _doc.scss │ │ ├── _footer.scss │ │ ├── _header.scss │ │ ├── _main.scss │ │ ├── _nav.scss │ │ ├── _sidebar-menu.scss │ │ ├── _sidebar.scss │ │ └── _table.scss │ ├── utils │ │ ├── _mixins.scss │ │ └── _variables.scss │ └── vendors │ │ └── highlight │ │ ├── atom-one-dark.scss │ │ └── dracula.scss ├── apple-app-site-association ├── assets │ ├── airdrop.png │ ├── myplayground.png │ ├── nef-library-example.png │ ├── nef-playground-view.png │ ├── nef-playground.png │ ├── nef-plugin-install.png │ ├── nef-tutorial-carbon-customsnippet.png │ ├── nef-tutorial-carbon-defaultsnippet.png │ ├── nef-xcode-library.png │ ├── package-playground-book.png │ └── tutorial-playgroundbook.jpeg ├── css │ ├── docs.scss │ └── styles.scss ├── extra │ ├── apple-jazzy-theme │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── highlight.css.scss │ │ │ │ └── jazzy.css.scss │ │ │ ├── img │ │ │ │ ├── carat.png │ │ │ │ ├── dash.png │ │ │ │ └── gh.png │ │ │ └── js │ │ │ │ ├── jazzy.js │ │ │ │ └── jquery.min.js │ │ └── templates │ │ │ ├── doc.mustache │ │ │ ├── footer.mustache │ │ │ ├── header.mustache │ │ │ ├── nav.mustache │ │ │ ├── parameter.mustache │ │ │ ├── task.mustache │ │ │ └── tasks.mustache │ ├── mapbox-jazzy-theme │ │ ├── LICENSE │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── highlight.css.scss │ │ │ │ └── jazzy.css.scss │ │ │ ├── fonts │ │ │ │ ├── opensans-bold.eot │ │ │ │ ├── opensans-bold.woff │ │ │ │ ├── opensans-regular.eot │ │ │ │ └── opensans-regular.woff │ │ │ ├── img │ │ │ │ ├── carat.png │ │ │ │ ├── dash.png │ │ │ │ ├── github.svg │ │ │ │ ├── link.svg │ │ │ │ ├── mapbox.svg │ │ │ │ ├── minus.svg │ │ │ │ └── plus.svg │ │ │ └── js │ │ │ │ ├── jazzy.js │ │ │ │ ├── jazzy.search.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── lunr.min.js │ │ │ │ └── typeahead.jquery.js │ │ └── templates │ │ │ ├── deprecation.mustache │ │ │ ├── doc.mustache │ │ │ ├── footer.mustache │ │ │ ├── header.mustache │ │ │ ├── nav.mustache │ │ │ ├── parameter.mustache │ │ │ ├── task.mustache │ │ │ └── tasks.mustache │ └── nef-jazzy-theme │ │ ├── LICENSE │ │ ├── assets │ │ ├── css │ │ │ ├── highlight.css │ │ │ └── jazzy.css.scss │ │ ├── fonts │ │ │ ├── opensans-bold.eot │ │ │ ├── opensans-bold.woff │ │ │ ├── opensans-regular.eot │ │ │ └── opensans-regular.woff │ │ ├── img │ │ │ ├── carat.png │ │ │ ├── dash.png │ │ │ ├── github.svg │ │ │ ├── link.svg │ │ │ ├── mapbox.svg │ │ │ ├── minus.svg │ │ │ ├── nef-logo.png │ │ │ └── plus.svg │ │ └── js │ │ │ ├── jazzy.js │ │ │ ├── jazzy.search.js │ │ │ ├── jquery.min.js │ │ │ ├── lunr.min.js │ │ │ └── typeahead.jquery.js │ │ └── templates │ │ ├── deprecation.mustache │ │ ├── doc.mustache │ │ ├── footer.mustache │ │ ├── header.mustache │ │ ├── nav.mustache │ │ ├── parameter.mustache │ │ ├── task.mustache │ │ └── tasks.mustache ├── img │ ├── arrow-down.svg │ ├── favicon.png │ ├── header-image.svg │ ├── main-image-primary.svg │ ├── main-image-quaternary.svg │ ├── main-image-secondary.svg │ ├── main-image-tertiary.svg │ ├── nav-brand-white.svg │ ├── nav-brand.svg │ ├── nav-icon-close.svg │ ├── nav-icon-open.svg │ ├── poster.png │ ├── sidebar-icon-close.svg │ └── sidebar-icon-open.svg ├── index.md └── js │ ├── docs.js │ └── main.js ├── project ├── Component │ ├── NefCarbon │ │ ├── App │ │ │ ├── Assets.swift │ │ │ ├── CarbonAppDelegate.swift │ │ │ ├── CarbonApplication.swift │ │ │ ├── CarbonAssembler.swift │ │ │ ├── CarbonSyncDownloader.swift │ │ │ ├── CarbonViewer.swift │ │ │ └── CarbonWKWebView.swift │ │ ├── Models │ │ │ └── RenderCarbonEnvironment.swift │ │ ├── NefCarbon.swift │ │ ├── Support Files │ │ │ ├── Info.plist │ │ │ └── NefCarbon.h │ │ ├── Utils │ │ │ ├── NSImage+Store.swift │ │ │ └── URLQuery.swift │ │ └── Views │ │ │ └── CarbonWebView.swift │ ├── NefClean │ │ ├── Clean.swift │ │ ├── Errors │ │ │ └── CleanError.swift │ │ ├── Models │ │ │ ├── CleanEnvironment.swift │ │ │ └── CleanEvent.swift │ │ └── Support Files │ │ │ ├── Info.plist │ │ │ └── NefClean.h │ ├── NefCommon │ │ ├── Algebras │ │ │ ├── FileSystem.swift │ │ │ ├── NefPlaygroundSystem.swift │ │ │ ├── RenderingPersistence.swift │ │ │ └── XcodePlaygroundSystem.swift │ │ ├── Errors │ │ │ ├── FileSystemError.swift │ │ │ ├── PlaygroundShellError.swift │ │ │ ├── RenderingOutput.swift │ │ │ ├── RenderingPersistenceError.swift │ │ │ └── XcodePlaygroundSystemError.swift │ │ ├── Models │ │ │ ├── HasProgressReport.swift │ │ │ ├── NefPlaygroundURL.swift │ │ │ └── RenderingURL.swift │ │ ├── Support Files │ │ │ ├── Info.plist │ │ │ └── NefCommon.h │ │ └── Utils │ │ │ ├── Array+Utils.swift │ │ │ ├── Effects+Extensions.swift │ │ │ ├── EnumeratedSequence+Extension.swift │ │ │ ├── Platform+Utils.swift │ │ │ ├── String+Path.swift │ │ │ └── String+Utils.swift │ ├── NefCompiler │ │ ├── Algebras │ │ │ ├── CompilerShell.swift │ │ │ └── CompilerSystem.swift │ │ ├── Errors │ │ │ ├── CompilerShellError.swift │ │ │ └── CompilerSystemError.swift │ │ ├── Extensions │ │ │ └── SwiftModule+IO.swift │ │ ├── Instances │ │ │ └── NefCompilerSystem.swift │ │ ├── Models │ │ │ ├── CompilerEvent.swift │ │ │ ├── CompilerSystemEnvironment.swift │ │ │ └── RenderCompilerEnvironment.swift │ │ ├── NefCompiler.swift │ │ └── Support Files │ │ │ ├── Info.plist │ │ │ └── NefCompiler.h │ ├── NefJekyll │ │ ├── Models │ │ │ ├── JekyllEvent.swift │ │ │ └── RenderJekyllEnvironment.swift │ │ ├── NefJekyll.swift │ │ └── Support Files │ │ │ ├── Info.plist │ │ │ └── NefJekyll.h │ ├── NefMarkdown │ │ ├── Models │ │ │ └── RenderMarkdownEnvironment.swift │ │ ├── NefMarkdown.swift │ │ └── Support Files │ │ │ ├── Info.plist │ │ │ └── NefMarkdown.h │ ├── NefModels │ │ ├── CarbonModel.swift │ │ ├── CarbonView.swift │ │ ├── CompilerOptions.swift │ │ ├── PlaygroundDependencies.swift │ │ ├── PlaygroundExcludeItem.swift │ │ ├── PlaygroundPlatform.swift │ │ ├── ProgressReport.swift │ │ ├── RenderedPage.swift │ │ ├── Support Files │ │ │ ├── Info.plist │ │ │ └── NefModels.h │ │ ├── SwiftModule.swift │ │ └── WorkspaceInfo.swift │ ├── NefPlayground │ │ ├── Errors │ │ │ └── PlaygroundError.swift │ │ ├── Models │ │ │ ├── PlaygroundEnvironment.swift │ │ │ └── PlaygroundEvent.swift │ │ ├── Playground.swift │ │ └── Support Files │ │ │ ├── Info.plist │ │ │ └── NefPlayground.h │ ├── NefRender │ │ ├── Errors │ │ │ └── MarkdownError.swift │ │ ├── Models │ │ │ ├── RenderEnvironment.swift │ │ │ └── RenderEvent.swift │ │ ├── Render.swift │ │ └── Support Files │ │ │ ├── Info.plist │ │ │ └── NefRender.h │ ├── NefSwiftPlayground │ │ ├── Algebras │ │ │ └── PackageShell.swift │ │ ├── Assets.swift │ │ ├── Assets │ │ │ └── ImageReference.swift │ │ ├── Errors │ │ │ ├── PackageShellError.swift │ │ │ ├── PlaygroundBookError.swift │ │ │ └── SwiftPlaygroundError.swift │ │ ├── Models │ │ │ ├── Module.swift │ │ │ ├── Package.swift │ │ │ ├── PlaygroundBookEvent.swift │ │ │ ├── PlaygroundBookResolutionPath.swift │ │ │ ├── PlaygroundBookTemplate.swift │ │ │ ├── PlaygroundEnvironment.swift │ │ │ ├── PlaygroundResolutionPath.swift │ │ │ ├── SwiftPackage.swift │ │ │ └── SwiftPackageProduct.swift │ │ ├── PlaygroundBook.swift │ │ ├── Support Files │ │ │ ├── Info.plist │ │ │ └── NefSwiftPlayground.h │ │ └── SwiftPlayground.swift │ └── nef │ │ ├── CarbonAPI.swift │ │ ├── CleanAPI.swift │ │ ├── CompilerAPI.swift │ │ ├── Instances │ │ ├── MacCompilerShell.swift │ │ ├── MacNefPlaygroundSystem.swift │ │ ├── UnixFileSystem.swift │ │ ├── UnixPackageShell.swift │ │ ├── UnixPlaygroundSystem.swift │ │ └── UnixRenderSystem.swift │ │ ├── JekyllAPI.swift │ │ ├── MarkdownAPI.swift │ │ ├── Models │ │ └── Error.swift │ │ ├── PlaygroundAPI.swift │ │ ├── Support Files │ │ ├── Info.plist │ │ ├── _Carbon.h │ │ ├── _Clean.h │ │ ├── _Common.h │ │ ├── _Compiler.h │ │ ├── _Core.h │ │ ├── _Jekyll.h │ │ ├── _Markdown.h │ │ ├── _Playground.h │ │ ├── _SwiftPlayground.h │ │ ├── module.modulemap │ │ └── nef.h │ │ ├── SwiftPlaygroundAPI.swift │ │ ├── Utils │ │ ├── BuildConfiguration.swift │ │ └── URL+PlaygroundPage.swift │ │ └── VersionAPI.swift ├── Core │ ├── Models │ │ ├── CoreEnvironments.swift │ │ ├── CoreRenderError.swift │ │ ├── Image.swift │ │ └── MarkupNode.swift │ ├── Parser │ │ ├── Lexical.swift │ │ └── Syntax.swift │ ├── Render │ │ ├── CoreCarbon.swift │ │ ├── CoreCode.swift │ │ ├── CoreJekyll.swift │ │ ├── CoreMarkdown.swift │ │ └── CoreRender.swift │ ├── Support Files │ │ ├── Info.plist │ │ └── NefCore.h │ └── Utils │ │ ├── Node+Render.swift │ │ └── String+Format.swift ├── Tests │ ├── CoreTestPlan.xctestplan │ └── CoreTests │ │ ├── JekyllTests.swift │ │ ├── MarkdownTests.swift │ │ ├── Support Files │ │ └── Info.plist │ │ ├── SyntaxTests.swift │ │ └── Utils │ │ └── CoreRender+Test.swift ├── UI │ ├── CLIKit │ │ ├── Array+Utils.swift │ │ ├── Collection+Utils.swift │ │ ├── CommandLineTool.swift │ │ ├── CommandOutcome.swift │ │ ├── ConsoleReport.swift │ │ ├── DispatchTimeInterval+Utils.swift │ │ ├── ExpressibleByArgument+Extension.swift │ │ ├── Kleisli+Extensions.swift │ │ ├── OutcomeReport.swift │ │ ├── PlaygroundUtils.swift │ │ ├── String+Colorize.swift │ │ └── Support Files │ │ │ ├── CLIKit.h │ │ │ └── Info.plist │ ├── Carbon │ │ ├── Carbon.swift │ │ └── main.swift │ ├── CarbonPage │ │ ├── CarbonPage.swift │ │ └── main.swift │ ├── Clean │ │ ├── Clean.swift │ │ └── main.swift │ ├── Compiler │ │ ├── Compiler.swift │ │ └── main.swift │ ├── Jekyll │ │ ├── Jekyll.swift │ │ └── main.swift │ ├── JekyllPage │ │ ├── JekyllPage.swift │ │ └── main.swift │ ├── Markdown │ │ ├── Markdown.swift │ │ └── main.swift │ ├── MarkdownPage │ │ ├── MarkdownPage.swift │ │ └── main.swift │ ├── Nef │ │ ├── Version.swift │ │ └── main.swift │ ├── Playground │ │ ├── Playground.swift │ │ ├── PlaygroundDependenciesError.swift │ │ └── main.swift │ └── PlaygroundBook │ │ ├── PlaygroundBook.swift │ │ └── main.swift └── nef.xcodeproj │ ├── JekyllMarkdown.xcworkspace │ └── contents.xcworkspacedata │ ├── project.pbxproj │ ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ ├── IDETemplateMacros.plist │ └── xcschemes │ ├── CLIKit.xcscheme │ ├── Carbon.xcscheme │ ├── CarbonPage.xcscheme │ ├── Clean.xcscheme │ ├── Compiler.xcscheme │ ├── CoreTests.xcscheme │ ├── Jekyll.xcscheme │ ├── JekyllPage.xcscheme │ ├── Markdown.xcscheme │ ├── MarkdownPage.xcscheme │ ├── NefCarbon.xcscheme │ ├── NefClean.xcscheme │ ├── NefCommon.xcscheme │ ├── NefCompiler.xcscheme │ ├── NefCore.xcscheme │ ├── NefJekyll.xcscheme │ ├── NefMarkdown.xcscheme │ ├── NefMenu.xcscheme │ ├── NefModels.xcscheme │ ├── NefPlayground.xcscheme │ ├── NefRender.xcscheme │ ├── NefSwiftPlayground.xcscheme │ ├── Playground.xcscheme │ ├── PlaygroundBook.xcscheme │ └── nef.xcscheme ├── scripts └── gen-docs.rb ├── setup ├── ConfigureNef.rb ├── ProjectManipulator.rb ├── TemplateConfigurator.rb └── nef.rb └── template ├── .gitignore ├── PROJECT.app └── Contents │ ├── Info.plist │ ├── MacOS │ └── launcher │ └── Resources │ ├── AppIcon.icns │ └── Assets.car ├── ios ├── carthage │ ├── PROJECT.playground │ │ ├── Pages │ │ │ └── page.xcplaygroundpage │ │ │ │ └── Contents.swift │ │ ├── Sources │ │ │ ├── NefPlaygroundSupport.swift │ │ │ └── NefTest.swift │ │ ├── contents.xcplayground │ │ └── playground.xcworkspace │ │ │ └── contents.xcworkspacedata │ └── PROJECT.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ └── xcschemes │ │ └── PROJECT.xcscheme ├── cocoapods │ ├── PROJECT.playground │ │ ├── Pages │ │ │ └── page.xcplaygroundpage │ │ │ │ └── Contents.swift │ │ ├── Sources │ │ │ ├── NefPlaygroundSupport.swift │ │ │ └── NefTest.swift │ │ ├── contents.xcplayground │ │ └── playground.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── PROJECT.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── PROJECT.xcscheme │ ├── PROJECT │ │ └── Info.plist │ └── Podfile └── spm │ ├── PROJECT.playground │ ├── Pages │ │ └── page.xcplaygroundpage │ │ │ └── Contents.swift │ ├── Sources │ │ ├── NefPlaygroundSupport.swift │ │ └── NefTest.swift │ ├── contents.xcplayground │ └── playground.xcworkspace │ │ └── contents.xcworkspacedata │ ├── PROJECT.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── SwiftPackages.xcscheme │ └── PROJECT.xcworkspace │ └── contents.xcworkspacedata └── osx ├── carthage ├── PROJECT.playground │ ├── Pages │ │ └── page.xcplaygroundpage │ │ │ └── Contents.swift │ ├── Sources │ │ └── NefTest.swift │ ├── contents.xcplayground │ └── playground.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── PROJECT.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ └── xcschemes │ └── PROJECT.xcscheme ├── cocoapods ├── PROJECT.playground │ ├── Pages │ │ └── page.xcplaygroundpage │ │ │ └── Contents.swift │ ├── Sources │ │ └── NefTest.swift │ ├── contents.xcplayground │ └── playground.xcworkspace │ │ └── contents.xcworkspacedata ├── PROJECT.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── PROJECT.xcscheme ├── PROJECT │ └── Info.plist └── Podfile └── spm ├── PROJECT.playground ├── Pages │ └── page.xcplaygroundpage │ │ └── Contents.swift ├── Sources │ └── NefTest.swift ├── contents.xcplayground └── playground.xcworkspace │ └── contents.xcworkspacedata ├── PROJECT.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── SwiftPackages.xcscheme └── PROJECT.xcworkspace └── contents.xcworkspacedata /.github/ISSUE_TEMPLATE/bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/.github/ISSUE_TEMPLATE/bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/bump-formula.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/.github/workflows/bump-formula.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/.github/workflows/deploy-docs.yml -------------------------------------------------------------------------------- /.github/workflows/nef-compile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/.github/workflows/nef-compile.yml -------------------------------------------------------------------------------- /.github/workflows/swift.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/.github/workflows/swift.yml -------------------------------------------------------------------------------- /.github/workflows/xcode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/.github/workflows/xcode.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/.mailmap -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Documentation.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Documentation.app/Contents/Info.plist -------------------------------------------------------------------------------- /Documentation.app/Contents/MacOS/Command-Line.playground/Pages/Compiling a nef Playground.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Documentation.app/Contents/MacOS/Command-Line.playground/Pages/Compiling a nef Playground.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Documentation.app/Contents/MacOS/Command-Line.playground/Pages/Creating a Playground Book for iPad.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Documentation.app/Contents/MacOS/Command-Line.playground/Pages/Creating a Playground Book for iPad.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Documentation.app/Contents/MacOS/Command-Line.playground/Pages/Creating a nef Playground.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Documentation.app/Contents/MacOS/Command-Line.playground/Pages/Creating a nef Playground.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Documentation.app/Contents/MacOS/Command-Line.playground/Pages/Exporting Carbon code snippets.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Documentation.app/Contents/MacOS/Command-Line.playground/Pages/Exporting Carbon code snippets.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Documentation.app/Contents/MacOS/Command-Line.playground/Pages/Generating a Markdown document.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Documentation.app/Contents/MacOS/Command-Line.playground/Pages/Generating a Markdown document.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Documentation.app/Contents/MacOS/Command-Line.playground/Pages/Generating content for Jekyll.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Documentation.app/Contents/MacOS/Command-Line.playground/Pages/Generating content for Jekyll.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Documentation.app/Contents/MacOS/Command-Line.playground/Sources/NefPlaygroundSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Documentation.app/Contents/MacOS/Command-Line.playground/Sources/NefPlaygroundSupport.swift -------------------------------------------------------------------------------- /Documentation.app/Contents/MacOS/Command-Line.playground/Sources/NefTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Documentation.app/Contents/MacOS/Command-Line.playground/Sources/NefTest.swift -------------------------------------------------------------------------------- /Documentation.app/Contents/MacOS/Command-Line.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Documentation.app/Contents/MacOS/Command-Line.playground/contents.xcplayground -------------------------------------------------------------------------------- /Documentation.app/Contents/MacOS/Command-Line.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Documentation.app/Contents/MacOS/Command-Line.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Documentation.app/Contents/MacOS/Command-Line.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Documentation.app/Contents/MacOS/Command-Line.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Documentation.app/Contents/MacOS/Documentation.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Documentation.app/Contents/MacOS/Documentation.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Documentation.app/Contents/MacOS/Documentation.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Documentation.app/Contents/MacOS/Documentation.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Documentation.app/Contents/MacOS/Documentation.xcodeproj/xcshareddata/xcschemes/Documentation.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Documentation.app/Contents/MacOS/Documentation.xcodeproj/xcshareddata/xcschemes/Documentation.xcscheme -------------------------------------------------------------------------------- /Documentation.app/Contents/MacOS/Documentation.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Documentation.app/Contents/MacOS/Documentation.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Documentation.app/Contents/MacOS/Documentation.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Documentation.app/Contents/MacOS/Documentation.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Documentation.app/Contents/MacOS/Documentation/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Documentation.app/Contents/MacOS/Documentation/Info.plist -------------------------------------------------------------------------------- /Documentation.app/Contents/MacOS/First steps.playground/Pages/How to export my snippets?.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Documentation.app/Contents/MacOS/First steps.playground/Pages/How to export my snippets?.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Documentation.app/Contents/MacOS/First steps.playground/Pages/How to use Carbon API?.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Documentation.app/Contents/MacOS/First steps.playground/Pages/How to use Carbon API?.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Documentation.app/Contents/MacOS/First steps.playground/Pages/Playground Book with 3rd-party libraries.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Documentation.app/Contents/MacOS/First steps.playground/Pages/Playground Book with 3rd-party libraries.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Documentation.app/Contents/MacOS/First steps.playground/Pages/Xcode Playground → nef Playground.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Documentation.app/Contents/MacOS/First steps.playground/Pages/Xcode Playground → nef Playground.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Documentation.app/Contents/MacOS/First steps.playground/Sources/NefPlaygroundSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Documentation.app/Contents/MacOS/First steps.playground/Sources/NefPlaygroundSupport.swift -------------------------------------------------------------------------------- /Documentation.app/Contents/MacOS/First steps.playground/Sources/NefTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Documentation.app/Contents/MacOS/First steps.playground/Sources/NefTest.swift -------------------------------------------------------------------------------- /Documentation.app/Contents/MacOS/First steps.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Documentation.app/Contents/MacOS/First steps.playground/contents.xcplayground -------------------------------------------------------------------------------- /Documentation.app/Contents/MacOS/First steps.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Documentation.app/Contents/MacOS/First steps.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Documentation.app/Contents/MacOS/First steps.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Documentation.app/Contents/MacOS/First steps.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Documentation.app/Contents/MacOS/Library.playground/Pages/APIs.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Documentation.app/Contents/MacOS/Library.playground/Pages/APIs.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Documentation.app/Contents/MacOS/Library.playground/Pages/How to use nef as a library?.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Documentation.app/Contents/MacOS/Library.playground/Pages/How to use nef as a library?.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Documentation.app/Contents/MacOS/Library.playground/Sources/NefPlaygroundSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Documentation.app/Contents/MacOS/Library.playground/Sources/NefPlaygroundSupport.swift -------------------------------------------------------------------------------- /Documentation.app/Contents/MacOS/Library.playground/Sources/NefTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Documentation.app/Contents/MacOS/Library.playground/Sources/NefTest.swift -------------------------------------------------------------------------------- /Documentation.app/Contents/MacOS/Library.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Documentation.app/Contents/MacOS/Library.playground/contents.xcplayground -------------------------------------------------------------------------------- /Documentation.app/Contents/MacOS/Library.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Documentation.app/Contents/MacOS/Library.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Documentation.app/Contents/MacOS/Library.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Documentation.app/Contents/MacOS/Library.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Documentation.app/Contents/MacOS/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Documentation.app/Contents/MacOS/Podfile -------------------------------------------------------------------------------- /Documentation.app/Contents/MacOS/Quick start.playground/Pages/Getting started.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Documentation.app/Contents/MacOS/Quick start.playground/Pages/Getting started.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Documentation.app/Contents/MacOS/Quick start.playground/Pages/Resources.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Documentation.app/Contents/MacOS/Quick start.playground/Pages/Resources.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Documentation.app/Contents/MacOS/Quick start.playground/Sources/NefPlaygroundSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Documentation.app/Contents/MacOS/Quick start.playground/Sources/NefPlaygroundSupport.swift -------------------------------------------------------------------------------- /Documentation.app/Contents/MacOS/Quick start.playground/Sources/NefTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Documentation.app/Contents/MacOS/Quick start.playground/Sources/NefTest.swift -------------------------------------------------------------------------------- /Documentation.app/Contents/MacOS/Quick start.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Documentation.app/Contents/MacOS/Quick start.playground/contents.xcplayground -------------------------------------------------------------------------------- /Documentation.app/Contents/MacOS/Quick start.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Documentation.app/Contents/MacOS/Quick start.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Documentation.app/Contents/MacOS/Quick start.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Documentation.app/Contents/MacOS/Quick start.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Documentation.app/Contents/MacOS/launcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Documentation.app/Contents/MacOS/launcher -------------------------------------------------------------------------------- /Documentation.app/Contents/Resources/AppIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Documentation.app/Contents/Resources/AppIcon.icns -------------------------------------------------------------------------------- /Documentation.app/Contents/Resources/Assets.car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Documentation.app/Contents/Resources/Assets.car -------------------------------------------------------------------------------- /Documentation.app/jekyll/Home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Documentation.app/jekyll/Home.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Makefile -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/README.md -------------------------------------------------------------------------------- /assets/header-nef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/assets/header-nef.png -------------------------------------------------------------------------------- /assets/nef-carbon-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/assets/nef-carbon-example.png -------------------------------------------------------------------------------- /assets/nef-playground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/assets/nef-playground.png -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | nef.bow-swift.io -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/Gemfile -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_data/features.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/_data/features.yml -------------------------------------------------------------------------------- /docs/_data/menu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/_data/menu.yml -------------------------------------------------------------------------------- /docs/_includes/_doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/_includes/_doc.html -------------------------------------------------------------------------------- /docs/_includes/_dropdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/_includes/_dropdown.html -------------------------------------------------------------------------------- /docs/_includes/_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/_includes/_footer.html -------------------------------------------------------------------------------- /docs/_includes/_head-docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/_includes/_head-docs.html -------------------------------------------------------------------------------- /docs/_includes/_head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/_includes/_head.html -------------------------------------------------------------------------------- /docs/_includes/_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/_includes/_header.html -------------------------------------------------------------------------------- /docs/_includes/_main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/_includes/_main.html -------------------------------------------------------------------------------- /docs/_includes/_nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/_includes/_nav.html -------------------------------------------------------------------------------- /docs/_includes/_sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/_includes/_sidebar.html -------------------------------------------------------------------------------- /docs/_layouts/docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/_layouts/docs.html -------------------------------------------------------------------------------- /docs/_layouts/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/_layouts/home.html -------------------------------------------------------------------------------- /docs/_sass/base/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/_sass/base/_base.scss -------------------------------------------------------------------------------- /docs/_sass/base/_helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/_sass/base/_helpers.scss -------------------------------------------------------------------------------- /docs/_sass/base/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/_sass/base/_reset.scss -------------------------------------------------------------------------------- /docs/_sass/components/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/_sass/components/_button.scss -------------------------------------------------------------------------------- /docs/_sass/components/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/_sass/components/_code.scss -------------------------------------------------------------------------------- /docs/_sass/components/_doc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/_sass/components/_doc.scss -------------------------------------------------------------------------------- /docs/_sass/components/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/_sass/components/_footer.scss -------------------------------------------------------------------------------- /docs/_sass/components/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/_sass/components/_header.scss -------------------------------------------------------------------------------- /docs/_sass/components/_main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/_sass/components/_main.scss -------------------------------------------------------------------------------- /docs/_sass/components/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/_sass/components/_nav.scss -------------------------------------------------------------------------------- /docs/_sass/components/_sidebar-menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/_sass/components/_sidebar-menu.scss -------------------------------------------------------------------------------- /docs/_sass/components/_sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/_sass/components/_sidebar.scss -------------------------------------------------------------------------------- /docs/_sass/components/_table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/_sass/components/_table.scss -------------------------------------------------------------------------------- /docs/_sass/utils/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/_sass/utils/_mixins.scss -------------------------------------------------------------------------------- /docs/_sass/utils/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/_sass/utils/_variables.scss -------------------------------------------------------------------------------- /docs/_sass/vendors/highlight/atom-one-dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/_sass/vendors/highlight/atom-one-dark.scss -------------------------------------------------------------------------------- /docs/_sass/vendors/highlight/dracula.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/_sass/vendors/highlight/dracula.scss -------------------------------------------------------------------------------- /docs/apple-app-site-association: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/apple-app-site-association -------------------------------------------------------------------------------- /docs/assets/airdrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/assets/airdrop.png -------------------------------------------------------------------------------- /docs/assets/myplayground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/assets/myplayground.png -------------------------------------------------------------------------------- /docs/assets/nef-library-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/assets/nef-library-example.png -------------------------------------------------------------------------------- /docs/assets/nef-playground-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/assets/nef-playground-view.png -------------------------------------------------------------------------------- /docs/assets/nef-playground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/assets/nef-playground.png -------------------------------------------------------------------------------- /docs/assets/nef-plugin-install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/assets/nef-plugin-install.png -------------------------------------------------------------------------------- /docs/assets/nef-tutorial-carbon-customsnippet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/assets/nef-tutorial-carbon-customsnippet.png -------------------------------------------------------------------------------- /docs/assets/nef-tutorial-carbon-defaultsnippet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/assets/nef-tutorial-carbon-defaultsnippet.png -------------------------------------------------------------------------------- /docs/assets/nef-xcode-library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/assets/nef-xcode-library.png -------------------------------------------------------------------------------- /docs/assets/package-playground-book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/assets/package-playground-book.png -------------------------------------------------------------------------------- /docs/assets/tutorial-playgroundbook.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/assets/tutorial-playgroundbook.jpeg -------------------------------------------------------------------------------- /docs/css/docs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/css/docs.scss -------------------------------------------------------------------------------- /docs/css/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/css/styles.scss -------------------------------------------------------------------------------- /docs/extra/apple-jazzy-theme/assets/css/highlight.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/apple-jazzy-theme/assets/css/highlight.css.scss -------------------------------------------------------------------------------- /docs/extra/apple-jazzy-theme/assets/css/jazzy.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/apple-jazzy-theme/assets/css/jazzy.css.scss -------------------------------------------------------------------------------- /docs/extra/apple-jazzy-theme/assets/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/apple-jazzy-theme/assets/img/carat.png -------------------------------------------------------------------------------- /docs/extra/apple-jazzy-theme/assets/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/apple-jazzy-theme/assets/img/dash.png -------------------------------------------------------------------------------- /docs/extra/apple-jazzy-theme/assets/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/apple-jazzy-theme/assets/img/gh.png -------------------------------------------------------------------------------- /docs/extra/apple-jazzy-theme/assets/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/apple-jazzy-theme/assets/js/jazzy.js -------------------------------------------------------------------------------- /docs/extra/apple-jazzy-theme/assets/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/apple-jazzy-theme/assets/js/jquery.min.js -------------------------------------------------------------------------------- /docs/extra/apple-jazzy-theme/templates/doc.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/apple-jazzy-theme/templates/doc.mustache -------------------------------------------------------------------------------- /docs/extra/apple-jazzy-theme/templates/footer.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/apple-jazzy-theme/templates/footer.mustache -------------------------------------------------------------------------------- /docs/extra/apple-jazzy-theme/templates/header.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/apple-jazzy-theme/templates/header.mustache -------------------------------------------------------------------------------- /docs/extra/apple-jazzy-theme/templates/nav.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/apple-jazzy-theme/templates/nav.mustache -------------------------------------------------------------------------------- /docs/extra/apple-jazzy-theme/templates/parameter.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/apple-jazzy-theme/templates/parameter.mustache -------------------------------------------------------------------------------- /docs/extra/apple-jazzy-theme/templates/task.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/apple-jazzy-theme/templates/task.mustache -------------------------------------------------------------------------------- /docs/extra/apple-jazzy-theme/templates/tasks.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/apple-jazzy-theme/templates/tasks.mustache -------------------------------------------------------------------------------- /docs/extra/mapbox-jazzy-theme/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/mapbox-jazzy-theme/LICENSE -------------------------------------------------------------------------------- /docs/extra/mapbox-jazzy-theme/assets/css/highlight.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/mapbox-jazzy-theme/assets/css/highlight.css.scss -------------------------------------------------------------------------------- /docs/extra/mapbox-jazzy-theme/assets/css/jazzy.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/mapbox-jazzy-theme/assets/css/jazzy.css.scss -------------------------------------------------------------------------------- /docs/extra/mapbox-jazzy-theme/assets/fonts/opensans-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/mapbox-jazzy-theme/assets/fonts/opensans-bold.eot -------------------------------------------------------------------------------- /docs/extra/mapbox-jazzy-theme/assets/fonts/opensans-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/mapbox-jazzy-theme/assets/fonts/opensans-bold.woff -------------------------------------------------------------------------------- /docs/extra/mapbox-jazzy-theme/assets/fonts/opensans-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/mapbox-jazzy-theme/assets/fonts/opensans-regular.eot -------------------------------------------------------------------------------- /docs/extra/mapbox-jazzy-theme/assets/fonts/opensans-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/mapbox-jazzy-theme/assets/fonts/opensans-regular.woff -------------------------------------------------------------------------------- /docs/extra/mapbox-jazzy-theme/assets/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/mapbox-jazzy-theme/assets/img/carat.png -------------------------------------------------------------------------------- /docs/extra/mapbox-jazzy-theme/assets/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/mapbox-jazzy-theme/assets/img/dash.png -------------------------------------------------------------------------------- /docs/extra/mapbox-jazzy-theme/assets/img/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/mapbox-jazzy-theme/assets/img/github.svg -------------------------------------------------------------------------------- /docs/extra/mapbox-jazzy-theme/assets/img/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/mapbox-jazzy-theme/assets/img/link.svg -------------------------------------------------------------------------------- /docs/extra/mapbox-jazzy-theme/assets/img/mapbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/mapbox-jazzy-theme/assets/img/mapbox.svg -------------------------------------------------------------------------------- /docs/extra/mapbox-jazzy-theme/assets/img/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/mapbox-jazzy-theme/assets/img/minus.svg -------------------------------------------------------------------------------- /docs/extra/mapbox-jazzy-theme/assets/img/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/mapbox-jazzy-theme/assets/img/plus.svg -------------------------------------------------------------------------------- /docs/extra/mapbox-jazzy-theme/assets/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/mapbox-jazzy-theme/assets/js/jazzy.js -------------------------------------------------------------------------------- /docs/extra/mapbox-jazzy-theme/assets/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/mapbox-jazzy-theme/assets/js/jazzy.search.js -------------------------------------------------------------------------------- /docs/extra/mapbox-jazzy-theme/assets/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/mapbox-jazzy-theme/assets/js/jquery.min.js -------------------------------------------------------------------------------- /docs/extra/mapbox-jazzy-theme/assets/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/mapbox-jazzy-theme/assets/js/lunr.min.js -------------------------------------------------------------------------------- /docs/extra/mapbox-jazzy-theme/assets/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/mapbox-jazzy-theme/assets/js/typeahead.jquery.js -------------------------------------------------------------------------------- /docs/extra/mapbox-jazzy-theme/templates/deprecation.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/mapbox-jazzy-theme/templates/deprecation.mustache -------------------------------------------------------------------------------- /docs/extra/mapbox-jazzy-theme/templates/doc.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/mapbox-jazzy-theme/templates/doc.mustache -------------------------------------------------------------------------------- /docs/extra/mapbox-jazzy-theme/templates/footer.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/mapbox-jazzy-theme/templates/footer.mustache -------------------------------------------------------------------------------- /docs/extra/mapbox-jazzy-theme/templates/header.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/mapbox-jazzy-theme/templates/header.mustache -------------------------------------------------------------------------------- /docs/extra/mapbox-jazzy-theme/templates/nav.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/mapbox-jazzy-theme/templates/nav.mustache -------------------------------------------------------------------------------- /docs/extra/mapbox-jazzy-theme/templates/parameter.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/mapbox-jazzy-theme/templates/parameter.mustache -------------------------------------------------------------------------------- /docs/extra/mapbox-jazzy-theme/templates/task.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/mapbox-jazzy-theme/templates/task.mustache -------------------------------------------------------------------------------- /docs/extra/mapbox-jazzy-theme/templates/tasks.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/mapbox-jazzy-theme/templates/tasks.mustache -------------------------------------------------------------------------------- /docs/extra/nef-jazzy-theme/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/nef-jazzy-theme/LICENSE -------------------------------------------------------------------------------- /docs/extra/nef-jazzy-theme/assets/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/nef-jazzy-theme/assets/css/highlight.css -------------------------------------------------------------------------------- /docs/extra/nef-jazzy-theme/assets/css/jazzy.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/nef-jazzy-theme/assets/css/jazzy.css.scss -------------------------------------------------------------------------------- /docs/extra/nef-jazzy-theme/assets/fonts/opensans-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/nef-jazzy-theme/assets/fonts/opensans-bold.eot -------------------------------------------------------------------------------- /docs/extra/nef-jazzy-theme/assets/fonts/opensans-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/nef-jazzy-theme/assets/fonts/opensans-bold.woff -------------------------------------------------------------------------------- /docs/extra/nef-jazzy-theme/assets/fonts/opensans-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/nef-jazzy-theme/assets/fonts/opensans-regular.eot -------------------------------------------------------------------------------- /docs/extra/nef-jazzy-theme/assets/fonts/opensans-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/nef-jazzy-theme/assets/fonts/opensans-regular.woff -------------------------------------------------------------------------------- /docs/extra/nef-jazzy-theme/assets/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/nef-jazzy-theme/assets/img/carat.png -------------------------------------------------------------------------------- /docs/extra/nef-jazzy-theme/assets/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/nef-jazzy-theme/assets/img/dash.png -------------------------------------------------------------------------------- /docs/extra/nef-jazzy-theme/assets/img/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/nef-jazzy-theme/assets/img/github.svg -------------------------------------------------------------------------------- /docs/extra/nef-jazzy-theme/assets/img/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/nef-jazzy-theme/assets/img/link.svg -------------------------------------------------------------------------------- /docs/extra/nef-jazzy-theme/assets/img/mapbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/nef-jazzy-theme/assets/img/mapbox.svg -------------------------------------------------------------------------------- /docs/extra/nef-jazzy-theme/assets/img/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/nef-jazzy-theme/assets/img/minus.svg -------------------------------------------------------------------------------- /docs/extra/nef-jazzy-theme/assets/img/nef-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/nef-jazzy-theme/assets/img/nef-logo.png -------------------------------------------------------------------------------- /docs/extra/nef-jazzy-theme/assets/img/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/nef-jazzy-theme/assets/img/plus.svg -------------------------------------------------------------------------------- /docs/extra/nef-jazzy-theme/assets/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/nef-jazzy-theme/assets/js/jazzy.js -------------------------------------------------------------------------------- /docs/extra/nef-jazzy-theme/assets/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/nef-jazzy-theme/assets/js/jazzy.search.js -------------------------------------------------------------------------------- /docs/extra/nef-jazzy-theme/assets/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/nef-jazzy-theme/assets/js/jquery.min.js -------------------------------------------------------------------------------- /docs/extra/nef-jazzy-theme/assets/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/nef-jazzy-theme/assets/js/lunr.min.js -------------------------------------------------------------------------------- /docs/extra/nef-jazzy-theme/assets/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/nef-jazzy-theme/assets/js/typeahead.jquery.js -------------------------------------------------------------------------------- /docs/extra/nef-jazzy-theme/templates/deprecation.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/nef-jazzy-theme/templates/deprecation.mustache -------------------------------------------------------------------------------- /docs/extra/nef-jazzy-theme/templates/doc.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/nef-jazzy-theme/templates/doc.mustache -------------------------------------------------------------------------------- /docs/extra/nef-jazzy-theme/templates/footer.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/nef-jazzy-theme/templates/footer.mustache -------------------------------------------------------------------------------- /docs/extra/nef-jazzy-theme/templates/header.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/nef-jazzy-theme/templates/header.mustache -------------------------------------------------------------------------------- /docs/extra/nef-jazzy-theme/templates/nav.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/nef-jazzy-theme/templates/nav.mustache -------------------------------------------------------------------------------- /docs/extra/nef-jazzy-theme/templates/parameter.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/nef-jazzy-theme/templates/parameter.mustache -------------------------------------------------------------------------------- /docs/extra/nef-jazzy-theme/templates/task.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/nef-jazzy-theme/templates/task.mustache -------------------------------------------------------------------------------- /docs/extra/nef-jazzy-theme/templates/tasks.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/extra/nef-jazzy-theme/templates/tasks.mustache -------------------------------------------------------------------------------- /docs/img/arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/img/arrow-down.svg -------------------------------------------------------------------------------- /docs/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/img/favicon.png -------------------------------------------------------------------------------- /docs/img/header-image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/img/header-image.svg -------------------------------------------------------------------------------- /docs/img/main-image-primary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/img/main-image-primary.svg -------------------------------------------------------------------------------- /docs/img/main-image-quaternary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/img/main-image-quaternary.svg -------------------------------------------------------------------------------- /docs/img/main-image-secondary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/img/main-image-secondary.svg -------------------------------------------------------------------------------- /docs/img/main-image-tertiary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/img/main-image-tertiary.svg -------------------------------------------------------------------------------- /docs/img/nav-brand-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/img/nav-brand-white.svg -------------------------------------------------------------------------------- /docs/img/nav-brand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/img/nav-brand.svg -------------------------------------------------------------------------------- /docs/img/nav-icon-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/img/nav-icon-close.svg -------------------------------------------------------------------------------- /docs/img/nav-icon-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/img/nav-icon-open.svg -------------------------------------------------------------------------------- /docs/img/poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/img/poster.png -------------------------------------------------------------------------------- /docs/img/sidebar-icon-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/img/sidebar-icon-close.svg -------------------------------------------------------------------------------- /docs/img/sidebar-icon-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/img/sidebar-icon-open.svg -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: home 3 | --- 4 | -------------------------------------------------------------------------------- /docs/js/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/js/docs.js -------------------------------------------------------------------------------- /docs/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/docs/js/main.js -------------------------------------------------------------------------------- /project/Component/NefCarbon/App/Assets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefCarbon/App/Assets.swift -------------------------------------------------------------------------------- /project/Component/NefCarbon/App/CarbonAppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefCarbon/App/CarbonAppDelegate.swift -------------------------------------------------------------------------------- /project/Component/NefCarbon/App/CarbonApplication.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefCarbon/App/CarbonApplication.swift -------------------------------------------------------------------------------- /project/Component/NefCarbon/App/CarbonAssembler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefCarbon/App/CarbonAssembler.swift -------------------------------------------------------------------------------- /project/Component/NefCarbon/App/CarbonSyncDownloader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefCarbon/App/CarbonSyncDownloader.swift -------------------------------------------------------------------------------- /project/Component/NefCarbon/App/CarbonViewer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefCarbon/App/CarbonViewer.swift -------------------------------------------------------------------------------- /project/Component/NefCarbon/App/CarbonWKWebView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefCarbon/App/CarbonWKWebView.swift -------------------------------------------------------------------------------- /project/Component/NefCarbon/Models/RenderCarbonEnvironment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefCarbon/Models/RenderCarbonEnvironment.swift -------------------------------------------------------------------------------- /project/Component/NefCarbon/NefCarbon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefCarbon/NefCarbon.swift -------------------------------------------------------------------------------- /project/Component/NefCarbon/Support Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefCarbon/Support Files/Info.plist -------------------------------------------------------------------------------- /project/Component/NefCarbon/Support Files/NefCarbon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefCarbon/Support Files/NefCarbon.h -------------------------------------------------------------------------------- /project/Component/NefCarbon/Utils/NSImage+Store.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefCarbon/Utils/NSImage+Store.swift -------------------------------------------------------------------------------- /project/Component/NefCarbon/Utils/URLQuery.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefCarbon/Utils/URLQuery.swift -------------------------------------------------------------------------------- /project/Component/NefCarbon/Views/CarbonWebView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefCarbon/Views/CarbonWebView.swift -------------------------------------------------------------------------------- /project/Component/NefClean/Clean.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefClean/Clean.swift -------------------------------------------------------------------------------- /project/Component/NefClean/Errors/CleanError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefClean/Errors/CleanError.swift -------------------------------------------------------------------------------- /project/Component/NefClean/Models/CleanEnvironment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefClean/Models/CleanEnvironment.swift -------------------------------------------------------------------------------- /project/Component/NefClean/Models/CleanEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefClean/Models/CleanEvent.swift -------------------------------------------------------------------------------- /project/Component/NefClean/Support Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefClean/Support Files/Info.plist -------------------------------------------------------------------------------- /project/Component/NefClean/Support Files/NefClean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefClean/Support Files/NefClean.h -------------------------------------------------------------------------------- /project/Component/NefCommon/Algebras/FileSystem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefCommon/Algebras/FileSystem.swift -------------------------------------------------------------------------------- /project/Component/NefCommon/Algebras/NefPlaygroundSystem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefCommon/Algebras/NefPlaygroundSystem.swift -------------------------------------------------------------------------------- /project/Component/NefCommon/Algebras/RenderingPersistence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefCommon/Algebras/RenderingPersistence.swift -------------------------------------------------------------------------------- /project/Component/NefCommon/Algebras/XcodePlaygroundSystem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefCommon/Algebras/XcodePlaygroundSystem.swift -------------------------------------------------------------------------------- /project/Component/NefCommon/Errors/FileSystemError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefCommon/Errors/FileSystemError.swift -------------------------------------------------------------------------------- /project/Component/NefCommon/Errors/PlaygroundShellError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefCommon/Errors/PlaygroundShellError.swift -------------------------------------------------------------------------------- /project/Component/NefCommon/Errors/RenderingOutput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefCommon/Errors/RenderingOutput.swift -------------------------------------------------------------------------------- /project/Component/NefCommon/Errors/RenderingPersistenceError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefCommon/Errors/RenderingPersistenceError.swift -------------------------------------------------------------------------------- /project/Component/NefCommon/Errors/XcodePlaygroundSystemError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefCommon/Errors/XcodePlaygroundSystemError.swift -------------------------------------------------------------------------------- /project/Component/NefCommon/Models/HasProgressReport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefCommon/Models/HasProgressReport.swift -------------------------------------------------------------------------------- /project/Component/NefCommon/Models/NefPlaygroundURL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefCommon/Models/NefPlaygroundURL.swift -------------------------------------------------------------------------------- /project/Component/NefCommon/Models/RenderingURL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefCommon/Models/RenderingURL.swift -------------------------------------------------------------------------------- /project/Component/NefCommon/Support Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefCommon/Support Files/Info.plist -------------------------------------------------------------------------------- /project/Component/NefCommon/Support Files/NefCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefCommon/Support Files/NefCommon.h -------------------------------------------------------------------------------- /project/Component/NefCommon/Utils/Array+Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefCommon/Utils/Array+Utils.swift -------------------------------------------------------------------------------- /project/Component/NefCommon/Utils/Effects+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefCommon/Utils/Effects+Extensions.swift -------------------------------------------------------------------------------- /project/Component/NefCommon/Utils/EnumeratedSequence+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefCommon/Utils/EnumeratedSequence+Extension.swift -------------------------------------------------------------------------------- /project/Component/NefCommon/Utils/Platform+Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefCommon/Utils/Platform+Utils.swift -------------------------------------------------------------------------------- /project/Component/NefCommon/Utils/String+Path.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefCommon/Utils/String+Path.swift -------------------------------------------------------------------------------- /project/Component/NefCommon/Utils/String+Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefCommon/Utils/String+Utils.swift -------------------------------------------------------------------------------- /project/Component/NefCompiler/Algebras/CompilerShell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefCompiler/Algebras/CompilerShell.swift -------------------------------------------------------------------------------- /project/Component/NefCompiler/Algebras/CompilerSystem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefCompiler/Algebras/CompilerSystem.swift -------------------------------------------------------------------------------- /project/Component/NefCompiler/Errors/CompilerShellError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefCompiler/Errors/CompilerShellError.swift -------------------------------------------------------------------------------- /project/Component/NefCompiler/Errors/CompilerSystemError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefCompiler/Errors/CompilerSystemError.swift -------------------------------------------------------------------------------- /project/Component/NefCompiler/Extensions/SwiftModule+IO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefCompiler/Extensions/SwiftModule+IO.swift -------------------------------------------------------------------------------- /project/Component/NefCompiler/Instances/NefCompilerSystem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefCompiler/Instances/NefCompilerSystem.swift -------------------------------------------------------------------------------- /project/Component/NefCompiler/Models/CompilerEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefCompiler/Models/CompilerEvent.swift -------------------------------------------------------------------------------- /project/Component/NefCompiler/Models/CompilerSystemEnvironment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefCompiler/Models/CompilerSystemEnvironment.swift -------------------------------------------------------------------------------- /project/Component/NefCompiler/Models/RenderCompilerEnvironment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefCompiler/Models/RenderCompilerEnvironment.swift -------------------------------------------------------------------------------- /project/Component/NefCompiler/NefCompiler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefCompiler/NefCompiler.swift -------------------------------------------------------------------------------- /project/Component/NefCompiler/Support Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefCompiler/Support Files/Info.plist -------------------------------------------------------------------------------- /project/Component/NefCompiler/Support Files/NefCompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefCompiler/Support Files/NefCompiler.h -------------------------------------------------------------------------------- /project/Component/NefJekyll/Models/JekyllEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefJekyll/Models/JekyllEvent.swift -------------------------------------------------------------------------------- /project/Component/NefJekyll/Models/RenderJekyllEnvironment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefJekyll/Models/RenderJekyllEnvironment.swift -------------------------------------------------------------------------------- /project/Component/NefJekyll/NefJekyll.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefJekyll/NefJekyll.swift -------------------------------------------------------------------------------- /project/Component/NefJekyll/Support Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefJekyll/Support Files/Info.plist -------------------------------------------------------------------------------- /project/Component/NefJekyll/Support Files/NefJekyll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefJekyll/Support Files/NefJekyll.h -------------------------------------------------------------------------------- /project/Component/NefMarkdown/Models/RenderMarkdownEnvironment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefMarkdown/Models/RenderMarkdownEnvironment.swift -------------------------------------------------------------------------------- /project/Component/NefMarkdown/NefMarkdown.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefMarkdown/NefMarkdown.swift -------------------------------------------------------------------------------- /project/Component/NefMarkdown/Support Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefMarkdown/Support Files/Info.plist -------------------------------------------------------------------------------- /project/Component/NefMarkdown/Support Files/NefMarkdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefMarkdown/Support Files/NefMarkdown.h -------------------------------------------------------------------------------- /project/Component/NefModels/CarbonModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefModels/CarbonModel.swift -------------------------------------------------------------------------------- /project/Component/NefModels/CarbonView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefModels/CarbonView.swift -------------------------------------------------------------------------------- /project/Component/NefModels/CompilerOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefModels/CompilerOptions.swift -------------------------------------------------------------------------------- /project/Component/NefModels/PlaygroundDependencies.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefModels/PlaygroundDependencies.swift -------------------------------------------------------------------------------- /project/Component/NefModels/PlaygroundExcludeItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefModels/PlaygroundExcludeItem.swift -------------------------------------------------------------------------------- /project/Component/NefModels/PlaygroundPlatform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefModels/PlaygroundPlatform.swift -------------------------------------------------------------------------------- /project/Component/NefModels/ProgressReport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefModels/ProgressReport.swift -------------------------------------------------------------------------------- /project/Component/NefModels/RenderedPage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefModels/RenderedPage.swift -------------------------------------------------------------------------------- /project/Component/NefModels/Support Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefModels/Support Files/Info.plist -------------------------------------------------------------------------------- /project/Component/NefModels/Support Files/NefModels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefModels/Support Files/NefModels.h -------------------------------------------------------------------------------- /project/Component/NefModels/SwiftModule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefModels/SwiftModule.swift -------------------------------------------------------------------------------- /project/Component/NefModels/WorkspaceInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefModels/WorkspaceInfo.swift -------------------------------------------------------------------------------- /project/Component/NefPlayground/Errors/PlaygroundError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefPlayground/Errors/PlaygroundError.swift -------------------------------------------------------------------------------- /project/Component/NefPlayground/Models/PlaygroundEnvironment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefPlayground/Models/PlaygroundEnvironment.swift -------------------------------------------------------------------------------- /project/Component/NefPlayground/Models/PlaygroundEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefPlayground/Models/PlaygroundEvent.swift -------------------------------------------------------------------------------- /project/Component/NefPlayground/Playground.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefPlayground/Playground.swift -------------------------------------------------------------------------------- /project/Component/NefPlayground/Support Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefPlayground/Support Files/Info.plist -------------------------------------------------------------------------------- /project/Component/NefPlayground/Support Files/NefPlayground.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefPlayground/Support Files/NefPlayground.h -------------------------------------------------------------------------------- /project/Component/NefRender/Errors/MarkdownError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefRender/Errors/MarkdownError.swift -------------------------------------------------------------------------------- /project/Component/NefRender/Models/RenderEnvironment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefRender/Models/RenderEnvironment.swift -------------------------------------------------------------------------------- /project/Component/NefRender/Models/RenderEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefRender/Models/RenderEvent.swift -------------------------------------------------------------------------------- /project/Component/NefRender/Render.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefRender/Render.swift -------------------------------------------------------------------------------- /project/Component/NefRender/Support Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefRender/Support Files/Info.plist -------------------------------------------------------------------------------- /project/Component/NefRender/Support Files/NefRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefRender/Support Files/NefRender.h -------------------------------------------------------------------------------- /project/Component/NefSwiftPlayground/Algebras/PackageShell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefSwiftPlayground/Algebras/PackageShell.swift -------------------------------------------------------------------------------- /project/Component/NefSwiftPlayground/Assets.swift: -------------------------------------------------------------------------------- 1 | // Copyright © 2019 The nef Authors. 2 | 3 | import Foundation 4 | 5 | enum AssetsBase64 {} 6 | -------------------------------------------------------------------------------- /project/Component/NefSwiftPlayground/Assets/ImageReference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefSwiftPlayground/Assets/ImageReference.swift -------------------------------------------------------------------------------- /project/Component/NefSwiftPlayground/Errors/PackageShellError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefSwiftPlayground/Errors/PackageShellError.swift -------------------------------------------------------------------------------- /project/Component/NefSwiftPlayground/Errors/PlaygroundBookError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefSwiftPlayground/Errors/PlaygroundBookError.swift -------------------------------------------------------------------------------- /project/Component/NefSwiftPlayground/Errors/SwiftPlaygroundError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefSwiftPlayground/Errors/SwiftPlaygroundError.swift -------------------------------------------------------------------------------- /project/Component/NefSwiftPlayground/Models/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefSwiftPlayground/Models/Module.swift -------------------------------------------------------------------------------- /project/Component/NefSwiftPlayground/Models/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefSwiftPlayground/Models/Package.swift -------------------------------------------------------------------------------- /project/Component/NefSwiftPlayground/Models/PlaygroundBookEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefSwiftPlayground/Models/PlaygroundBookEvent.swift -------------------------------------------------------------------------------- /project/Component/NefSwiftPlayground/Models/PlaygroundBookResolutionPath.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefSwiftPlayground/Models/PlaygroundBookResolutionPath.swift -------------------------------------------------------------------------------- /project/Component/NefSwiftPlayground/Models/PlaygroundBookTemplate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefSwiftPlayground/Models/PlaygroundBookTemplate.swift -------------------------------------------------------------------------------- /project/Component/NefSwiftPlayground/Models/PlaygroundEnvironment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefSwiftPlayground/Models/PlaygroundEnvironment.swift -------------------------------------------------------------------------------- /project/Component/NefSwiftPlayground/Models/PlaygroundResolutionPath.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefSwiftPlayground/Models/PlaygroundResolutionPath.swift -------------------------------------------------------------------------------- /project/Component/NefSwiftPlayground/Models/SwiftPackage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefSwiftPlayground/Models/SwiftPackage.swift -------------------------------------------------------------------------------- /project/Component/NefSwiftPlayground/Models/SwiftPackageProduct.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefSwiftPlayground/Models/SwiftPackageProduct.swift -------------------------------------------------------------------------------- /project/Component/NefSwiftPlayground/PlaygroundBook.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefSwiftPlayground/PlaygroundBook.swift -------------------------------------------------------------------------------- /project/Component/NefSwiftPlayground/Support Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefSwiftPlayground/Support Files/Info.plist -------------------------------------------------------------------------------- /project/Component/NefSwiftPlayground/Support Files/NefSwiftPlayground.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefSwiftPlayground/Support Files/NefSwiftPlayground.h -------------------------------------------------------------------------------- /project/Component/NefSwiftPlayground/SwiftPlayground.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/NefSwiftPlayground/SwiftPlayground.swift -------------------------------------------------------------------------------- /project/Component/nef/CarbonAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/nef/CarbonAPI.swift -------------------------------------------------------------------------------- /project/Component/nef/CleanAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/nef/CleanAPI.swift -------------------------------------------------------------------------------- /project/Component/nef/CompilerAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/nef/CompilerAPI.swift -------------------------------------------------------------------------------- /project/Component/nef/Instances/MacCompilerShell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/nef/Instances/MacCompilerShell.swift -------------------------------------------------------------------------------- /project/Component/nef/Instances/MacNefPlaygroundSystem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/nef/Instances/MacNefPlaygroundSystem.swift -------------------------------------------------------------------------------- /project/Component/nef/Instances/UnixFileSystem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/nef/Instances/UnixFileSystem.swift -------------------------------------------------------------------------------- /project/Component/nef/Instances/UnixPackageShell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/nef/Instances/UnixPackageShell.swift -------------------------------------------------------------------------------- /project/Component/nef/Instances/UnixPlaygroundSystem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/nef/Instances/UnixPlaygroundSystem.swift -------------------------------------------------------------------------------- /project/Component/nef/Instances/UnixRenderSystem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/nef/Instances/UnixRenderSystem.swift -------------------------------------------------------------------------------- /project/Component/nef/JekyllAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/nef/JekyllAPI.swift -------------------------------------------------------------------------------- /project/Component/nef/MarkdownAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/nef/MarkdownAPI.swift -------------------------------------------------------------------------------- /project/Component/nef/Models/Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/nef/Models/Error.swift -------------------------------------------------------------------------------- /project/Component/nef/PlaygroundAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/nef/PlaygroundAPI.swift -------------------------------------------------------------------------------- /project/Component/nef/Support Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/nef/Support Files/Info.plist -------------------------------------------------------------------------------- /project/Component/nef/Support Files/_Carbon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/nef/Support Files/_Carbon.h -------------------------------------------------------------------------------- /project/Component/nef/Support Files/_Clean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/nef/Support Files/_Clean.h -------------------------------------------------------------------------------- /project/Component/nef/Support Files/_Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/nef/Support Files/_Common.h -------------------------------------------------------------------------------- /project/Component/nef/Support Files/_Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/nef/Support Files/_Compiler.h -------------------------------------------------------------------------------- /project/Component/nef/Support Files/_Core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/nef/Support Files/_Core.h -------------------------------------------------------------------------------- /project/Component/nef/Support Files/_Jekyll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/nef/Support Files/_Jekyll.h -------------------------------------------------------------------------------- /project/Component/nef/Support Files/_Markdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/nef/Support Files/_Markdown.h -------------------------------------------------------------------------------- /project/Component/nef/Support Files/_Playground.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/nef/Support Files/_Playground.h -------------------------------------------------------------------------------- /project/Component/nef/Support Files/_SwiftPlayground.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/nef/Support Files/_SwiftPlayground.h -------------------------------------------------------------------------------- /project/Component/nef/Support Files/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/nef/Support Files/module.modulemap -------------------------------------------------------------------------------- /project/Component/nef/Support Files/nef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/nef/Support Files/nef.h -------------------------------------------------------------------------------- /project/Component/nef/SwiftPlaygroundAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/nef/SwiftPlaygroundAPI.swift -------------------------------------------------------------------------------- /project/Component/nef/Utils/BuildConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/nef/Utils/BuildConfiguration.swift -------------------------------------------------------------------------------- /project/Component/nef/Utils/URL+PlaygroundPage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/nef/Utils/URL+PlaygroundPage.swift -------------------------------------------------------------------------------- /project/Component/nef/VersionAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Component/nef/VersionAPI.swift -------------------------------------------------------------------------------- /project/Core/Models/CoreEnvironments.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Core/Models/CoreEnvironments.swift -------------------------------------------------------------------------------- /project/Core/Models/CoreRenderError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Core/Models/CoreRenderError.swift -------------------------------------------------------------------------------- /project/Core/Models/Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Core/Models/Image.swift -------------------------------------------------------------------------------- /project/Core/Models/MarkupNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Core/Models/MarkupNode.swift -------------------------------------------------------------------------------- /project/Core/Parser/Lexical.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Core/Parser/Lexical.swift -------------------------------------------------------------------------------- /project/Core/Parser/Syntax.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Core/Parser/Syntax.swift -------------------------------------------------------------------------------- /project/Core/Render/CoreCarbon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Core/Render/CoreCarbon.swift -------------------------------------------------------------------------------- /project/Core/Render/CoreCode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Core/Render/CoreCode.swift -------------------------------------------------------------------------------- /project/Core/Render/CoreJekyll.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Core/Render/CoreJekyll.swift -------------------------------------------------------------------------------- /project/Core/Render/CoreMarkdown.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Core/Render/CoreMarkdown.swift -------------------------------------------------------------------------------- /project/Core/Render/CoreRender.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Core/Render/CoreRender.swift -------------------------------------------------------------------------------- /project/Core/Support Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Core/Support Files/Info.plist -------------------------------------------------------------------------------- /project/Core/Support Files/NefCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Core/Support Files/NefCore.h -------------------------------------------------------------------------------- /project/Core/Utils/Node+Render.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Core/Utils/Node+Render.swift -------------------------------------------------------------------------------- /project/Core/Utils/String+Format.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Core/Utils/String+Format.swift -------------------------------------------------------------------------------- /project/Tests/CoreTestPlan.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Tests/CoreTestPlan.xctestplan -------------------------------------------------------------------------------- /project/Tests/CoreTests/JekyllTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Tests/CoreTests/JekyllTests.swift -------------------------------------------------------------------------------- /project/Tests/CoreTests/MarkdownTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Tests/CoreTests/MarkdownTests.swift -------------------------------------------------------------------------------- /project/Tests/CoreTests/Support Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Tests/CoreTests/Support Files/Info.plist -------------------------------------------------------------------------------- /project/Tests/CoreTests/SyntaxTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Tests/CoreTests/SyntaxTests.swift -------------------------------------------------------------------------------- /project/Tests/CoreTests/Utils/CoreRender+Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/Tests/CoreTests/Utils/CoreRender+Test.swift -------------------------------------------------------------------------------- /project/UI/CLIKit/Array+Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/UI/CLIKit/Array+Utils.swift -------------------------------------------------------------------------------- /project/UI/CLIKit/Collection+Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/UI/CLIKit/Collection+Utils.swift -------------------------------------------------------------------------------- /project/UI/CLIKit/CommandLineTool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/UI/CLIKit/CommandLineTool.swift -------------------------------------------------------------------------------- /project/UI/CLIKit/CommandOutcome.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/UI/CLIKit/CommandOutcome.swift -------------------------------------------------------------------------------- /project/UI/CLIKit/ConsoleReport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/UI/CLIKit/ConsoleReport.swift -------------------------------------------------------------------------------- /project/UI/CLIKit/DispatchTimeInterval+Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/UI/CLIKit/DispatchTimeInterval+Utils.swift -------------------------------------------------------------------------------- /project/UI/CLIKit/ExpressibleByArgument+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/UI/CLIKit/ExpressibleByArgument+Extension.swift -------------------------------------------------------------------------------- /project/UI/CLIKit/Kleisli+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/UI/CLIKit/Kleisli+Extensions.swift -------------------------------------------------------------------------------- /project/UI/CLIKit/OutcomeReport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/UI/CLIKit/OutcomeReport.swift -------------------------------------------------------------------------------- /project/UI/CLIKit/PlaygroundUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/UI/CLIKit/PlaygroundUtils.swift -------------------------------------------------------------------------------- /project/UI/CLIKit/String+Colorize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/UI/CLIKit/String+Colorize.swift -------------------------------------------------------------------------------- /project/UI/CLIKit/Support Files/CLIKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/UI/CLIKit/Support Files/CLIKit.h -------------------------------------------------------------------------------- /project/UI/CLIKit/Support Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/UI/CLIKit/Support Files/Info.plist -------------------------------------------------------------------------------- /project/UI/Carbon/Carbon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/UI/Carbon/Carbon.swift -------------------------------------------------------------------------------- /project/UI/Carbon/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/UI/Carbon/main.swift -------------------------------------------------------------------------------- /project/UI/CarbonPage/CarbonPage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/UI/CarbonPage/CarbonPage.swift -------------------------------------------------------------------------------- /project/UI/CarbonPage/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/UI/CarbonPage/main.swift -------------------------------------------------------------------------------- /project/UI/Clean/Clean.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/UI/Clean/Clean.swift -------------------------------------------------------------------------------- /project/UI/Clean/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/UI/Clean/main.swift -------------------------------------------------------------------------------- /project/UI/Compiler/Compiler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/UI/Compiler/Compiler.swift -------------------------------------------------------------------------------- /project/UI/Compiler/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/UI/Compiler/main.swift -------------------------------------------------------------------------------- /project/UI/Jekyll/Jekyll.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/UI/Jekyll/Jekyll.swift -------------------------------------------------------------------------------- /project/UI/Jekyll/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/UI/Jekyll/main.swift -------------------------------------------------------------------------------- /project/UI/JekyllPage/JekyllPage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/UI/JekyllPage/JekyllPage.swift -------------------------------------------------------------------------------- /project/UI/JekyllPage/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/UI/JekyllPage/main.swift -------------------------------------------------------------------------------- /project/UI/Markdown/Markdown.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/UI/Markdown/Markdown.swift -------------------------------------------------------------------------------- /project/UI/Markdown/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/UI/Markdown/main.swift -------------------------------------------------------------------------------- /project/UI/MarkdownPage/MarkdownPage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/UI/MarkdownPage/MarkdownPage.swift -------------------------------------------------------------------------------- /project/UI/MarkdownPage/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/UI/MarkdownPage/main.swift -------------------------------------------------------------------------------- /project/UI/Nef/Version.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/UI/Nef/Version.swift -------------------------------------------------------------------------------- /project/UI/Nef/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/UI/Nef/main.swift -------------------------------------------------------------------------------- /project/UI/Playground/Playground.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/UI/Playground/Playground.swift -------------------------------------------------------------------------------- /project/UI/Playground/PlaygroundDependenciesError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/UI/Playground/PlaygroundDependenciesError.swift -------------------------------------------------------------------------------- /project/UI/Playground/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/UI/Playground/main.swift -------------------------------------------------------------------------------- /project/UI/PlaygroundBook/PlaygroundBook.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/UI/PlaygroundBook/PlaygroundBook.swift -------------------------------------------------------------------------------- /project/UI/PlaygroundBook/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/UI/PlaygroundBook/main.swift -------------------------------------------------------------------------------- /project/nef.xcodeproj/JekyllMarkdown.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/nef.xcodeproj/JekyllMarkdown.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /project/nef.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/nef.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /project/nef.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/nef.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /project/nef.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/nef.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /project/nef.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/nef.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /project/nef.xcodeproj/xcshareddata/IDETemplateMacros.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/nef.xcodeproj/xcshareddata/IDETemplateMacros.plist -------------------------------------------------------------------------------- /project/nef.xcodeproj/xcshareddata/xcschemes/CLIKit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/nef.xcodeproj/xcshareddata/xcschemes/CLIKit.xcscheme -------------------------------------------------------------------------------- /project/nef.xcodeproj/xcshareddata/xcschemes/Carbon.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/nef.xcodeproj/xcshareddata/xcschemes/Carbon.xcscheme -------------------------------------------------------------------------------- /project/nef.xcodeproj/xcshareddata/xcschemes/CarbonPage.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/nef.xcodeproj/xcshareddata/xcschemes/CarbonPage.xcscheme -------------------------------------------------------------------------------- /project/nef.xcodeproj/xcshareddata/xcschemes/Clean.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/nef.xcodeproj/xcshareddata/xcschemes/Clean.xcscheme -------------------------------------------------------------------------------- /project/nef.xcodeproj/xcshareddata/xcschemes/Compiler.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/nef.xcodeproj/xcshareddata/xcschemes/Compiler.xcscheme -------------------------------------------------------------------------------- /project/nef.xcodeproj/xcshareddata/xcschemes/CoreTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/nef.xcodeproj/xcshareddata/xcschemes/CoreTests.xcscheme -------------------------------------------------------------------------------- /project/nef.xcodeproj/xcshareddata/xcschemes/Jekyll.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/nef.xcodeproj/xcshareddata/xcschemes/Jekyll.xcscheme -------------------------------------------------------------------------------- /project/nef.xcodeproj/xcshareddata/xcschemes/JekyllPage.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/nef.xcodeproj/xcshareddata/xcschemes/JekyllPage.xcscheme -------------------------------------------------------------------------------- /project/nef.xcodeproj/xcshareddata/xcschemes/Markdown.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/nef.xcodeproj/xcshareddata/xcschemes/Markdown.xcscheme -------------------------------------------------------------------------------- /project/nef.xcodeproj/xcshareddata/xcschemes/MarkdownPage.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/nef.xcodeproj/xcshareddata/xcschemes/MarkdownPage.xcscheme -------------------------------------------------------------------------------- /project/nef.xcodeproj/xcshareddata/xcschemes/NefCarbon.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/nef.xcodeproj/xcshareddata/xcschemes/NefCarbon.xcscheme -------------------------------------------------------------------------------- /project/nef.xcodeproj/xcshareddata/xcschemes/NefClean.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/nef.xcodeproj/xcshareddata/xcschemes/NefClean.xcscheme -------------------------------------------------------------------------------- /project/nef.xcodeproj/xcshareddata/xcschemes/NefCommon.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/nef.xcodeproj/xcshareddata/xcschemes/NefCommon.xcscheme -------------------------------------------------------------------------------- /project/nef.xcodeproj/xcshareddata/xcschemes/NefCompiler.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/nef.xcodeproj/xcshareddata/xcschemes/NefCompiler.xcscheme -------------------------------------------------------------------------------- /project/nef.xcodeproj/xcshareddata/xcschemes/NefCore.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/nef.xcodeproj/xcshareddata/xcschemes/NefCore.xcscheme -------------------------------------------------------------------------------- /project/nef.xcodeproj/xcshareddata/xcschemes/NefJekyll.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/nef.xcodeproj/xcshareddata/xcschemes/NefJekyll.xcscheme -------------------------------------------------------------------------------- /project/nef.xcodeproj/xcshareddata/xcschemes/NefMarkdown.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/nef.xcodeproj/xcshareddata/xcschemes/NefMarkdown.xcscheme -------------------------------------------------------------------------------- /project/nef.xcodeproj/xcshareddata/xcschemes/NefMenu.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/nef.xcodeproj/xcshareddata/xcschemes/NefMenu.xcscheme -------------------------------------------------------------------------------- /project/nef.xcodeproj/xcshareddata/xcschemes/NefModels.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/nef.xcodeproj/xcshareddata/xcschemes/NefModels.xcscheme -------------------------------------------------------------------------------- /project/nef.xcodeproj/xcshareddata/xcschemes/NefPlayground.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/nef.xcodeproj/xcshareddata/xcschemes/NefPlayground.xcscheme -------------------------------------------------------------------------------- /project/nef.xcodeproj/xcshareddata/xcschemes/NefRender.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/nef.xcodeproj/xcshareddata/xcschemes/NefRender.xcscheme -------------------------------------------------------------------------------- /project/nef.xcodeproj/xcshareddata/xcschemes/NefSwiftPlayground.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/nef.xcodeproj/xcshareddata/xcschemes/NefSwiftPlayground.xcscheme -------------------------------------------------------------------------------- /project/nef.xcodeproj/xcshareddata/xcschemes/Playground.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/nef.xcodeproj/xcshareddata/xcschemes/Playground.xcscheme -------------------------------------------------------------------------------- /project/nef.xcodeproj/xcshareddata/xcschemes/PlaygroundBook.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/nef.xcodeproj/xcshareddata/xcschemes/PlaygroundBook.xcscheme -------------------------------------------------------------------------------- /project/nef.xcodeproj/xcshareddata/xcschemes/nef.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/project/nef.xcodeproj/xcshareddata/xcschemes/nef.xcscheme -------------------------------------------------------------------------------- /scripts/gen-docs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/scripts/gen-docs.rb -------------------------------------------------------------------------------- /setup/ConfigureNef.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/setup/ConfigureNef.rb -------------------------------------------------------------------------------- /setup/ProjectManipulator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/setup/ProjectManipulator.rb -------------------------------------------------------------------------------- /setup/TemplateConfigurator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/setup/TemplateConfigurator.rb -------------------------------------------------------------------------------- /setup/nef.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/setup/nef.rb -------------------------------------------------------------------------------- /template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/.gitignore -------------------------------------------------------------------------------- /template/PROJECT.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/PROJECT.app/Contents/Info.plist -------------------------------------------------------------------------------- /template/PROJECT.app/Contents/MacOS/launcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/PROJECT.app/Contents/MacOS/launcher -------------------------------------------------------------------------------- /template/PROJECT.app/Contents/Resources/AppIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/PROJECT.app/Contents/Resources/AppIcon.icns -------------------------------------------------------------------------------- /template/PROJECT.app/Contents/Resources/Assets.car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/PROJECT.app/Contents/Resources/Assets.car -------------------------------------------------------------------------------- /template/ios/carthage/PROJECT.playground/Pages/page.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | -------------------------------------------------------------------------------- /template/ios/carthage/PROJECT.playground/Sources/NefPlaygroundSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/ios/carthage/PROJECT.playground/Sources/NefPlaygroundSupport.swift -------------------------------------------------------------------------------- /template/ios/carthage/PROJECT.playground/Sources/NefTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/ios/carthage/PROJECT.playground/Sources/NefTest.swift -------------------------------------------------------------------------------- /template/ios/carthage/PROJECT.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/ios/carthage/PROJECT.playground/contents.xcplayground -------------------------------------------------------------------------------- /template/ios/carthage/PROJECT.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/ios/carthage/PROJECT.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /template/ios/carthage/PROJECT.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/ios/carthage/PROJECT.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /template/ios/carthage/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/ios/carthage/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /template/ios/carthage/PROJECT.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/ios/carthage/PROJECT.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /template/ios/carthage/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/ios/carthage/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme -------------------------------------------------------------------------------- /template/ios/cocoapods/PROJECT.playground/Pages/page.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | -------------------------------------------------------------------------------- /template/ios/cocoapods/PROJECT.playground/Sources/NefPlaygroundSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/ios/cocoapods/PROJECT.playground/Sources/NefPlaygroundSupport.swift -------------------------------------------------------------------------------- /template/ios/cocoapods/PROJECT.playground/Sources/NefTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/ios/cocoapods/PROJECT.playground/Sources/NefTest.swift -------------------------------------------------------------------------------- /template/ios/cocoapods/PROJECT.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/ios/cocoapods/PROJECT.playground/contents.xcplayground -------------------------------------------------------------------------------- /template/ios/cocoapods/PROJECT.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/ios/cocoapods/PROJECT.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /template/ios/cocoapods/PROJECT.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/ios/cocoapods/PROJECT.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /template/ios/cocoapods/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/ios/cocoapods/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /template/ios/cocoapods/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/ios/cocoapods/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme -------------------------------------------------------------------------------- /template/ios/cocoapods/PROJECT/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/ios/cocoapods/PROJECT/Info.plist -------------------------------------------------------------------------------- /template/ios/cocoapods/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/ios/cocoapods/Podfile -------------------------------------------------------------------------------- /template/ios/spm/PROJECT.playground/Pages/page.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | -------------------------------------------------------------------------------- /template/ios/spm/PROJECT.playground/Sources/NefPlaygroundSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/ios/spm/PROJECT.playground/Sources/NefPlaygroundSupport.swift -------------------------------------------------------------------------------- /template/ios/spm/PROJECT.playground/Sources/NefTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/ios/spm/PROJECT.playground/Sources/NefTest.swift -------------------------------------------------------------------------------- /template/ios/spm/PROJECT.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/ios/spm/PROJECT.playground/contents.xcplayground -------------------------------------------------------------------------------- /template/ios/spm/PROJECT.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/ios/spm/PROJECT.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /template/ios/spm/PROJECT.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/ios/spm/PROJECT.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /template/ios/spm/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/ios/spm/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /template/ios/spm/PROJECT.xcodeproj/xcshareddata/xcschemes/SwiftPackages.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/ios/spm/PROJECT.xcodeproj/xcshareddata/xcschemes/SwiftPackages.xcscheme -------------------------------------------------------------------------------- /template/ios/spm/PROJECT.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/ios/spm/PROJECT.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /template/osx/carthage/PROJECT.playground/Pages/page.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | -------------------------------------------------------------------------------- /template/osx/carthage/PROJECT.playground/Sources/NefTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/osx/carthage/PROJECT.playground/Sources/NefTest.swift -------------------------------------------------------------------------------- /template/osx/carthage/PROJECT.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/osx/carthage/PROJECT.playground/contents.xcplayground -------------------------------------------------------------------------------- /template/osx/carthage/PROJECT.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/osx/carthage/PROJECT.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /template/osx/carthage/PROJECT.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/osx/carthage/PROJECT.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /template/osx/carthage/PROJECT.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/osx/carthage/PROJECT.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /template/osx/carthage/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/osx/carthage/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /template/osx/carthage/PROJECT.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/osx/carthage/PROJECT.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /template/osx/carthage/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/osx/carthage/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme -------------------------------------------------------------------------------- /template/osx/cocoapods/PROJECT.playground/Pages/page.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | -------------------------------------------------------------------------------- /template/osx/cocoapods/PROJECT.playground/Sources/NefTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/osx/cocoapods/PROJECT.playground/Sources/NefTest.swift -------------------------------------------------------------------------------- /template/osx/cocoapods/PROJECT.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/osx/cocoapods/PROJECT.playground/contents.xcplayground -------------------------------------------------------------------------------- /template/osx/cocoapods/PROJECT.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/osx/cocoapods/PROJECT.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /template/osx/cocoapods/PROJECT.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/osx/cocoapods/PROJECT.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /template/osx/cocoapods/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/osx/cocoapods/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /template/osx/cocoapods/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/osx/cocoapods/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme -------------------------------------------------------------------------------- /template/osx/cocoapods/PROJECT/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/osx/cocoapods/PROJECT/Info.plist -------------------------------------------------------------------------------- /template/osx/cocoapods/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/osx/cocoapods/Podfile -------------------------------------------------------------------------------- /template/osx/spm/PROJECT.playground/Pages/page.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | -------------------------------------------------------------------------------- /template/osx/spm/PROJECT.playground/Sources/NefTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/osx/spm/PROJECT.playground/Sources/NefTest.swift -------------------------------------------------------------------------------- /template/osx/spm/PROJECT.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/osx/spm/PROJECT.playground/contents.xcplayground -------------------------------------------------------------------------------- /template/osx/spm/PROJECT.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/osx/spm/PROJECT.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /template/osx/spm/PROJECT.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/osx/spm/PROJECT.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /template/osx/spm/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/osx/spm/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /template/osx/spm/PROJECT.xcodeproj/xcshareddata/xcschemes/SwiftPackages.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/osx/spm/PROJECT.xcodeproj/xcshareddata/xcschemes/SwiftPackages.xcscheme -------------------------------------------------------------------------------- /template/osx/spm/PROJECT.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bow-swift/nef/HEAD/template/osx/spm/PROJECT.xcworkspace/contents.xcworkspacedata --------------------------------------------------------------------------------