├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .ruby-version ├── .swift-version ├── .swiftlint.yml ├── Brewfile ├── Dangerfile ├── Demo ├── .fugen.yml ├── FugenDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ ├── Fugen.xcscheme │ │ └── FugenDemo.xcscheme ├── FugenDemo.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── FugenDemo │ ├── AppDelegate.swift │ ├── Generated │ │ ├── ColorStyle.swift │ │ ├── Images.swift │ │ ├── ShadowStyle.swift │ │ └── TextStyle.swift │ ├── Info.plist │ ├── Resources │ │ ├── Colors.xcassets │ │ │ ├── Contents.json │ │ │ ├── DaisyBush.colorset │ │ │ │ └── Contents.json │ │ │ ├── Eclipse.colorset │ │ │ │ └── Contents.json │ │ │ ├── JellyBean.colorset │ │ │ │ └── Contents.json │ │ │ ├── Lochinvar.colorset │ │ │ │ └── Contents.json │ │ │ ├── Razzmatazz.colorset │ │ │ │ └── Contents.json │ │ │ ├── SnowDrift.colorset │ │ │ │ └── Contents.json │ │ │ ├── Submarine.colorset │ │ │ │ └── Contents.json │ │ │ └── Whisper.colorset │ │ │ │ └── Contents.json │ │ ├── Fonts │ │ │ ├── SF-Pro-Display-Bold.otf │ │ │ ├── SF-Pro-Display-Light.otf │ │ │ ├── SF-Pro-Display-Medium.otf │ │ │ ├── SF-Pro-Display-Regular.otf │ │ │ └── SF-Pro-Display-Semibold.otf │ │ └── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── Generated │ │ │ ├── Cloud.imageset │ │ │ ├── Cloud.pdf │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Geo.imageset │ │ │ ├── Contents.json │ │ │ └── Geo.pdf │ │ │ ├── Phone.imageset │ │ │ ├── Contents.json │ │ │ └── Phone.pdf │ │ │ ├── Share.imageset │ │ │ ├── Contents.json │ │ │ └── Share.pdf │ │ │ ├── Snapchat.imageset │ │ │ ├── Contents.json │ │ │ └── Snapchat.pdf │ │ │ ├── Star.imageset │ │ │ ├── Contents.json │ │ │ └── Star.pdf │ │ │ ├── Telegram.imageset │ │ │ ├── Contents.json │ │ │ └── Telegram.pdf │ │ │ ├── Viber.imageset │ │ │ ├── Contents.json │ │ │ └── Viber.pdf │ │ │ ├── WeChat.imageset │ │ │ ├── Contents.json │ │ │ └── WeChat.pdf │ │ │ └── WhatsApp.imageset │ │ │ ├── Contents.json │ │ │ └── WhatsApp.pdf │ ├── Storyboards │ │ └── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ └── ViewController.swift ├── FugenDemoTests │ ├── FugenDemoTests.swift │ └── Info.plist ├── Podfile └── Podfile.lock ├── Docs ├── AccessToken.png ├── FileURL.png └── PlayVideo.png ├── Fugen.podspec ├── Fugen.xcodeproj ├── CYaml_Info.plist ├── DictionaryCoder_Info.plist ├── FugenTests_Info.plist ├── FugenToolsTests_Info.plist ├── FugenTools_Info.plist ├── PathKit_Info.plist ├── PromiseKit_Info.plist ├── Rainbow_Info.plist ├── StencilSwiftKit_Info.plist ├── Stencil_Info.plist ├── SwiftCLI_Info.plist ├── Yams_Info.plist ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── xcshareddata │ └── xcschemes │ ├── Fugen ColorStyles.xcscheme │ ├── Fugen Generate.xcscheme │ ├── Fugen Help.xcscheme │ ├── Fugen Images.xcscheme │ ├── Fugen Package.xcscheme │ ├── Fugen ShadowStyles.xcscheme │ ├── Fugen TextStyles.xcscheme │ ├── Fugen Version.xcscheme │ ├── Fugen-Package.xcscheme │ └── Fugen.xcscheme ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Makefile ├── Package.resolved ├── Package.resources ├── Package.swift ├── README.md ├── Scripts ├── bootstrap.sh └── swiftlint.sh ├── Sources ├── Fugen │ ├── Commands │ │ ├── AsyncExecutableCommand.swift │ │ ├── ColorStylesCommand.swift │ │ ├── GenerateCommand.swift │ │ ├── GenerationConfigurableCommand.swift │ │ ├── ImagesCommand.swift │ │ ├── ShadowStylesCommand.swift │ │ └── TextStylesCommand.swift │ ├── Dependencies.swift │ ├── Generators │ │ ├── ColorStyles │ │ │ ├── ColorStylesContext.swift │ │ │ ├── ColorStylesGenerator.swift │ │ │ └── DefaultColorStylesGenerator.swift │ │ ├── GenerationParametersError.swift │ │ ├── GenerationParametersResolving.swift │ │ ├── Images │ │ │ ├── DefaultImagesGenerator.swift │ │ │ ├── ImagesContext.swift │ │ │ └── ImagesGenerator.swift │ │ ├── Library │ │ │ ├── DefaultLibraryGenerator.swift │ │ │ └── LibraryGenerator.swift │ │ ├── ShadowStyles │ │ │ ├── DefaultShadowStylesGenerator.swift │ │ │ ├── ShadowStylesContext.swift │ │ │ └── ShadowStylesGenerator.swift │ │ └── TextStyles │ │ │ ├── DefaultTextStylesGenerator.swift │ │ │ ├── TextStylesContext.swift │ │ │ └── TextStylesGenerator.swift │ ├── Models │ │ ├── Color.swift │ │ ├── ColorStyle │ │ │ ├── ColorStyle.swift │ │ │ ├── ColorStyleAsset.swift │ │ │ └── ColorStyleNode.swift │ │ ├── Configuration │ │ │ ├── AccessTokenConfiguration.swift │ │ │ ├── BaseConfiguration.swift │ │ │ ├── ColorStylesConfiguration.swift │ │ │ ├── Configuration.swift │ │ │ ├── FileConfiguration.swift │ │ │ ├── GenerationConfiguration.swift │ │ │ ├── ImagesConfiguration.swift │ │ │ ├── ShadowStylesConfiguration.swift │ │ │ └── TextStylesConfiguration.swift │ │ ├── Font.swift │ │ ├── Images │ │ │ ├── Image.swift │ │ │ ├── ImageAsset.swift │ │ │ ├── ImageFormat.swift │ │ │ ├── ImageNode.swift │ │ │ ├── ImageRenderedNode.swift │ │ │ ├── ImageResource.swift │ │ │ └── ImageScale.swift │ │ ├── Parameters │ │ │ ├── FileParameters.swift │ │ │ ├── GenerationParameters.swift │ │ │ ├── ImagesParameters.swift │ │ │ ├── NodesParameters.swift │ │ │ └── RenderParameters.swift │ │ ├── ShadowStyle │ │ │ ├── Shadow.swift │ │ │ ├── ShadowStyle.swift │ │ │ ├── ShadowStyleNode.swift │ │ │ └── ShadowType.swift │ │ ├── TextStyle │ │ │ ├── TextStyle.swift │ │ │ ├── TextStyleColor.swift │ │ │ └── TextStyleNode.swift │ │ └── Vector.swift │ ├── Providers │ │ ├── Assets │ │ │ ├── AssetsProvider.swift │ │ │ └── DefaultAssetsProvider.swift │ │ ├── ColorStyles │ │ │ ├── Assets │ │ │ │ ├── ColorStyleAssetsProvider.swift │ │ │ │ └── DefaultColorStyleAssetsProvider.swift │ │ │ ├── ColorStylesProvider.swift │ │ │ ├── ColorStylesProviderError.swift │ │ │ └── DefaultColorStylesProvider.swift │ │ ├── Configuration │ │ │ ├── ConfigurationProvider.swift │ │ │ └── DefaultConfigurationProvider.swift │ │ ├── DataProvider │ │ │ ├── DataProvider.swift │ │ │ └── DefaultDataProvider.swift │ │ ├── FigmaAPI │ │ │ ├── DTOs │ │ │ │ ├── FigmaError.swift │ │ │ │ ├── FigmaImages.swift │ │ │ │ └── File │ │ │ │ │ ├── FigmaBlendMode.swift │ │ │ │ │ ├── FigmaBooleanOperationType.swift │ │ │ │ │ ├── FigmaColor.swift │ │ │ │ │ ├── FigmaColorStop.swift │ │ │ │ │ ├── FigmaComponent.swift │ │ │ │ │ ├── FigmaConstraint.swift │ │ │ │ │ ├── FigmaConstraintType.swift │ │ │ │ │ ├── FigmaEasingType.swift │ │ │ │ │ ├── FigmaEffect.swift │ │ │ │ │ ├── FigmaEffectType.swift │ │ │ │ │ ├── FigmaExportSetting.swift │ │ │ │ │ ├── FigmaFrameOffset.swift │ │ │ │ │ ├── FigmaImageFormat.swift │ │ │ │ │ ├── FigmaLayoutConstraint.swift │ │ │ │ │ ├── FigmaLayoutGrid.swift │ │ │ │ │ ├── FigmaLayoutGridAlignment.swift │ │ │ │ │ ├── FigmaLayoutGridPattern.swift │ │ │ │ │ ├── FigmaLayoutHorizontalConstraint.swift │ │ │ │ │ ├── FigmaLayoutVerticalConstraint.swift │ │ │ │ │ ├── FigmaLineHeightUnit.swift │ │ │ │ │ ├── FigmaPaint.swift │ │ │ │ │ ├── FigmaPaintType.swift │ │ │ │ │ ├── FigmaRectangle.swift │ │ │ │ │ ├── FigmaScaleMode.swift │ │ │ │ │ ├── FigmaStrokeAlignment.swift │ │ │ │ │ ├── FigmaStrokeCap.swift │ │ │ │ │ ├── FigmaStrokeJoin.swift │ │ │ │ │ ├── FigmaStyle.swift │ │ │ │ │ ├── FigmaStyleType.swift │ │ │ │ │ ├── FigmaTextCase.swift │ │ │ │ │ ├── FigmaTextDecoration.swift │ │ │ │ │ ├── FigmaTextHorizontalAlignment.swift │ │ │ │ │ ├── FigmaTextVerticalAlignment.swift │ │ │ │ │ ├── FigmaTypeStyle.swift │ │ │ │ │ ├── FigmaVector.swift │ │ │ │ │ └── Nodes │ │ │ │ │ ├── FigmaBooleanOperationNodePayload.swift │ │ │ │ │ ├── FigmaCanvasNodeInfo.swift │ │ │ │ │ ├── FigmaDocumentNodeInfo.swift │ │ │ │ │ ├── FigmaFile.swift │ │ │ │ │ ├── FigmaFrameNodeInfo.swift │ │ │ │ │ ├── FigmaInstanceNodePayload.swift │ │ │ │ │ ├── FigmaNode.swift │ │ │ │ │ ├── FigmaNodeType.swift │ │ │ │ │ ├── FigmaRectangleNodePayload.swift │ │ │ │ │ ├── FigmaSliceNodeInfo.swift │ │ │ │ │ ├── FigmaTextNodePayload.swift │ │ │ │ │ └── FigmaVectorNodeInfo.swift │ │ │ ├── DefaultFigmaAPIProvider.swift │ │ │ ├── FigmaAPIEmptyParameters.swift │ │ │ ├── FigmaAPIEmptyResponse.swift │ │ │ ├── FigmaAPIProvider.swift │ │ │ ├── FigmaAPIRoute.swift │ │ │ ├── FigmaAPIVersion.swift │ │ │ ├── FigmaHTTPService.swift │ │ │ └── Routes │ │ │ │ ├── FigmaAPIFileRoute.swift │ │ │ │ ├── FigmaAPIFileRouteQueryParameters.swift │ │ │ │ ├── FigmaAPIImagesRoute.swift │ │ │ │ └── FigmaAPIImagesRouteQueryParameters.swift │ │ ├── FigmaFiles │ │ │ ├── DefaultFigmaFilesProvider.swift │ │ │ └── FigmaFilesProvider.swift │ │ ├── FigmaNodes │ │ │ ├── DefaultFigmaNodesProvider.swift │ │ │ ├── FigmaNodesProvider.swift │ │ │ └── FigmaNodesProviderError.swift │ │ ├── Images │ │ │ ├── Assets │ │ │ │ ├── DefaultImageAssetsProvider.swift │ │ │ │ └── ImageAssetsProvider.swift │ │ │ ├── DefaultImagesProvider.swift │ │ │ ├── ImagesProvider.swift │ │ │ ├── ImagesProviderError.swift │ │ │ ├── Render │ │ │ │ ├── DefaultImageRenderProvider.swift │ │ │ │ ├── ImageRenderProvider.swift │ │ │ │ └── ImageRenderProviderError.swift │ │ │ └── Resources │ │ │ │ ├── DefaultImageResourcesProvider.swift │ │ │ │ └── ImageResourcesProvider.swift │ │ ├── ShadowStyles │ │ │ ├── DefaultShadowStylesProvider.swift │ │ │ ├── ShadowStylesProvider.swift │ │ │ └── ShadowStylesProviderError.swift │ │ └── TextStyles │ │ │ ├── DefaultTextStylesProvider.swift │ │ │ ├── TextStylesProvider.swift │ │ │ └── TextStylesProviderError.swift │ ├── Render │ │ ├── DefaultTemplateContextCoder.swift │ │ ├── DefaultTemplateRenderer.swift │ │ ├── RenderDestination.swift │ │ ├── RenderTemplate.swift │ │ ├── RenderTemplateType.swift │ │ ├── StencilExtensions │ │ │ ├── Color │ │ │ │ ├── StencilColorFilter.swift │ │ │ │ ├── StencilColorInfoFilter.swift │ │ │ │ ├── StencilColorRGBAHexInfoFilter.swift │ │ │ │ ├── StencilColorRGBAInfoFilter.swift │ │ │ │ ├── StencilColorRGBHexInfoFilter.swift │ │ │ │ └── StencilColorRGBInfoFilter.swift │ │ │ ├── Font │ │ │ │ ├── StencilFontFilter.swift │ │ │ │ ├── StencilFontInfoFilter.swift │ │ │ │ ├── StencilFontInitializerModificator.swift │ │ │ │ ├── StencilFontModificator.swift │ │ │ │ └── StencilFontSystemFilter.swift │ │ │ ├── Number │ │ │ │ ├── StencilByteToFloatFilter.swift │ │ │ │ ├── StencilByteToHexFilter.swift │ │ │ │ ├── StencilFloatToByteFilter.swift │ │ │ │ └── StencilHexToByteFilter.swift │ │ │ ├── StencilExtension.swift │ │ │ ├── StencilFilter.swift │ │ │ ├── StencilFilterError.swift │ │ │ ├── StencilModificator.swift │ │ │ ├── StencilModificatorError.swift │ │ │ ├── StencilTag.swift │ │ │ ├── StencilTagError.swift │ │ │ ├── StencilTagNode.swift │ │ │ └── Vector │ │ │ │ ├── StencilVectorFilter.swift │ │ │ │ └── StencilVectorInfoFilter.swift │ │ ├── TemplateContextCoder.swift │ │ └── TemplateRenderer.swift │ └── main.swift └── FugenTools │ ├── .swiftlint.yml │ ├── Assets │ ├── AssetAppearance.swift │ ├── AssetAppearanceContrast.swift │ ├── AssetAppearanceLuminosity.swift │ ├── AssetCompressionType.swift │ ├── AssetDisplayGamut.swift │ ├── AssetIdiom.swift │ ├── AssetIdiomIPadSubtype.swift │ ├── AssetInfo.swift │ ├── AssetNode.swift │ ├── ColorSet │ │ ├── AssetColor.swift │ │ ├── AssetColorComponents.swift │ │ ├── AssetColorContent.swift │ │ ├── AssetColorGrayscale.swift │ │ ├── AssetColorSet.swift │ │ ├── AssetColorSetContents.swift │ │ ├── AssetCustomColor.swift │ │ ├── AssetSystemColor.swift │ │ └── AssetSystemColorPlatform.swift │ ├── Folder │ │ ├── AssetFolder.swift │ │ ├── AssetFolderContents.swift │ │ └── AssetFolderProperties.swift │ └── ImageSet │ │ ├── AssetImage.swift │ │ ├── AssetImageAlignmentInsets.swift │ │ ├── AssetImageAutoScaling.swift │ │ ├── AssetImageGraphicsFeatureSet.swift │ │ ├── AssetImageLanguageDirection.swift │ │ ├── AssetImageMemory.swift │ │ ├── AssetImageProperties.swift │ │ ├── AssetImageScale.swift │ │ ├── AssetImageSet.swift │ │ ├── AssetImageSetContents.swift │ │ ├── AssetImageSizeClass.swift │ │ └── AssetImageTemplateRenderingIntent.swift │ ├── Extensions │ ├── Bundle+Extensions.swift │ ├── CLI+Extensions.swift │ ├── Collection+Extensions.swift │ ├── Decodable+Extensions.swift │ ├── DispatchQueue+Extensions.swift │ ├── Encodable+Extensions.swift │ ├── FloatingPoint+Extensions.swift │ ├── JSONDecoder+Extensions.swift │ ├── JSONEncoder+Extensions.swift │ ├── KeyedDecodingContainerProtocol+Extensions.swift │ ├── OperatingSystemVersion+Extensions.swift │ ├── Optional+Extensions.swift │ ├── Path+Extensions.swift │ ├── ProcessInfo+Extensions.swift │ ├── Promise+Extensions.swift │ ├── RangeReplaceableCollection+Extensions.swift │ ├── Sequence+Extensions.swift │ ├── SingleValueDecodingContainer+Extensions.swift │ ├── String+Extensions.swift │ └── UnkeyedDecodingContainer+Extensions.swift │ ├── HTTPService │ ├── BodyEncoders │ │ ├── HTTPBodyEncoder.swift │ │ ├── HTTPBodyJSONEncoder.swift │ │ └── HTTPBodyURLEncoder.swift │ ├── HTTPActivityIndicator.swift │ ├── HTTPAnyEncodable.swift │ ├── HTTPError.swift │ ├── HTTPErrorStringConvertible.swift │ ├── HTTPHeader.swift │ ├── HTTPMethod.swift │ ├── HTTPResponse.swift │ ├── HTTPRoute.swift │ ├── HTTPService.swift │ ├── HTTPServiceTask.swift │ ├── HTTPStatusCode.swift │ ├── HTTPTask.swift │ ├── HTTPUIActivityIndicator.swift │ ├── QueryEncoders │ │ ├── HTTPQueryEncoder.swift │ │ └── HTTPQueryURLEncoder.swift │ └── ResponseSerializers │ │ ├── HTTPDataResponseSerializer.swift │ │ ├── HTTPDecodableResponseSerializer.swift │ │ ├── HTTPEmptyResponse.swift │ │ ├── HTTPJSONResponseSerializer.swift │ │ ├── HTTPResponseDecoder.swift │ │ ├── HTTPResponseSerializer.swift │ │ └── HTTPStringResponseSerializer.swift │ ├── Shared │ ├── AnyCodable.swift │ ├── AnyCodingKey.swift │ ├── Cache.swift │ └── MessageError.swift │ └── URLEncoder │ ├── URLArrayEncodingStrategy.swift │ ├── URLBoolEncodingStrategy.swift │ ├── URLDateEncodingStrategy.swift │ ├── URLEncodedForm.swift │ ├── URLEncodedFormComponent.swift │ ├── URLEncodedFormContext.swift │ ├── URLEncodedFormEncoder.swift │ ├── URLEncodedFormKeyedEncodingContainer.swift │ ├── URLEncodedFormSerializer.swift │ ├── URLEncodedFormSingleValueEncodingContainer.swift │ ├── URLEncodedFormUnkeyedEncodingContainer.swift │ ├── URLEncoder.swift │ └── URLSpaceEncodingStrategy.swift ├── Templates ├── ColorStyles.stencil ├── FileHeader.stencil ├── Images.stencil ├── ShadowStyles.stencil └── TextStyles.stencil └── Tests ├── .swiftlint.yml ├── FugenTests ├── FugenTests.swift ├── Info.plist └── XCTestManifests.swift ├── FugenToolsTests ├── FugenToolsTests.swift ├── Info.plist └── XCTestManifests.swift └── LinuxMain.swift /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.6.3 2 | -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 5.1 2 | -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Brewfile -------------------------------------------------------------------------------- /Dangerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Dangerfile -------------------------------------------------------------------------------- /Demo/.fugen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/.fugen.yml -------------------------------------------------------------------------------- /Demo/FugenDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/FugenDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demo/FugenDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Demo/FugenDemo.xcodeproj/xcshareddata/xcschemes/Fugen.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo.xcodeproj/xcshareddata/xcschemes/Fugen.xcscheme -------------------------------------------------------------------------------- /Demo/FugenDemo.xcodeproj/xcshareddata/xcschemes/FugenDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo.xcodeproj/xcshareddata/xcschemes/FugenDemo.xcscheme -------------------------------------------------------------------------------- /Demo/FugenDemo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demo/FugenDemo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Demo/FugenDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo/AppDelegate.swift -------------------------------------------------------------------------------- /Demo/FugenDemo/Generated/ColorStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo/Generated/ColorStyle.swift -------------------------------------------------------------------------------- /Demo/FugenDemo/Generated/Images.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo/Generated/Images.swift -------------------------------------------------------------------------------- /Demo/FugenDemo/Generated/ShadowStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo/Generated/ShadowStyle.swift -------------------------------------------------------------------------------- /Demo/FugenDemo/Generated/TextStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo/Generated/TextStyle.swift -------------------------------------------------------------------------------- /Demo/FugenDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo/Info.plist -------------------------------------------------------------------------------- /Demo/FugenDemo/Resources/Colors.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo/Resources/Colors.xcassets/Contents.json -------------------------------------------------------------------------------- /Demo/FugenDemo/Resources/Colors.xcassets/DaisyBush.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo/Resources/Colors.xcassets/DaisyBush.colorset/Contents.json -------------------------------------------------------------------------------- /Demo/FugenDemo/Resources/Colors.xcassets/Eclipse.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo/Resources/Colors.xcassets/Eclipse.colorset/Contents.json -------------------------------------------------------------------------------- /Demo/FugenDemo/Resources/Colors.xcassets/JellyBean.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo/Resources/Colors.xcassets/JellyBean.colorset/Contents.json -------------------------------------------------------------------------------- /Demo/FugenDemo/Resources/Colors.xcassets/Lochinvar.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo/Resources/Colors.xcassets/Lochinvar.colorset/Contents.json -------------------------------------------------------------------------------- /Demo/FugenDemo/Resources/Colors.xcassets/Razzmatazz.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo/Resources/Colors.xcassets/Razzmatazz.colorset/Contents.json -------------------------------------------------------------------------------- /Demo/FugenDemo/Resources/Colors.xcassets/SnowDrift.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo/Resources/Colors.xcassets/SnowDrift.colorset/Contents.json -------------------------------------------------------------------------------- /Demo/FugenDemo/Resources/Colors.xcassets/Submarine.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo/Resources/Colors.xcassets/Submarine.colorset/Contents.json -------------------------------------------------------------------------------- /Demo/FugenDemo/Resources/Colors.xcassets/Whisper.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo/Resources/Colors.xcassets/Whisper.colorset/Contents.json -------------------------------------------------------------------------------- /Demo/FugenDemo/Resources/Fonts/SF-Pro-Display-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo/Resources/Fonts/SF-Pro-Display-Bold.otf -------------------------------------------------------------------------------- /Demo/FugenDemo/Resources/Fonts/SF-Pro-Display-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo/Resources/Fonts/SF-Pro-Display-Light.otf -------------------------------------------------------------------------------- /Demo/FugenDemo/Resources/Fonts/SF-Pro-Display-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo/Resources/Fonts/SF-Pro-Display-Medium.otf -------------------------------------------------------------------------------- /Demo/FugenDemo/Resources/Fonts/SF-Pro-Display-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo/Resources/Fonts/SF-Pro-Display-Regular.otf -------------------------------------------------------------------------------- /Demo/FugenDemo/Resources/Fonts/SF-Pro-Display-Semibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo/Resources/Fonts/SF-Pro-Display-Semibold.otf -------------------------------------------------------------------------------- /Demo/FugenDemo/Resources/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo/Resources/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo/FugenDemo/Resources/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo/Resources/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Demo/FugenDemo/Resources/Images.xcassets/Generated/Cloud.imageset/Cloud.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo/Resources/Images.xcassets/Generated/Cloud.imageset/Cloud.pdf -------------------------------------------------------------------------------- /Demo/FugenDemo/Resources/Images.xcassets/Generated/Cloud.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo/Resources/Images.xcassets/Generated/Cloud.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/FugenDemo/Resources/Images.xcassets/Generated/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo/Resources/Images.xcassets/Generated/Contents.json -------------------------------------------------------------------------------- /Demo/FugenDemo/Resources/Images.xcassets/Generated/Geo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo/Resources/Images.xcassets/Generated/Geo.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/FugenDemo/Resources/Images.xcassets/Generated/Geo.imageset/Geo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo/Resources/Images.xcassets/Generated/Geo.imageset/Geo.pdf -------------------------------------------------------------------------------- /Demo/FugenDemo/Resources/Images.xcassets/Generated/Phone.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo/Resources/Images.xcassets/Generated/Phone.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/FugenDemo/Resources/Images.xcassets/Generated/Phone.imageset/Phone.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo/Resources/Images.xcassets/Generated/Phone.imageset/Phone.pdf -------------------------------------------------------------------------------- /Demo/FugenDemo/Resources/Images.xcassets/Generated/Share.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo/Resources/Images.xcassets/Generated/Share.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/FugenDemo/Resources/Images.xcassets/Generated/Share.imageset/Share.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo/Resources/Images.xcassets/Generated/Share.imageset/Share.pdf -------------------------------------------------------------------------------- /Demo/FugenDemo/Resources/Images.xcassets/Generated/Snapchat.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo/Resources/Images.xcassets/Generated/Snapchat.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/FugenDemo/Resources/Images.xcassets/Generated/Snapchat.imageset/Snapchat.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo/Resources/Images.xcassets/Generated/Snapchat.imageset/Snapchat.pdf -------------------------------------------------------------------------------- /Demo/FugenDemo/Resources/Images.xcassets/Generated/Star.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo/Resources/Images.xcassets/Generated/Star.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/FugenDemo/Resources/Images.xcassets/Generated/Star.imageset/Star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo/Resources/Images.xcassets/Generated/Star.imageset/Star.pdf -------------------------------------------------------------------------------- /Demo/FugenDemo/Resources/Images.xcassets/Generated/Telegram.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo/Resources/Images.xcassets/Generated/Telegram.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/FugenDemo/Resources/Images.xcassets/Generated/Telegram.imageset/Telegram.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo/Resources/Images.xcassets/Generated/Telegram.imageset/Telegram.pdf -------------------------------------------------------------------------------- /Demo/FugenDemo/Resources/Images.xcassets/Generated/Viber.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo/Resources/Images.xcassets/Generated/Viber.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/FugenDemo/Resources/Images.xcassets/Generated/Viber.imageset/Viber.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo/Resources/Images.xcassets/Generated/Viber.imageset/Viber.pdf -------------------------------------------------------------------------------- /Demo/FugenDemo/Resources/Images.xcassets/Generated/WeChat.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo/Resources/Images.xcassets/Generated/WeChat.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/FugenDemo/Resources/Images.xcassets/Generated/WeChat.imageset/WeChat.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo/Resources/Images.xcassets/Generated/WeChat.imageset/WeChat.pdf -------------------------------------------------------------------------------- /Demo/FugenDemo/Resources/Images.xcassets/Generated/WhatsApp.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo/Resources/Images.xcassets/Generated/WhatsApp.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/FugenDemo/Resources/Images.xcassets/Generated/WhatsApp.imageset/WhatsApp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo/Resources/Images.xcassets/Generated/WhatsApp.imageset/WhatsApp.pdf -------------------------------------------------------------------------------- /Demo/FugenDemo/Storyboards/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo/Storyboards/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Demo/FugenDemo/Storyboards/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo/Storyboards/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Demo/FugenDemo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemo/ViewController.swift -------------------------------------------------------------------------------- /Demo/FugenDemoTests/FugenDemoTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemoTests/FugenDemoTests.swift -------------------------------------------------------------------------------- /Demo/FugenDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/FugenDemoTests/Info.plist -------------------------------------------------------------------------------- /Demo/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/Podfile -------------------------------------------------------------------------------- /Demo/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Demo/Podfile.lock -------------------------------------------------------------------------------- /Docs/AccessToken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Docs/AccessToken.png -------------------------------------------------------------------------------- /Docs/FileURL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Docs/FileURL.png -------------------------------------------------------------------------------- /Docs/PlayVideo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Docs/PlayVideo.png -------------------------------------------------------------------------------- /Fugen.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Fugen.podspec -------------------------------------------------------------------------------- /Fugen.xcodeproj/CYaml_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Fugen.xcodeproj/CYaml_Info.plist -------------------------------------------------------------------------------- /Fugen.xcodeproj/DictionaryCoder_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Fugen.xcodeproj/DictionaryCoder_Info.plist -------------------------------------------------------------------------------- /Fugen.xcodeproj/FugenTests_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Fugen.xcodeproj/FugenTests_Info.plist -------------------------------------------------------------------------------- /Fugen.xcodeproj/FugenToolsTests_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Fugen.xcodeproj/FugenToolsTests_Info.plist -------------------------------------------------------------------------------- /Fugen.xcodeproj/FugenTools_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Fugen.xcodeproj/FugenTools_Info.plist -------------------------------------------------------------------------------- /Fugen.xcodeproj/PathKit_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Fugen.xcodeproj/PathKit_Info.plist -------------------------------------------------------------------------------- /Fugen.xcodeproj/PromiseKit_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Fugen.xcodeproj/PromiseKit_Info.plist -------------------------------------------------------------------------------- /Fugen.xcodeproj/Rainbow_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Fugen.xcodeproj/Rainbow_Info.plist -------------------------------------------------------------------------------- /Fugen.xcodeproj/StencilSwiftKit_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Fugen.xcodeproj/StencilSwiftKit_Info.plist -------------------------------------------------------------------------------- /Fugen.xcodeproj/Stencil_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Fugen.xcodeproj/Stencil_Info.plist -------------------------------------------------------------------------------- /Fugen.xcodeproj/SwiftCLI_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Fugen.xcodeproj/SwiftCLI_Info.plist -------------------------------------------------------------------------------- /Fugen.xcodeproj/Yams_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Fugen.xcodeproj/Yams_Info.plist -------------------------------------------------------------------------------- /Fugen.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Fugen.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Fugen.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Fugen.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Fugen.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Fugen.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Fugen.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Fugen.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Fugen.xcodeproj/xcshareddata/xcschemes/Fugen ColorStyles.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Fugen.xcodeproj/xcshareddata/xcschemes/Fugen ColorStyles.xcscheme -------------------------------------------------------------------------------- /Fugen.xcodeproj/xcshareddata/xcschemes/Fugen Generate.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Fugen.xcodeproj/xcshareddata/xcschemes/Fugen Generate.xcscheme -------------------------------------------------------------------------------- /Fugen.xcodeproj/xcshareddata/xcschemes/Fugen Help.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Fugen.xcodeproj/xcshareddata/xcschemes/Fugen Help.xcscheme -------------------------------------------------------------------------------- /Fugen.xcodeproj/xcshareddata/xcschemes/Fugen Images.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Fugen.xcodeproj/xcshareddata/xcschemes/Fugen Images.xcscheme -------------------------------------------------------------------------------- /Fugen.xcodeproj/xcshareddata/xcschemes/Fugen Package.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Fugen.xcodeproj/xcshareddata/xcschemes/Fugen Package.xcscheme -------------------------------------------------------------------------------- /Fugen.xcodeproj/xcshareddata/xcschemes/Fugen ShadowStyles.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Fugen.xcodeproj/xcshareddata/xcschemes/Fugen ShadowStyles.xcscheme -------------------------------------------------------------------------------- /Fugen.xcodeproj/xcshareddata/xcschemes/Fugen TextStyles.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Fugen.xcodeproj/xcshareddata/xcschemes/Fugen TextStyles.xcscheme -------------------------------------------------------------------------------- /Fugen.xcodeproj/xcshareddata/xcschemes/Fugen Version.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Fugen.xcodeproj/xcshareddata/xcschemes/Fugen Version.xcscheme -------------------------------------------------------------------------------- /Fugen.xcodeproj/xcshareddata/xcschemes/Fugen-Package.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Fugen.xcodeproj/xcshareddata/xcschemes/Fugen-Package.xcscheme -------------------------------------------------------------------------------- /Fugen.xcodeproj/xcshareddata/xcschemes/Fugen.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Fugen.xcodeproj/xcshareddata/xcschemes/Fugen.xcscheme -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Makefile -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.resources: -------------------------------------------------------------------------------- 1 | Templates 2 | -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Scripts/bootstrap.sh -------------------------------------------------------------------------------- /Scripts/swiftlint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Scripts/swiftlint.sh -------------------------------------------------------------------------------- /Sources/Fugen/Commands/AsyncExecutableCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Commands/AsyncExecutableCommand.swift -------------------------------------------------------------------------------- /Sources/Fugen/Commands/ColorStylesCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Commands/ColorStylesCommand.swift -------------------------------------------------------------------------------- /Sources/Fugen/Commands/GenerateCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Commands/GenerateCommand.swift -------------------------------------------------------------------------------- /Sources/Fugen/Commands/GenerationConfigurableCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Commands/GenerationConfigurableCommand.swift -------------------------------------------------------------------------------- /Sources/Fugen/Commands/ImagesCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Commands/ImagesCommand.swift -------------------------------------------------------------------------------- /Sources/Fugen/Commands/ShadowStylesCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Commands/ShadowStylesCommand.swift -------------------------------------------------------------------------------- /Sources/Fugen/Commands/TextStylesCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Commands/TextStylesCommand.swift -------------------------------------------------------------------------------- /Sources/Fugen/Dependencies.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Dependencies.swift -------------------------------------------------------------------------------- /Sources/Fugen/Generators/ColorStyles/ColorStylesContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Generators/ColorStyles/ColorStylesContext.swift -------------------------------------------------------------------------------- /Sources/Fugen/Generators/ColorStyles/ColorStylesGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Generators/ColorStyles/ColorStylesGenerator.swift -------------------------------------------------------------------------------- /Sources/Fugen/Generators/ColorStyles/DefaultColorStylesGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Generators/ColorStyles/DefaultColorStylesGenerator.swift -------------------------------------------------------------------------------- /Sources/Fugen/Generators/GenerationParametersError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Generators/GenerationParametersError.swift -------------------------------------------------------------------------------- /Sources/Fugen/Generators/GenerationParametersResolving.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Generators/GenerationParametersResolving.swift -------------------------------------------------------------------------------- /Sources/Fugen/Generators/Images/DefaultImagesGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Generators/Images/DefaultImagesGenerator.swift -------------------------------------------------------------------------------- /Sources/Fugen/Generators/Images/ImagesContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Generators/Images/ImagesContext.swift -------------------------------------------------------------------------------- /Sources/Fugen/Generators/Images/ImagesGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Generators/Images/ImagesGenerator.swift -------------------------------------------------------------------------------- /Sources/Fugen/Generators/Library/DefaultLibraryGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Generators/Library/DefaultLibraryGenerator.swift -------------------------------------------------------------------------------- /Sources/Fugen/Generators/Library/LibraryGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Generators/Library/LibraryGenerator.swift -------------------------------------------------------------------------------- /Sources/Fugen/Generators/ShadowStyles/DefaultShadowStylesGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Generators/ShadowStyles/DefaultShadowStylesGenerator.swift -------------------------------------------------------------------------------- /Sources/Fugen/Generators/ShadowStyles/ShadowStylesContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Generators/ShadowStyles/ShadowStylesContext.swift -------------------------------------------------------------------------------- /Sources/Fugen/Generators/ShadowStyles/ShadowStylesGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Generators/ShadowStyles/ShadowStylesGenerator.swift -------------------------------------------------------------------------------- /Sources/Fugen/Generators/TextStyles/DefaultTextStylesGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Generators/TextStyles/DefaultTextStylesGenerator.swift -------------------------------------------------------------------------------- /Sources/Fugen/Generators/TextStyles/TextStylesContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Generators/TextStyles/TextStylesContext.swift -------------------------------------------------------------------------------- /Sources/Fugen/Generators/TextStyles/TextStylesGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Generators/TextStyles/TextStylesGenerator.swift -------------------------------------------------------------------------------- /Sources/Fugen/Models/Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Models/Color.swift -------------------------------------------------------------------------------- /Sources/Fugen/Models/ColorStyle/ColorStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Models/ColorStyle/ColorStyle.swift -------------------------------------------------------------------------------- /Sources/Fugen/Models/ColorStyle/ColorStyleAsset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Models/ColorStyle/ColorStyleAsset.swift -------------------------------------------------------------------------------- /Sources/Fugen/Models/ColorStyle/ColorStyleNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Models/ColorStyle/ColorStyleNode.swift -------------------------------------------------------------------------------- /Sources/Fugen/Models/Configuration/AccessTokenConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Models/Configuration/AccessTokenConfiguration.swift -------------------------------------------------------------------------------- /Sources/Fugen/Models/Configuration/BaseConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Models/Configuration/BaseConfiguration.swift -------------------------------------------------------------------------------- /Sources/Fugen/Models/Configuration/ColorStylesConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Models/Configuration/ColorStylesConfiguration.swift -------------------------------------------------------------------------------- /Sources/Fugen/Models/Configuration/Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Models/Configuration/Configuration.swift -------------------------------------------------------------------------------- /Sources/Fugen/Models/Configuration/FileConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Models/Configuration/FileConfiguration.swift -------------------------------------------------------------------------------- /Sources/Fugen/Models/Configuration/GenerationConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Models/Configuration/GenerationConfiguration.swift -------------------------------------------------------------------------------- /Sources/Fugen/Models/Configuration/ImagesConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Models/Configuration/ImagesConfiguration.swift -------------------------------------------------------------------------------- /Sources/Fugen/Models/Configuration/ShadowStylesConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Models/Configuration/ShadowStylesConfiguration.swift -------------------------------------------------------------------------------- /Sources/Fugen/Models/Configuration/TextStylesConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Models/Configuration/TextStylesConfiguration.swift -------------------------------------------------------------------------------- /Sources/Fugen/Models/Font.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Models/Font.swift -------------------------------------------------------------------------------- /Sources/Fugen/Models/Images/Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Models/Images/Image.swift -------------------------------------------------------------------------------- /Sources/Fugen/Models/Images/ImageAsset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Models/Images/ImageAsset.swift -------------------------------------------------------------------------------- /Sources/Fugen/Models/Images/ImageFormat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Models/Images/ImageFormat.swift -------------------------------------------------------------------------------- /Sources/Fugen/Models/Images/ImageNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Models/Images/ImageNode.swift -------------------------------------------------------------------------------- /Sources/Fugen/Models/Images/ImageRenderedNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Models/Images/ImageRenderedNode.swift -------------------------------------------------------------------------------- /Sources/Fugen/Models/Images/ImageResource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Models/Images/ImageResource.swift -------------------------------------------------------------------------------- /Sources/Fugen/Models/Images/ImageScale.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Models/Images/ImageScale.swift -------------------------------------------------------------------------------- /Sources/Fugen/Models/Parameters/FileParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Models/Parameters/FileParameters.swift -------------------------------------------------------------------------------- /Sources/Fugen/Models/Parameters/GenerationParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Models/Parameters/GenerationParameters.swift -------------------------------------------------------------------------------- /Sources/Fugen/Models/Parameters/ImagesParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Models/Parameters/ImagesParameters.swift -------------------------------------------------------------------------------- /Sources/Fugen/Models/Parameters/NodesParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Models/Parameters/NodesParameters.swift -------------------------------------------------------------------------------- /Sources/Fugen/Models/Parameters/RenderParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Models/Parameters/RenderParameters.swift -------------------------------------------------------------------------------- /Sources/Fugen/Models/ShadowStyle/Shadow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Models/ShadowStyle/Shadow.swift -------------------------------------------------------------------------------- /Sources/Fugen/Models/ShadowStyle/ShadowStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Models/ShadowStyle/ShadowStyle.swift -------------------------------------------------------------------------------- /Sources/Fugen/Models/ShadowStyle/ShadowStyleNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Models/ShadowStyle/ShadowStyleNode.swift -------------------------------------------------------------------------------- /Sources/Fugen/Models/ShadowStyle/ShadowType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Models/ShadowStyle/ShadowType.swift -------------------------------------------------------------------------------- /Sources/Fugen/Models/TextStyle/TextStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Models/TextStyle/TextStyle.swift -------------------------------------------------------------------------------- /Sources/Fugen/Models/TextStyle/TextStyleColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Models/TextStyle/TextStyleColor.swift -------------------------------------------------------------------------------- /Sources/Fugen/Models/TextStyle/TextStyleNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Models/TextStyle/TextStyleNode.swift -------------------------------------------------------------------------------- /Sources/Fugen/Models/Vector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Models/Vector.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/Assets/AssetsProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/Assets/AssetsProvider.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/Assets/DefaultAssetsProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/Assets/DefaultAssetsProvider.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/ColorStyles/Assets/ColorStyleAssetsProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/ColorStyles/Assets/ColorStyleAssetsProvider.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/ColorStyles/Assets/DefaultColorStyleAssetsProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/ColorStyles/Assets/DefaultColorStyleAssetsProvider.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/ColorStyles/ColorStylesProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/ColorStyles/ColorStylesProvider.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/ColorStyles/ColorStylesProviderError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/ColorStyles/ColorStylesProviderError.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/ColorStyles/DefaultColorStylesProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/ColorStyles/DefaultColorStylesProvider.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/Configuration/ConfigurationProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/Configuration/ConfigurationProvider.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/Configuration/DefaultConfigurationProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/Configuration/DefaultConfigurationProvider.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/DataProvider/DataProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/DataProvider/DataProvider.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/DataProvider/DefaultDataProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/DataProvider/DefaultDataProvider.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/FigmaError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/FigmaError.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/FigmaImages.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/FigmaImages.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaBlendMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaBlendMode.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaBooleanOperationType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaBooleanOperationType.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaColor.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaColorStop.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaColorStop.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaComponent.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaConstraint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaConstraint.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaConstraintType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaConstraintType.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaEasingType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaEasingType.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaEffect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaEffect.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaEffectType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaEffectType.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaExportSetting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaExportSetting.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaFrameOffset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaFrameOffset.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaImageFormat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaImageFormat.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaLayoutConstraint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaLayoutConstraint.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaLayoutGrid.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaLayoutGrid.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaLayoutGridAlignment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaLayoutGridAlignment.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaLayoutGridPattern.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaLayoutGridPattern.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaLayoutHorizontalConstraint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaLayoutHorizontalConstraint.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaLayoutVerticalConstraint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaLayoutVerticalConstraint.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaLineHeightUnit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaLineHeightUnit.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaPaint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaPaint.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaPaintType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaPaintType.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaRectangle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaRectangle.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaScaleMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaScaleMode.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaStrokeAlignment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaStrokeAlignment.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaStrokeCap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaStrokeCap.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaStrokeJoin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaStrokeJoin.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaStyle.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaStyleType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaStyleType.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaTextCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaTextCase.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaTextDecoration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaTextDecoration.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaTextHorizontalAlignment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaTextHorizontalAlignment.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaTextVerticalAlignment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaTextVerticalAlignment.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaTypeStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaTypeStyle.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaVector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/FigmaVector.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/Nodes/FigmaBooleanOperationNodePayload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/Nodes/FigmaBooleanOperationNodePayload.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/Nodes/FigmaCanvasNodeInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/Nodes/FigmaCanvasNodeInfo.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/Nodes/FigmaDocumentNodeInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/Nodes/FigmaDocumentNodeInfo.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/Nodes/FigmaFile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/Nodes/FigmaFile.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/Nodes/FigmaFrameNodeInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/Nodes/FigmaFrameNodeInfo.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/Nodes/FigmaInstanceNodePayload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/Nodes/FigmaInstanceNodePayload.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/Nodes/FigmaNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/Nodes/FigmaNode.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/Nodes/FigmaNodeType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/Nodes/FigmaNodeType.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/Nodes/FigmaRectangleNodePayload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/Nodes/FigmaRectangleNodePayload.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/Nodes/FigmaSliceNodeInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/Nodes/FigmaSliceNodeInfo.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/Nodes/FigmaTextNodePayload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/Nodes/FigmaTextNodePayload.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DTOs/File/Nodes/FigmaVectorNodeInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DTOs/File/Nodes/FigmaVectorNodeInfo.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/DefaultFigmaAPIProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/DefaultFigmaAPIProvider.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/FigmaAPIEmptyParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/FigmaAPIEmptyParameters.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/FigmaAPIEmptyResponse.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | struct FigmaAPIEmptyResponse: Decodable { } 4 | -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/FigmaAPIProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/FigmaAPIProvider.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/FigmaAPIRoute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/FigmaAPIRoute.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/FigmaAPIVersion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/FigmaAPIVersion.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/FigmaHTTPService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/FigmaHTTPService.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/Routes/FigmaAPIFileRoute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/Routes/FigmaAPIFileRoute.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/Routes/FigmaAPIFileRouteQueryParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/Routes/FigmaAPIFileRouteQueryParameters.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/Routes/FigmaAPIImagesRoute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/Routes/FigmaAPIImagesRoute.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaAPI/Routes/FigmaAPIImagesRouteQueryParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaAPI/Routes/FigmaAPIImagesRouteQueryParameters.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaFiles/DefaultFigmaFilesProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaFiles/DefaultFigmaFilesProvider.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaFiles/FigmaFilesProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaFiles/FigmaFilesProvider.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaNodes/DefaultFigmaNodesProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaNodes/DefaultFigmaNodesProvider.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaNodes/FigmaNodesProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaNodes/FigmaNodesProvider.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/FigmaNodes/FigmaNodesProviderError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/FigmaNodes/FigmaNodesProviderError.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/Images/Assets/DefaultImageAssetsProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/Images/Assets/DefaultImageAssetsProvider.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/Images/Assets/ImageAssetsProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/Images/Assets/ImageAssetsProvider.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/Images/DefaultImagesProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/Images/DefaultImagesProvider.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/Images/ImagesProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/Images/ImagesProvider.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/Images/ImagesProviderError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/Images/ImagesProviderError.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/Images/Render/DefaultImageRenderProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/Images/Render/DefaultImageRenderProvider.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/Images/Render/ImageRenderProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/Images/Render/ImageRenderProvider.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/Images/Render/ImageRenderProviderError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/Images/Render/ImageRenderProviderError.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/Images/Resources/DefaultImageResourcesProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/Images/Resources/DefaultImageResourcesProvider.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/Images/Resources/ImageResourcesProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/Images/Resources/ImageResourcesProvider.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/ShadowStyles/DefaultShadowStylesProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/ShadowStyles/DefaultShadowStylesProvider.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/ShadowStyles/ShadowStylesProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/ShadowStyles/ShadowStylesProvider.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/ShadowStyles/ShadowStylesProviderError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/ShadowStyles/ShadowStylesProviderError.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/TextStyles/DefaultTextStylesProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/TextStyles/DefaultTextStylesProvider.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/TextStyles/TextStylesProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/TextStyles/TextStylesProvider.swift -------------------------------------------------------------------------------- /Sources/Fugen/Providers/TextStyles/TextStylesProviderError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Providers/TextStyles/TextStylesProviderError.swift -------------------------------------------------------------------------------- /Sources/Fugen/Render/DefaultTemplateContextCoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Render/DefaultTemplateContextCoder.swift -------------------------------------------------------------------------------- /Sources/Fugen/Render/DefaultTemplateRenderer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Render/DefaultTemplateRenderer.swift -------------------------------------------------------------------------------- /Sources/Fugen/Render/RenderDestination.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Render/RenderDestination.swift -------------------------------------------------------------------------------- /Sources/Fugen/Render/RenderTemplate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Render/RenderTemplate.swift -------------------------------------------------------------------------------- /Sources/Fugen/Render/RenderTemplateType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Render/RenderTemplateType.swift -------------------------------------------------------------------------------- /Sources/Fugen/Render/StencilExtensions/Color/StencilColorFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Render/StencilExtensions/Color/StencilColorFilter.swift -------------------------------------------------------------------------------- /Sources/Fugen/Render/StencilExtensions/Color/StencilColorInfoFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Render/StencilExtensions/Color/StencilColorInfoFilter.swift -------------------------------------------------------------------------------- /Sources/Fugen/Render/StencilExtensions/Color/StencilColorRGBAHexInfoFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Render/StencilExtensions/Color/StencilColorRGBAHexInfoFilter.swift -------------------------------------------------------------------------------- /Sources/Fugen/Render/StencilExtensions/Color/StencilColorRGBAInfoFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Render/StencilExtensions/Color/StencilColorRGBAInfoFilter.swift -------------------------------------------------------------------------------- /Sources/Fugen/Render/StencilExtensions/Color/StencilColorRGBHexInfoFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Render/StencilExtensions/Color/StencilColorRGBHexInfoFilter.swift -------------------------------------------------------------------------------- /Sources/Fugen/Render/StencilExtensions/Color/StencilColorRGBInfoFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Render/StencilExtensions/Color/StencilColorRGBInfoFilter.swift -------------------------------------------------------------------------------- /Sources/Fugen/Render/StencilExtensions/Font/StencilFontFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Render/StencilExtensions/Font/StencilFontFilter.swift -------------------------------------------------------------------------------- /Sources/Fugen/Render/StencilExtensions/Font/StencilFontInfoFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Render/StencilExtensions/Font/StencilFontInfoFilter.swift -------------------------------------------------------------------------------- /Sources/Fugen/Render/StencilExtensions/Font/StencilFontInitializerModificator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Render/StencilExtensions/Font/StencilFontInitializerModificator.swift -------------------------------------------------------------------------------- /Sources/Fugen/Render/StencilExtensions/Font/StencilFontModificator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Render/StencilExtensions/Font/StencilFontModificator.swift -------------------------------------------------------------------------------- /Sources/Fugen/Render/StencilExtensions/Font/StencilFontSystemFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Render/StencilExtensions/Font/StencilFontSystemFilter.swift -------------------------------------------------------------------------------- /Sources/Fugen/Render/StencilExtensions/Number/StencilByteToFloatFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Render/StencilExtensions/Number/StencilByteToFloatFilter.swift -------------------------------------------------------------------------------- /Sources/Fugen/Render/StencilExtensions/Number/StencilByteToHexFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Render/StencilExtensions/Number/StencilByteToHexFilter.swift -------------------------------------------------------------------------------- /Sources/Fugen/Render/StencilExtensions/Number/StencilFloatToByteFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Render/StencilExtensions/Number/StencilFloatToByteFilter.swift -------------------------------------------------------------------------------- /Sources/Fugen/Render/StencilExtensions/Number/StencilHexToByteFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Render/StencilExtensions/Number/StencilHexToByteFilter.swift -------------------------------------------------------------------------------- /Sources/Fugen/Render/StencilExtensions/StencilExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Render/StencilExtensions/StencilExtension.swift -------------------------------------------------------------------------------- /Sources/Fugen/Render/StencilExtensions/StencilFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Render/StencilExtensions/StencilFilter.swift -------------------------------------------------------------------------------- /Sources/Fugen/Render/StencilExtensions/StencilFilterError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Render/StencilExtensions/StencilFilterError.swift -------------------------------------------------------------------------------- /Sources/Fugen/Render/StencilExtensions/StencilModificator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Render/StencilExtensions/StencilModificator.swift -------------------------------------------------------------------------------- /Sources/Fugen/Render/StencilExtensions/StencilModificatorError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Render/StencilExtensions/StencilModificatorError.swift -------------------------------------------------------------------------------- /Sources/Fugen/Render/StencilExtensions/StencilTag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Render/StencilExtensions/StencilTag.swift -------------------------------------------------------------------------------- /Sources/Fugen/Render/StencilExtensions/StencilTagError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Render/StencilExtensions/StencilTagError.swift -------------------------------------------------------------------------------- /Sources/Fugen/Render/StencilExtensions/StencilTagNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Render/StencilExtensions/StencilTagNode.swift -------------------------------------------------------------------------------- /Sources/Fugen/Render/StencilExtensions/Vector/StencilVectorFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Render/StencilExtensions/Vector/StencilVectorFilter.swift -------------------------------------------------------------------------------- /Sources/Fugen/Render/StencilExtensions/Vector/StencilVectorInfoFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Render/StencilExtensions/Vector/StencilVectorInfoFilter.swift -------------------------------------------------------------------------------- /Sources/Fugen/Render/TemplateContextCoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Render/TemplateContextCoder.swift -------------------------------------------------------------------------------- /Sources/Fugen/Render/TemplateRenderer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/Render/TemplateRenderer.swift -------------------------------------------------------------------------------- /Sources/Fugen/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/Fugen/main.swift -------------------------------------------------------------------------------- /Sources/FugenTools/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/.swiftlint.yml -------------------------------------------------------------------------------- /Sources/FugenTools/Assets/AssetAppearance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Assets/AssetAppearance.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Assets/AssetAppearanceContrast.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Assets/AssetAppearanceContrast.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Assets/AssetAppearanceLuminosity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Assets/AssetAppearanceLuminosity.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Assets/AssetCompressionType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Assets/AssetCompressionType.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Assets/AssetDisplayGamut.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Assets/AssetDisplayGamut.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Assets/AssetIdiom.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Assets/AssetIdiom.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Assets/AssetIdiomIPadSubtype.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Assets/AssetIdiomIPadSubtype.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Assets/AssetInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Assets/AssetInfo.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Assets/AssetNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Assets/AssetNode.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Assets/ColorSet/AssetColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Assets/ColorSet/AssetColor.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Assets/ColorSet/AssetColorComponents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Assets/ColorSet/AssetColorComponents.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Assets/ColorSet/AssetColorContent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Assets/ColorSet/AssetColorContent.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Assets/ColorSet/AssetColorGrayscale.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Assets/ColorSet/AssetColorGrayscale.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Assets/ColorSet/AssetColorSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Assets/ColorSet/AssetColorSet.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Assets/ColorSet/AssetColorSetContents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Assets/ColorSet/AssetColorSetContents.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Assets/ColorSet/AssetCustomColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Assets/ColorSet/AssetCustomColor.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Assets/ColorSet/AssetSystemColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Assets/ColorSet/AssetSystemColor.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Assets/ColorSet/AssetSystemColorPlatform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Assets/ColorSet/AssetSystemColorPlatform.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Assets/Folder/AssetFolder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Assets/Folder/AssetFolder.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Assets/Folder/AssetFolderContents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Assets/Folder/AssetFolderContents.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Assets/Folder/AssetFolderProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Assets/Folder/AssetFolderProperties.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Assets/ImageSet/AssetImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Assets/ImageSet/AssetImage.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Assets/ImageSet/AssetImageAlignmentInsets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Assets/ImageSet/AssetImageAlignmentInsets.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Assets/ImageSet/AssetImageAutoScaling.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Assets/ImageSet/AssetImageAutoScaling.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Assets/ImageSet/AssetImageGraphicsFeatureSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Assets/ImageSet/AssetImageGraphicsFeatureSet.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Assets/ImageSet/AssetImageLanguageDirection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Assets/ImageSet/AssetImageLanguageDirection.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Assets/ImageSet/AssetImageMemory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Assets/ImageSet/AssetImageMemory.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Assets/ImageSet/AssetImageProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Assets/ImageSet/AssetImageProperties.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Assets/ImageSet/AssetImageScale.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Assets/ImageSet/AssetImageScale.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Assets/ImageSet/AssetImageSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Assets/ImageSet/AssetImageSet.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Assets/ImageSet/AssetImageSetContents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Assets/ImageSet/AssetImageSetContents.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Assets/ImageSet/AssetImageSizeClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Assets/ImageSet/AssetImageSizeClass.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Assets/ImageSet/AssetImageTemplateRenderingIntent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Assets/ImageSet/AssetImageTemplateRenderingIntent.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Extensions/Bundle+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Extensions/Bundle+Extensions.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Extensions/CLI+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Extensions/CLI+Extensions.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Extensions/Collection+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Extensions/Collection+Extensions.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Extensions/Decodable+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Extensions/Decodable+Extensions.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Extensions/DispatchQueue+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Extensions/DispatchQueue+Extensions.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Extensions/Encodable+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Extensions/Encodable+Extensions.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Extensions/FloatingPoint+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Extensions/FloatingPoint+Extensions.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Extensions/JSONDecoder+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Extensions/JSONDecoder+Extensions.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Extensions/JSONEncoder+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Extensions/JSONEncoder+Extensions.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Extensions/KeyedDecodingContainerProtocol+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Extensions/KeyedDecodingContainerProtocol+Extensions.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Extensions/OperatingSystemVersion+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Extensions/OperatingSystemVersion+Extensions.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Extensions/Optional+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Extensions/Optional+Extensions.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Extensions/Path+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Extensions/Path+Extensions.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Extensions/ProcessInfo+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Extensions/ProcessInfo+Extensions.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Extensions/Promise+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Extensions/Promise+Extensions.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Extensions/RangeReplaceableCollection+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Extensions/RangeReplaceableCollection+Extensions.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Extensions/Sequence+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Extensions/Sequence+Extensions.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Extensions/SingleValueDecodingContainer+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Extensions/SingleValueDecodingContainer+Extensions.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Extensions/String+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Extensions/String+Extensions.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Extensions/UnkeyedDecodingContainer+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Extensions/UnkeyedDecodingContainer+Extensions.swift -------------------------------------------------------------------------------- /Sources/FugenTools/HTTPService/BodyEncoders/HTTPBodyEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/HTTPService/BodyEncoders/HTTPBodyEncoder.swift -------------------------------------------------------------------------------- /Sources/FugenTools/HTTPService/BodyEncoders/HTTPBodyJSONEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/HTTPService/BodyEncoders/HTTPBodyJSONEncoder.swift -------------------------------------------------------------------------------- /Sources/FugenTools/HTTPService/BodyEncoders/HTTPBodyURLEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/HTTPService/BodyEncoders/HTTPBodyURLEncoder.swift -------------------------------------------------------------------------------- /Sources/FugenTools/HTTPService/HTTPActivityIndicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/HTTPService/HTTPActivityIndicator.swift -------------------------------------------------------------------------------- /Sources/FugenTools/HTTPService/HTTPAnyEncodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/HTTPService/HTTPAnyEncodable.swift -------------------------------------------------------------------------------- /Sources/FugenTools/HTTPService/HTTPError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/HTTPService/HTTPError.swift -------------------------------------------------------------------------------- /Sources/FugenTools/HTTPService/HTTPErrorStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/HTTPService/HTTPErrorStringConvertible.swift -------------------------------------------------------------------------------- /Sources/FugenTools/HTTPService/HTTPHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/HTTPService/HTTPHeader.swift -------------------------------------------------------------------------------- /Sources/FugenTools/HTTPService/HTTPMethod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/HTTPService/HTTPMethod.swift -------------------------------------------------------------------------------- /Sources/FugenTools/HTTPService/HTTPResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/HTTPService/HTTPResponse.swift -------------------------------------------------------------------------------- /Sources/FugenTools/HTTPService/HTTPRoute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/HTTPService/HTTPRoute.swift -------------------------------------------------------------------------------- /Sources/FugenTools/HTTPService/HTTPService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/HTTPService/HTTPService.swift -------------------------------------------------------------------------------- /Sources/FugenTools/HTTPService/HTTPServiceTask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/HTTPService/HTTPServiceTask.swift -------------------------------------------------------------------------------- /Sources/FugenTools/HTTPService/HTTPStatusCode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/HTTPService/HTTPStatusCode.swift -------------------------------------------------------------------------------- /Sources/FugenTools/HTTPService/HTTPTask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/HTTPService/HTTPTask.swift -------------------------------------------------------------------------------- /Sources/FugenTools/HTTPService/HTTPUIActivityIndicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/HTTPService/HTTPUIActivityIndicator.swift -------------------------------------------------------------------------------- /Sources/FugenTools/HTTPService/QueryEncoders/HTTPQueryEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/HTTPService/QueryEncoders/HTTPQueryEncoder.swift -------------------------------------------------------------------------------- /Sources/FugenTools/HTTPService/QueryEncoders/HTTPQueryURLEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/HTTPService/QueryEncoders/HTTPQueryURLEncoder.swift -------------------------------------------------------------------------------- /Sources/FugenTools/HTTPService/ResponseSerializers/HTTPDataResponseSerializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/HTTPService/ResponseSerializers/HTTPDataResponseSerializer.swift -------------------------------------------------------------------------------- /Sources/FugenTools/HTTPService/ResponseSerializers/HTTPDecodableResponseSerializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/HTTPService/ResponseSerializers/HTTPDecodableResponseSerializer.swift -------------------------------------------------------------------------------- /Sources/FugenTools/HTTPService/ResponseSerializers/HTTPEmptyResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/HTTPService/ResponseSerializers/HTTPEmptyResponse.swift -------------------------------------------------------------------------------- /Sources/FugenTools/HTTPService/ResponseSerializers/HTTPJSONResponseSerializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/HTTPService/ResponseSerializers/HTTPJSONResponseSerializer.swift -------------------------------------------------------------------------------- /Sources/FugenTools/HTTPService/ResponseSerializers/HTTPResponseDecoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/HTTPService/ResponseSerializers/HTTPResponseDecoder.swift -------------------------------------------------------------------------------- /Sources/FugenTools/HTTPService/ResponseSerializers/HTTPResponseSerializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/HTTPService/ResponseSerializers/HTTPResponseSerializer.swift -------------------------------------------------------------------------------- /Sources/FugenTools/HTTPService/ResponseSerializers/HTTPStringResponseSerializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/HTTPService/ResponseSerializers/HTTPStringResponseSerializer.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Shared/AnyCodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Shared/AnyCodable.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Shared/AnyCodingKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Shared/AnyCodingKey.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Shared/Cache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Shared/Cache.swift -------------------------------------------------------------------------------- /Sources/FugenTools/Shared/MessageError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/Shared/MessageError.swift -------------------------------------------------------------------------------- /Sources/FugenTools/URLEncoder/URLArrayEncodingStrategy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/URLEncoder/URLArrayEncodingStrategy.swift -------------------------------------------------------------------------------- /Sources/FugenTools/URLEncoder/URLBoolEncodingStrategy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/URLEncoder/URLBoolEncodingStrategy.swift -------------------------------------------------------------------------------- /Sources/FugenTools/URLEncoder/URLDateEncodingStrategy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/URLEncoder/URLDateEncodingStrategy.swift -------------------------------------------------------------------------------- /Sources/FugenTools/URLEncoder/URLEncodedForm.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/URLEncoder/URLEncodedForm.swift -------------------------------------------------------------------------------- /Sources/FugenTools/URLEncoder/URLEncodedFormComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/URLEncoder/URLEncodedFormComponent.swift -------------------------------------------------------------------------------- /Sources/FugenTools/URLEncoder/URLEncodedFormContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/URLEncoder/URLEncodedFormContext.swift -------------------------------------------------------------------------------- /Sources/FugenTools/URLEncoder/URLEncodedFormEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/URLEncoder/URLEncodedFormEncoder.swift -------------------------------------------------------------------------------- /Sources/FugenTools/URLEncoder/URLEncodedFormKeyedEncodingContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/URLEncoder/URLEncodedFormKeyedEncodingContainer.swift -------------------------------------------------------------------------------- /Sources/FugenTools/URLEncoder/URLEncodedFormSerializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/URLEncoder/URLEncodedFormSerializer.swift -------------------------------------------------------------------------------- /Sources/FugenTools/URLEncoder/URLEncodedFormSingleValueEncodingContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/URLEncoder/URLEncodedFormSingleValueEncodingContainer.swift -------------------------------------------------------------------------------- /Sources/FugenTools/URLEncoder/URLEncodedFormUnkeyedEncodingContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/URLEncoder/URLEncodedFormUnkeyedEncodingContainer.swift -------------------------------------------------------------------------------- /Sources/FugenTools/URLEncoder/URLEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/URLEncoder/URLEncoder.swift -------------------------------------------------------------------------------- /Sources/FugenTools/URLEncoder/URLSpaceEncodingStrategy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Sources/FugenTools/URLEncoder/URLSpaceEncodingStrategy.swift -------------------------------------------------------------------------------- /Templates/ColorStyles.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Templates/ColorStyles.stencil -------------------------------------------------------------------------------- /Templates/FileHeader.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Templates/FileHeader.stencil -------------------------------------------------------------------------------- /Templates/Images.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Templates/Images.stencil -------------------------------------------------------------------------------- /Templates/ShadowStyles.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Templates/ShadowStyles.stencil -------------------------------------------------------------------------------- /Templates/TextStyles.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Templates/TextStyles.stencil -------------------------------------------------------------------------------- /Tests/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Tests/.swiftlint.yml -------------------------------------------------------------------------------- /Tests/FugenTests/FugenTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Tests/FugenTests/FugenTests.swift -------------------------------------------------------------------------------- /Tests/FugenTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Tests/FugenTests/Info.plist -------------------------------------------------------------------------------- /Tests/FugenTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Tests/FugenTests/XCTestManifests.swift -------------------------------------------------------------------------------- /Tests/FugenToolsTests/FugenToolsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Tests/FugenToolsTests/FugenToolsTests.swift -------------------------------------------------------------------------------- /Tests/FugenToolsTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Tests/FugenToolsTests/Info.plist -------------------------------------------------------------------------------- /Tests/FugenToolsTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Tests/FugenToolsTests/XCTestManifests.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almazrafi/Fugen/HEAD/Tests/LinuxMain.swift --------------------------------------------------------------------------------