From d2c5c7af1161abc7a1cdf6000a41fb6eb930c2af Mon Sep 17 00:00:00 2001 From: David Jennes Date: Wed, 22 Nov 2017 14:26:24 +0100 Subject: [PATCH] Move swiftgenkit sources, create our own framework target for it --- .../SwiftGenKit Contexts}/Assets.md | 0 .../SwiftGenKit Contexts}/Colors.md | 0 .../SwiftGenKit Contexts}/Fonts.md | 0 .../SwiftGenKit Contexts}/MigrationGuide.md | 0 .../SwiftGenKit Contexts}/Storyboards.md | 0 .../SwiftGenKit Contexts}/Strings.md | 0 Podfile | 14 +- Podfile.lock | 12 +- Pods/Local Podspecs/SwiftGenKit.podspec.json | 29 - Pods/Manifest.lock | 12 +- Pods/Pods.xcodeproj/project.pbxproj | 2665 ++++++++--------- .../PathKit/PathKit.xcconfig | 2 +- ...iftGen UnitTests-acknowledgements.markdown | 24 - ...-SwiftGen UnitTests-acknowledgements.plist | 30 - .../Pods-SwiftGen UnitTests-frameworks.sh | 4 - .../Pods-SwiftGen UnitTests.debug.xcconfig | 8 +- .../Pods-SwiftGen UnitTests.release.xcconfig | 8 +- ...GenKit UnitTests-acknowledgements.markdown | 24 - ...iftGenKit UnitTests-acknowledgements.plist | 30 - .../Pods-SwiftGenKit UnitTests-frameworks.sh | 4 - .../Pods-SwiftGenKit UnitTests.debug.xcconfig | 8 +- ...ods-SwiftGenKit UnitTests.release.xcconfig | 8 +- .../Pods-SwiftGenKit/Info.plist | 26 + ...Pods-SwiftGenKit-acknowledgements.markdown | 54 + .../Pods-SwiftGenKit-acknowledgements.plist | 92 + .../Pods-SwiftGenKit/Pods-SwiftGenKit-dummy.m | 5 + .../Pods-SwiftGenKit-resources.sh | 106 + .../Pods-SwiftGenKit-umbrella.h} | 4 +- .../Pods-SwiftGenKit.debug.xcconfig | 13 + .../Pods-SwiftGenKit.modulemap | 6 + .../Pods-SwiftGenKit.release.xcconfig | 13 + .../Pods-swiftgen-acknowledgements.markdown | 48 +- .../Pods-swiftgen-acknowledgements.plist | 60 +- .../Pods-swiftgen/Pods-swiftgen-frameworks.sh | 6 +- .../Pods-swiftgen.debug.xcconfig | 6 +- .../Pods-swiftgen.release.xcconfig | 6 +- .../SwiftGenKit/SwiftGenKit-dummy.m | 5 - .../SwiftGenKit/SwiftGenKit-prefix.pch | 12 - .../SwiftGenKit/SwiftGenKit.modulemap | 6 - .../SwiftGenKit/SwiftGenKit.xcconfig | 13 - .../SwiftGenKit/Info.plist | 0 .../Parsers/AssetsCatalogParser.swift | 0 .../ColorsCLRFileParser.swift | 4 +- .../ColorsJSONFileParser.swift | 0 .../ColorsTXTFileParser.swift | 0 .../ColorsXMLFileParser.swift | 0 .../SwiftGenKit}/Parsers/ColorsParser.swift | 2 +- .../SwiftGenKit}/Parsers/FontsParser.swift | 0 .../SwiftGenKit}/Parsers/Parser.swift | 0 .../Parsers/StoryboardParser.swift | 0 .../SwiftGenKit}/Parsers/StringsParser.swift | 12 +- .../Stencil/AssetsCatalogContext.swift | 0 .../SwiftGenKit}/Stencil/ColorsContext.swift | 2 +- .../SwiftGenKit}/Stencil/FontsContext.swift | 0 .../Stencil/StoryboardsContext.swift | 0 .../SwiftGenKit}/Stencil/StringsContext.swift | 0 SwiftGen.xcodeproj/project.pbxproj | 355 ++- ...SwiftGenKit.podspec => SwiftGenKit.podspec | 0 SwiftGenKit/.swift-version | 1 - SwiftGenKit/README.md | 32 - 60 files changed, 2026 insertions(+), 1745 deletions(-) rename {SwiftGenKit/Documentation => Documentation/SwiftGenKit Contexts}/Assets.md (100%) rename {SwiftGenKit/Documentation => Documentation/SwiftGenKit Contexts}/Colors.md (100%) rename {SwiftGenKit/Documentation => Documentation/SwiftGenKit Contexts}/Fonts.md (100%) rename {SwiftGenKit/Documentation => Documentation/SwiftGenKit Contexts}/MigrationGuide.md (100%) rename {SwiftGenKit/Documentation => Documentation/SwiftGenKit Contexts}/Storyboards.md (100%) rename {SwiftGenKit/Documentation => Documentation/SwiftGenKit Contexts}/Strings.md (100%) delete mode 100644 Pods/Local Podspecs/SwiftGenKit.podspec.json create mode 100644 Pods/Target Support Files/Pods-SwiftGenKit/Info.plist create mode 100644 Pods/Target Support Files/Pods-SwiftGenKit/Pods-SwiftGenKit-acknowledgements.markdown create mode 100644 Pods/Target Support Files/Pods-SwiftGenKit/Pods-SwiftGenKit-acknowledgements.plist create mode 100644 Pods/Target Support Files/Pods-SwiftGenKit/Pods-SwiftGenKit-dummy.m create mode 100755 Pods/Target Support Files/Pods-SwiftGenKit/Pods-SwiftGenKit-resources.sh rename Pods/Target Support Files/{SwiftGenKit/SwiftGenKit-umbrella.h => Pods-SwiftGenKit/Pods-SwiftGenKit-umbrella.h} (60%) create mode 100644 Pods/Target Support Files/Pods-SwiftGenKit/Pods-SwiftGenKit.debug.xcconfig create mode 100644 Pods/Target Support Files/Pods-SwiftGenKit/Pods-SwiftGenKit.modulemap create mode 100644 Pods/Target Support Files/Pods-SwiftGenKit/Pods-SwiftGenKit.release.xcconfig delete mode 100644 Pods/Target Support Files/SwiftGenKit/SwiftGenKit-dummy.m delete mode 100644 Pods/Target Support Files/SwiftGenKit/SwiftGenKit-prefix.pch delete mode 100644 Pods/Target Support Files/SwiftGenKit/SwiftGenKit.modulemap delete mode 100644 Pods/Target Support Files/SwiftGenKit/SwiftGenKit.xcconfig rename {Pods/Target Support Files => Sources}/SwiftGenKit/Info.plist (100%) rename {SwiftGenKit/Sources => Sources/SwiftGenKit}/Parsers/AssetsCatalogParser.swift (100%) rename {SwiftGenKit/Sources => Sources/SwiftGenKit}/Parsers/ColorsFileParsers/ColorsCLRFileParser.swift (82%) rename {SwiftGenKit/Sources => Sources/SwiftGenKit}/Parsers/ColorsFileParsers/ColorsJSONFileParser.swift (100%) rename {SwiftGenKit/Sources => Sources/SwiftGenKit}/Parsers/ColorsFileParsers/ColorsTXTFileParser.swift (100%) rename {SwiftGenKit/Sources => Sources/SwiftGenKit}/Parsers/ColorsFileParsers/ColorsXMLFileParser.swift (100%) rename {SwiftGenKit/Sources => Sources/SwiftGenKit}/Parsers/ColorsParser.swift (98%) rename {SwiftGenKit/Sources => Sources/SwiftGenKit}/Parsers/FontsParser.swift (100%) rename {SwiftGenKit/Sources => Sources/SwiftGenKit}/Parsers/Parser.swift (100%) rename {SwiftGenKit/Sources => Sources/SwiftGenKit}/Parsers/StoryboardParser.swift (100%) rename {SwiftGenKit/Sources => Sources/SwiftGenKit}/Parsers/StringsParser.swift (94%) rename {SwiftGenKit/Sources => Sources/SwiftGenKit}/Stencil/AssetsCatalogContext.swift (100%) rename {SwiftGenKit/Sources => Sources/SwiftGenKit}/Stencil/ColorsContext.swift (96%) rename {SwiftGenKit/Sources => Sources/SwiftGenKit}/Stencil/FontsContext.swift (100%) rename {SwiftGenKit/Sources => Sources/SwiftGenKit}/Stencil/StoryboardsContext.swift (100%) rename {SwiftGenKit/Sources => Sources/SwiftGenKit}/Stencil/StringsContext.swift (100%) rename SwiftGenKit/SwiftGenKit.podspec => SwiftGenKit.podspec (100%) delete mode 100644 SwiftGenKit/.swift-version delete mode 100644 SwiftGenKit/README.md diff --git a/SwiftGenKit/Documentation/Assets.md b/Documentation/SwiftGenKit Contexts/Assets.md similarity index 100% rename from SwiftGenKit/Documentation/Assets.md rename to Documentation/SwiftGenKit Contexts/Assets.md diff --git a/SwiftGenKit/Documentation/Colors.md b/Documentation/SwiftGenKit Contexts/Colors.md similarity index 100% rename from SwiftGenKit/Documentation/Colors.md rename to Documentation/SwiftGenKit Contexts/Colors.md diff --git a/SwiftGenKit/Documentation/Fonts.md b/Documentation/SwiftGenKit Contexts/Fonts.md similarity index 100% rename from SwiftGenKit/Documentation/Fonts.md rename to Documentation/SwiftGenKit Contexts/Fonts.md diff --git a/SwiftGenKit/Documentation/MigrationGuide.md b/Documentation/SwiftGenKit Contexts/MigrationGuide.md similarity index 100% rename from SwiftGenKit/Documentation/MigrationGuide.md rename to Documentation/SwiftGenKit Contexts/MigrationGuide.md diff --git a/SwiftGenKit/Documentation/Storyboards.md b/Documentation/SwiftGenKit Contexts/Storyboards.md similarity index 100% rename from SwiftGenKit/Documentation/Storyboards.md rename to Documentation/SwiftGenKit Contexts/Storyboards.md diff --git a/SwiftGenKit/Documentation/Strings.md b/Documentation/SwiftGenKit Contexts/Strings.md similarity index 100% rename from SwiftGenKit/Documentation/Strings.md rename to Documentation/SwiftGenKit Contexts/Strings.md diff --git a/Podfile b/Podfile index 4da2aa51..82a50dce 100644 --- a/Podfile +++ b/Podfile @@ -1,18 +1,13 @@ platform :osx, '10.9' use_frameworks! -def common_pods - pod 'PathKit', '~> 0.8.0', inhibit_warnings: true -end - def code_generation_pods - common_pods + pod 'PathKit', '~> 0.8.0' pod 'StencilSwiftKit', '~> 2.3' end def swiftgen_pods code_generation_pods - pod 'SwiftGenKit', path: 'SwiftGenKit' pod 'Yams', '~> 0.3' end @@ -21,13 +16,16 @@ target 'swiftgen' do pod 'Commander', '~> 0.8' end +target 'SwiftGenKit' do + podspec :path => 'SwiftGenKit.podspec' +end + target 'SwiftGen UnitTests' do swiftgen_pods end target 'SwiftGenKit UnitTests' do - common_pods - pod 'SwiftGenKit', path: 'SwiftGenKit' + pod 'PathKit', '~> 0.8.0' end target 'Templates UnitTests' do diff --git a/Podfile.lock b/Podfile.lock index 9a290b57..5af0ffad 100644 --- a/Podfile.lock +++ b/Podfile.lock @@ -6,31 +6,23 @@ PODS: - PathKit (~> 0.8.0) - StencilSwiftKit (2.3.0): - Stencil (~> 0.9.0) - - SwiftGenKit (2.1.1): - - Kanna - - PathKit (~> 0.8.0) - Yams (0.3.7) DEPENDENCIES: - Commander (~> 0.8) + - Kanna - PathKit (~> 0.8.0) - StencilSwiftKit (~> 2.3) - - SwiftGenKit (from `SwiftGenKit`) - Yams (~> 0.3) -EXTERNAL SOURCES: - SwiftGenKit: - :path: SwiftGenKit - SPEC CHECKSUMS: Commander: 6eda7635b133e239faa85bf75dcab88d6fd63aaa Kanna: 182789ab065e8f9a6ccc2a74ce6283d3401c0c4a PathKit: dcab05d701474011aae0e40cf892298a831f63d6 Stencil: 510f0b0518a366b67b6a9c5085a0399741b6d2f9 StencilSwiftKit: bdbc7e5eeb2c6aaa00b44864a48eb8f1f5970e05 - SwiftGenKit: 6f8025dd3506cd01a378252d7e5b7c35c44aec63 Yams: 54731dac19bf3e499b8783ac482ca42ddf3efa4f -PODFILE CHECKSUM: 97650e16c773de717f2e85494e3915fe503028e4 +PODFILE CHECKSUM: 3613413e2f0d16c8ebe3cd6855d607c5ae034a3e COCOAPODS: 1.3.1 diff --git a/Pods/Local Podspecs/SwiftGenKit.podspec.json b/Pods/Local Podspecs/SwiftGenKit.podspec.json deleted file mode 100644 index 2cd0ee0b..00000000 --- a/Pods/Local Podspecs/SwiftGenKit.podspec.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "name": "SwiftGenKit", - "version": "2.1.1", - "summary": "The SwiftGen framework responsible for parsing assets and turn them in a dictionary representation suitable for Stencil templates", - "description": "This pod contains asset parsers for\n[SwiftGen](https://github.com/SwiftGen/SwiftGen), as well as\nmethods for converting the data into contexts for\n[Stencil](https://github.com/kylef/Stencil).", - "homepage": "https://github.com/SwiftGen/SwiftGenKit", - "license": "MIT", - "authors": { - "Olivier Halligon": "olivier@halligon.net" - }, - "social_media_url": "https://twitter.com/aligatr", - "platforms": { - "osx": "10.9" - }, - "source": { - "git": "https://github.com/SwiftGen/SwiftGenKit.git", - "tag": "2.1.1" - }, - "source_files": "Sources/**/*.swift", - "dependencies": { - "Kanna": [ - - ], - "PathKit": [ - "~> 0.8.0" - ] - }, - "frameworks": "Foundation" -} diff --git a/Pods/Manifest.lock b/Pods/Manifest.lock index 9a290b57..5af0ffad 100644 --- a/Pods/Manifest.lock +++ b/Pods/Manifest.lock @@ -6,31 +6,23 @@ PODS: - PathKit (~> 0.8.0) - StencilSwiftKit (2.3.0): - Stencil (~> 0.9.0) - - SwiftGenKit (2.1.1): - - Kanna - - PathKit (~> 0.8.0) - Yams (0.3.7) DEPENDENCIES: - Commander (~> 0.8) + - Kanna - PathKit (~> 0.8.0) - StencilSwiftKit (~> 2.3) - - SwiftGenKit (from `SwiftGenKit`) - Yams (~> 0.3) -EXTERNAL SOURCES: - SwiftGenKit: - :path: SwiftGenKit - SPEC CHECKSUMS: Commander: 6eda7635b133e239faa85bf75dcab88d6fd63aaa Kanna: 182789ab065e8f9a6ccc2a74ce6283d3401c0c4a PathKit: dcab05d701474011aae0e40cf892298a831f63d6 Stencil: 510f0b0518a366b67b6a9c5085a0399741b6d2f9 StencilSwiftKit: bdbc7e5eeb2c6aaa00b44864a48eb8f1f5970e05 - SwiftGenKit: 6f8025dd3506cd01a378252d7e5b7c35c44aec63 Yams: 54731dac19bf3e499b8783ac482ca42ddf3efa4f -PODFILE CHECKSUM: 97650e16c773de717f2e85494e3915fe503028e4 +PODFILE CHECKSUM: 3613413e2f0d16c8ebe3cd6855d607c5ae034a3e COCOAPODS: 1.3.1 diff --git a/Pods/Pods.xcodeproj/project.pbxproj b/Pods/Pods.xcodeproj/project.pbxproj index 2c03955b..aa61921a 100644 --- a/Pods/Pods.xcodeproj/project.pbxproj +++ b/Pods/Pods.xcodeproj/project.pbxproj @@ -7,193 +7,161 @@ objects = { /* Begin PBXBuildFile section */ - 025E3B2BB362A180A34F93930A89BC3D /* api.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B893CA3066E0CA10E10978C5F9783DD /* api.c */; }; - 0276A23062CB53E49BDDA10A54DBA7B9 /* StringsParser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 698C770FB450908FBD23B4FB3A69395D /* StringsParser.swift */; }; + 012CB473D64027416E5F06C7DCD0AD88 /* Parser.swift in Sources */ = {isa = PBXBuildFile; fileRef = C013CA6D956CDF6428A12E449F3B687A /* Parser.swift */; }; + 02D84F8EBC7E13EB99CD3738DA071ED0 /* Filters+Strings+Boolean.swift in Sources */ = {isa = PBXBuildFile; fileRef = A6BA01D5AE011D7457C35635F9D824BF /* Filters+Strings+Boolean.swift */; }; + 035BF828DAD65FEE4A05A11C2DC93533 /* Node.swift in Sources */ = {isa = PBXBuildFile; fileRef = 082021ECFC4843EAE4199FAAAA16092C /* Node.swift */; }; + 040B29D0120B5B450B98FC67FEC958B8 /* PathKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A8372F79805E8B279CDAAC367A08F658 /* PathKit-dummy.m */; }; + 084EF68F3F219FC04AA043FC4B2824E8 /* Pods-SwiftGen UnitTests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 3868CDF0DC7FEAADF14F05A8B3C4D43D /* Pods-SwiftGen UnitTests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 08700CBB713B443AFA394EFD6B74E402 /* libxmlHTMLNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 446C9E1F3C02E71C3E0A45793541B9C6 /* libxmlHTMLNode.swift */; }; - 089D6407EB1EEFC90043E9E54AD49B20 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 07FC6C46CE5410C97375995E800EB8D5 /* Cocoa.framework */; }; - 0DA796879D0F109648F4718C8B6FC6C2 /* Kanna.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 52A88E569E0950EDFED8B4BBCA10FC9D /* Kanna.framework */; }; - 0F21A0B9080494BE19400501F4F4C6C7 /* Node.Scalar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 400EFBD5A01C135F0269EDD77A003C80 /* Node.Scalar.swift */; }; - 0F8921099653946B4D4B71FFC2AE567F /* writer.c in Sources */ = {isa = PBXBuildFile; fileRef = FEDB6E992DD26F0C6E3C9C25D1707469 /* writer.c */; }; - 1122005E9586BC5AC5703D4BE016765A /* StencilSwiftKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EF12766E3CE313B09FF2365BDA6AD83 /* StencilSwiftKit-dummy.m */; }; - 15471BF684CBC706843D1F17B5E1A0BA /* Pods-Templates UnitTests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A84E3ACC9C8D98444DCA3DFD982B2018 /* Pods-Templates UnitTests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 089D6407EB1EEFC90043E9E54AD49B20 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2497E0C37C035DB8276C0C7335E3FC93 /* Cocoa.framework */; }; + 15471BF684CBC706843D1F17B5E1A0BA /* Pods-Templates UnitTests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 259A75ACFABA05D92F45F2EE11DC3633 /* Pods-Templates UnitTests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 1569173F45E5EF95E6EED60299AA6055 /* CommandRunner.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8BD263F0AE275611C06B84F936F104EE /* CommandRunner.swift */; }; 174A794314153757C190DC3030BC3529 /* Group.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8995005E94A9629D16F59C2D10CED0AC /* Group.swift */; }; - 17EEE0D771BE4FBDDD0AF3F6FBE8BCD1 /* SwiftGenKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F927D8382BF14A80B3413AB571D270 /* SwiftGenKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 189C8117DCBFD14F29DA2434CEEE30E8 /* Parser.swift in Sources */ = {isa = PBXBuildFile; fileRef = C013CA6D956CDF6428A12E449F3B687A /* Parser.swift */; }; 1997C6DEDACB4824FBC6ED8B487F0F61 /* ArgumentParser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 925DCA1FF058968B15FF4C6DDBBA2EBC /* ArgumentParser.swift */; }; - 1A1B3823A490DE70E812FFC5F3DF7589 /* Template.swift in Sources */ = {isa = PBXBuildFile; fileRef = 615AACF9A58CC7D650F1CB3637A03CE2 /* Template.swift */; }; 1B172FEFC59D431C2EB76A6880D9C77D /* Commander-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EF63C4FAFEEC9DFC4CF6FC23CE6B55D /* Commander-dummy.m */; }; - 1BC3D304D6D2CD36AD7E4DF20E3ACDBC /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 07FC6C46CE5410C97375995E800EB8D5 /* Cocoa.framework */; }; - 1E54981617131D2CC854125C2F10D7CE /* dumper.c in Sources */ = {isa = PBXBuildFile; fileRef = F70DDD9AB16AE398F2D56301C4476401 /* dumper.c */; }; - 24667B191E1955165C7A0D321E07D34E /* Environment.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2DEB84B9FDBFB12F4D246BEE98DF613 /* Environment.swift */; }; - 26ED199A407E75AF1AF467771B97A0B6 /* YamlError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 57127B9664DDBF9DD147D1448016BD00 /* YamlError.swift */; }; - 2865697D91EF99ABF0E6D842B2498061 /* Yams-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B9FF930762AEFCD59EE294322B0FA60F /* Yams-dummy.m */; }; - 2E06DBBFEE0D4CA4043C88B59CB6EF31 /* IfTag.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3FDFFBC204429B3D5DB0F5F161B1FDE2 /* IfTag.swift */; }; + 1BC3D304D6D2CD36AD7E4DF20E3ACDBC /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2497E0C37C035DB8276C0C7335E3FC93 /* Cocoa.framework */; }; + 1C6E6549FF0040C3FEDEC69D0928E1D5 /* emitter.c in Sources */ = {isa = PBXBuildFile; fileRef = 40C5ADE511F57031BE1F8E97EAB6289D /* emitter.c */; }; + 1ED3D59DFF6287FDE50EF497065ED3F1 /* SetNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = BBD2DAA77CBCE64F0961AE0253ABF464 /* SetNode.swift */; }; + 295F38AAD416FC498C6680E6F941B415 /* Context.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D4B267893661656A8E7626F2A78BAF0 /* Context.swift */; }; + 2C6293566429CA3C6FC819A4C44974D6 /* Node.swift in Sources */ = {isa = PBXBuildFile; fileRef = DCCD3FAA90621AC6D16E2554D79FE74D /* Node.swift */; }; + 2C84D8700C154D8E01282B003EC0E4DA /* Constructor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 75C9DBDB3DA302827FE716C21B1399BD /* Constructor.swift */; }; 322F32F75AC8A04064F70A089800AF88 /* Kanna-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 025B08582C703DF9518C856AE412AB56 /* Kanna-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3677E882D94482D001B2936D468633CD /* StencilSwiftTemplate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 14ED035F9943C01C20306875C7A8CE7D /* StencilSwiftTemplate.swift */; }; - 37E8979E16B4C05CA22F30E9C53D7EE4 /* emitter.c in Sources */ = {isa = PBXBuildFile; fileRef = 40C5ADE511F57031BE1F8E97EAB6289D /* emitter.c */; }; - 3C921B492F183E960336A2A7CD9B7059 /* Expression.swift in Sources */ = {isa = PBXBuildFile; fileRef = 704E8C9D5FAAA12103CC26FF5D956FDE /* Expression.swift */; }; + 32D9E9F3F1117A43278FA56D65A5BADA /* StencilSwiftTemplate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 14ED035F9943C01C20306875C7A8CE7D /* StencilSwiftTemplate.swift */; }; + 34149423685DA2DF36A400E401ED60DC /* Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA65A78D56FD870A815375290427FC5F /* Extension.swift */; }; + 39F21C6145075DD7C1AECF704802AD76 /* Pods-swiftgen-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BB4B20E9CA05778A07FF0804C54BA70 /* Pods-swiftgen-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 3D4D819EBA8EF6EE8584069C93C9728C /* CommandType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 124DCE74AFEDFC423CD3FB28B6FEA2DB /* CommandType.swift */; }; 3DB400D8B8AADDF43E1439E3441E814B /* Kanna-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C127F01C6574565A24D60AEFBAB5667 /* Kanna-dummy.m */; }; - 3F9416F2CCC68C329CB2FA9B48D0133B /* Loader.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79443D7B9D5596321DBA2A94D95D86A1 /* Loader.swift */; }; - 3FD53ACD42E41BE6868911A8A049B6C6 /* SwiftIdentifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A4D526612A21B6326D96D0DB7A848B7 /* SwiftIdentifier.swift */; }; - 3FFDFD3D45A6CD3A55C102B2409C4BCA /* Representer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74237F9BDED57BECB2CEF42219AC002E /* Representer.swift */; }; + 3E795BB4A21FCEF88103E465D08A5718 /* loader.c in Sources */ = {isa = PBXBuildFile; fileRef = 723C47BD138E0732E599128BB56BEDB8 /* loader.c */; }; + 40AB291C1E9F6850F4C09BD2BB7CD946 /* parser.c in Sources */ = {isa = PBXBuildFile; fileRef = 175D9744F551585CB9E4E0C94E09083F /* parser.c */; }; 436871564BF1C99AA86206B69CDB40DD /* Kanna.h in Headers */ = {isa = PBXBuildFile; fileRef = C7812A9A5D8897B9272D029F97AB5F45 /* Kanna.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 45C9C98AD4CDE8E0A6B2C5A30EBCFCB0 /* StencilSwiftKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 162A87BCD210F24832A5CF1B6F010631 /* StencilSwiftKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 45E60DE373050F8CF7070A030E80158F /* StoryboardParser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E3E34CF1DC913D6240DA6D5B1E0D526 /* StoryboardParser.swift */; }; - 474E831066282CB75DF63B8532C311F5 /* Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D9AAF1E88FCC9E5782B687856E331F3 /* Errors.swift */; }; - 4883DBB8B0294F54C812013BF87D3B37 /* PathKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = F419ADC4844BF7A2B2BCC5E9EAE4E2C8 /* PathKit.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 4BD1C25EBFBB1DB54B8388E7FDC6511F /* MapNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = A2F4E2E72DE36318F3A3A6CDB5E11F9F /* MapNode.swift */; }; - 4CC6C3067A5019EC63D056D0DF75EAE6 /* Context.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D4B267893661656A8E7626F2A78BAF0 /* Context.swift */; }; - 4F22D8DBF0481A0935B09AE24B8471AB /* Stencil-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F6289FF6EE58120281CA8D3BE7F61893 /* Stencil-dummy.m */; }; + 45843DAFF1A940C0EDD59F00C2814729 /* Parser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7AD03FF2652C402BF2893C3783F28B9F /* Parser.swift */; }; + 4D7A74BEAD0938EE7BD86E584F847704 /* writer.c in Sources */ = {isa = PBXBuildFile; fileRef = FEDB6E992DD26F0C6E3C9C25D1707469 /* writer.c */; }; + 4F56DAD2BC8835CF5C9331BE258B9A1E /* Pods-SwiftGen UnitTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 68D95C5D52F98D9C730AFDF1CE31D8A7 /* Pods-SwiftGen UnitTests-dummy.m */; }; 5245ABB6A66FF1DEC56583EF468DD7AA /* PathKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FD9BDCCE39B3FBB2252CA0F8A0C30D1 /* PathKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5792E1589905DD9069FB9C6DDD597F42 /* ColorsTXTFileParser.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7C3F5FA4768AF1D745DED193A2B3803 /* ColorsTXTFileParser.swift */; }; - 57A475269BC08FEC3574AB018C64C80E /* StoryboardsContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E2449C59161EF7593E19A01DC7C010B /* StoryboardsContext.swift */; }; - 5A821EDAB718D303F701987DDB2AF1FE /* Tokenizer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84372F83E916A7CDF372417B40BA21DF /* Tokenizer.swift */; }; - 5D07EEE29DAE491DD2E111BDB65D376E /* ColorsXMLFileParser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 71006898C6FF630B2AA830AC3A87BC20 /* ColorsXMLFileParser.swift */; }; - 6049A8E1463E7FF77E76EFAA7AA7140D /* Pods-SwiftGenKit UnitTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CB11DD7EA2976EC4FA27D3E8C9474C6B /* Pods-SwiftGenKit UnitTests-dummy.m */; }; + 5528811EA188E0899ED495FF7AD460B7 /* YamlError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 57127B9664DDBF9DD147D1448016BD00 /* YamlError.swift */; }; + 583FC9B7EBAC6470BF53CE427FC72D54 /* String+Yams.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD71201BD92A7B12E2A53836473F6FEB /* String+Yams.swift */; }; + 589D8709F5D683E559F44F331F81D694 /* Pods-SwiftGenKit UnitTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A1D3FA16B2313A4B5394A5A04F4ADBF /* Pods-SwiftGenKit UnitTests-dummy.m */; }; + 624A3F0CF5D478BA56750F18FACFF3CC /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2497E0C37C035DB8276C0C7335E3FC93 /* Cocoa.framework */; }; + 6272EE69D3F5DE1DF030E2B979A19909 /* PathKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = F419ADC4844BF7A2B2BCC5E9EAE4E2C8 /* PathKit.swift */; }; 634F01C0D06986FD15F647234ADA7CBC /* Kanna.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47D0393BFA6E90F6DEE7DFC833B52E37 /* Kanna.swift */; }; - 72086B5F3AA0AFAA7BFA4CBBBF9E4674 /* Pods-swiftgen-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DE740DE0C0F3F344E56671CA0D7B5E1 /* Pods-swiftgen-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6673E39FEBF0326594317C63015D72FE /* MapNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = A2F4E2E72DE36318F3A3A6CDB5E11F9F /* MapNode.swift */; }; + 68586DD5B46141ED23CA28B947B7B8AD /* Expression.swift in Sources */ = {isa = PBXBuildFile; fileRef = 704E8C9D5FAAA12103CC26FF5D956FDE /* Expression.swift */; }; + 6918C80B34F568CC3B45C81E9DA11A3B /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2497E0C37C035DB8276C0C7335E3FC93 /* Cocoa.framework */; }; + 6939ED51E0F9238A05F60D27A9415D77 /* Mark.swift in Sources */ = {isa = PBXBuildFile; fileRef = 439F3D303169C860333EEB319386123C /* Mark.swift */; }; + 6D2A45BB49A45340020BBF94977C8C74 /* SwiftIdentifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A4D526612A21B6326D96D0DB7A848B7 /* SwiftIdentifier.swift */; }; + 6DDEED31B233CBC886873B7D1AAD1AF3 /* Pods-SwiftGenKit UnitTests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DEC43438FA64AC6DC5A29F4D8BB86401 /* Pods-SwiftGenKit UnitTests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6EF1012E2FFE8B147B226A1BB3D3D340 /* Stencil.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A68FA9661EC6B4BA5415DDD474F7F00 /* Stencil.framework */; }; + 7163AECB088178E6DA653C4243CAB1C8 /* Filters+Strings+Mutations.swift in Sources */ = {isa = PBXBuildFile; fileRef = 48E8C1354E2301A747D18FE57531510E /* Filters+Strings+Mutations.swift */; }; + 736A4ECFEED8704082578A1613CB5A20 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2497E0C37C035DB8276C0C7335E3FC93 /* Cocoa.framework */; }; + 73C697AEA59145B90FECAEA9CC2C44FE /* Context.swift in Sources */ = {isa = PBXBuildFile; fileRef = D54A5C8C45C15FE257B87F9B215ED705 /* Context.swift */; }; + 76567A62B8F8996F30CC6A5BE24ADD2B /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2497E0C37C035DB8276C0C7335E3FC93 /* Cocoa.framework */; }; 781A4D12CC4A83EA4705C6029254B012 /* libxmlHTMLDocument.swift in Sources */ = {isa = PBXBuildFile; fileRef = 292B03EAEFC471FA146A542F6E29568C /* libxmlHTMLDocument.swift */; }; + 7A57BC2CB6057D1920ADFE7E36BDC65D /* Yams.h in Headers */ = {isa = PBXBuildFile; fileRef = C4FCAF1854F7DE6FFFC097B5AB6CD02C /* Yams.h */; settings = {ATTRIBUTES = (Public, ); }; }; 7B555BF97ADF4AD837C3D5EAC4ED5911 /* ArgumentConvertible.swift in Sources */ = {isa = PBXBuildFile; fileRef = A958AD0406CDA27C645A39B7B0583442 /* ArgumentConvertible.swift */; }; - 7D407A604BE562BCD5F7CCC90079BDE0 /* Filters.swift in Sources */ = {isa = PBXBuildFile; fileRef = 55619476435E21F77618F79DB6452FE5 /* Filters.swift */; }; - 7D8F4D538F95AC041DEAE03663F4B65C /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 07FC6C46CE5410C97375995E800EB8D5 /* Cocoa.framework */; }; - 80E50DE018F8B498A3A4B07F993D7A89 /* Emitter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30A0C615C516C99574041867877218AE /* Emitter.swift */; }; - 822617FFBBD074012142B24970700A3D /* CYaml.h in Headers */ = {isa = PBXBuildFile; fileRef = 67116F110DE5C2F0C81F8690D4E70102 /* CYaml.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 85B7FD13DCEF511D801FCAA8CE365EF4 /* Environment.swift in Sources */ = {isa = PBXBuildFile; fileRef = 41536736EF3D70C26B6DACD02B0DBF12 /* Environment.swift */; }; + 7ED418955AC5E6A57B91DBD45F6BCEB9 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2497E0C37C035DB8276C0C7335E3FC93 /* Cocoa.framework */; }; + 824B3C69163FD408E21BEE7DEB9BC9E4 /* Node.Scalar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 400EFBD5A01C135F0269EDD77A003C80 /* Node.Scalar.swift */; }; + 8365236212F6A2F4C56B301AF1998B23 /* Pods-SwiftGenKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F1EBBBC2CC44C5AC3169F2ADAD559A23 /* Pods-SwiftGenKit-dummy.m */; }; + 845D99A5FADD51384D258DDFC5FE7C2B /* Template.swift in Sources */ = {isa = PBXBuildFile; fileRef = 615AACF9A58CC7D650F1CB3637A03CE2 /* Template.swift */; }; 879DD79B8C44B05DBC2299EA9269D4E5 /* Error.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA336BF2A928D21EC7D7FC90D8A5D9D5 /* Error.swift */; }; - 87D6B7DD851623A3474788FA762C2CDC /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 07FC6C46CE5410C97375995E800EB8D5 /* Cocoa.framework */; }; - 8862C132346331AADF96130ADEEBA9EB /* Node.swift in Sources */ = {isa = PBXBuildFile; fileRef = 082021ECFC4843EAE4199FAAAA16092C /* Node.swift */; }; - 888F6506E37ECACAA7BDF2AE87286061 /* Node.Sequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 11DF79F39608A675A9A488D2CFBA5994 /* Node.Sequence.swift */; }; - 8BD7AC9CB107AF1A24067F1558F769F9 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 07FC6C46CE5410C97375995E800EB8D5 /* Cocoa.framework */; }; + 88E8AA4FA20A4FBEE47BA9F14FF69608 /* Pods-SwiftGenKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D7F224BE778FD4DEA0076AC55FF296A /* Pods-SwiftGenKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 892888FA07D13CEA164605377940F627 /* Stencil-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F6289FF6EE58120281CA8D3BE7F61893 /* Stencil-dummy.m */; }; 8C933F3B70E62A3B04B01329E448F2B9 /* Commander-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 317782A9966145C3410FB4EA6AF1396C /* Commander-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8E9D5AF0B7349EFFFA54BAEEABD38939 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA9225A6F428A88CAFCDD56E0E350219 /* Foundation.framework */; }; - 92E6890A11714D5532D5A8CEAA43F9B3 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 07FC6C46CE5410C97375995E800EB8D5 /* Cocoa.framework */; }; - 93A4819971C0FFE43505FB16CCA3CFE7 /* String+Yams.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD71201BD92A7B12E2A53836473F6FEB /* String+Yams.swift */; }; - 94F06CD58668D57C63BA492085E5270B /* FilterTag.swift in Sources */ = {isa = PBXBuildFile; fileRef = CDCA4ECC17AA890085A1CCE2D57D3E0F /* FilterTag.swift */; }; - 95C814EE2408F7E106BFD472B7EB8A2B /* Mark.swift in Sources */ = {isa = PBXBuildFile; fileRef = 439F3D303169C860333EEB319386123C /* Mark.swift */; }; - 986B039B504B837671D7E57BE2E1C587 /* Pods-swiftgen-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D0835423EE036D3BD1448C0BBA814FBD /* Pods-swiftgen-dummy.m */; }; - 9AFB40C280B2EE1BC9A104A17AFB12B6 /* AssetsCatalogParser.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6775BDE84134B9B3939A6572895F0B5 /* AssetsCatalogParser.swift */; }; - 9C8E13DCDF806E26A4BAF82810D298C2 /* Lexer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43A3EC09157425330ABE959C043D650E /* Lexer.swift */; }; - 9CCE9EE1C314715E7DF058C0F1AB1019 /* PathKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0566A8F86BD6CD0F51D9A9F6C40605F0 /* PathKit.framework */; }; - 9E0EAC310F2E827C6EA5C0DB2A57C185 /* FontsParser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 672DD2AC7A4AD985FD3A2AAFC4F069EA /* FontsParser.swift */; }; - 9E740CA8F7E9F3FA89B9A5A7C1E8CF02 /* Filters+Strings+Base.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C53BCA381BB2AC46DD1973418B08F10 /* Filters+Strings+Base.swift */; }; - 9E9B1B2345D73B43D50408FA51FCA41B /* Node.swift in Sources */ = {isa = PBXBuildFile; fileRef = DCCD3FAA90621AC6D16E2554D79FE74D /* Node.swift */; }; - A1ABE18E9AD440C16105C242FBFD1EEA /* Pods-SwiftGen UnitTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D14327F1C799583B4D81D6D02D87824 /* Pods-SwiftGen UnitTests-dummy.m */; }; - A1C09F16A6806F59EB6C142456E92D24 /* Parser.swift in Sources */ = {isa = PBXBuildFile; fileRef = B360ABDDD237BE1DAF300C0DE06C209F /* Parser.swift */; }; + 8EC825CC2D31B58A40CEED66C8B839AF /* yaml_private.h in Headers */ = {isa = PBXBuildFile; fileRef = ACE230C7D510107506915DF1C430B485 /* yaml_private.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9080A96A1C5E815B8773F55E80957393 /* Filters.swift in Sources */ = {isa = PBXBuildFile; fileRef = 55619476435E21F77618F79DB6452FE5 /* Filters.swift */; }; + 920FDD426E7FFCF3F9DFF5F6E26B7704 /* reader.c in Sources */ = {isa = PBXBuildFile; fileRef = 0FCC66D44CB39A4E00908DC825BE0D74 /* reader.c */; }; + 92D21A166C75A2AB91A0512700B4A002 /* Variable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 63A247AD412A818CAF48C1D997C51510 /* Variable.swift */; }; + 92E6890A11714D5532D5A8CEAA43F9B3 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2497E0C37C035DB8276C0C7335E3FC93 /* Cocoa.framework */; }; + 9FF74B1386B90344FA9E4D13C4002E74 /* Lexer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43A3EC09157425330ABE959C043D650E /* Lexer.swift */; }; + A13C854BE9D94DB5520A745B47C4E1EE /* Filters.swift in Sources */ = {isa = PBXBuildFile; fileRef = 65448494AA8CB1E0CD303577A38D8FA5 /* Filters.swift */; }; A2D0B5F7D7B34ED094B53FCC4F88F2AF /* Command.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E8ECFF2FC462ABB13AF7CAB407FE1C5 /* Command.swift */; }; - A35AD2966C2C90082D19C3F8841204F9 /* SetNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = BBD2DAA77CBCE64F0961AE0253ABF464 /* SetNode.swift */; }; - A38ED60206DE5F43713E68934AA3B958 /* Pods-SwiftGenKit UnitTests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D6A2BCC6A0A91B5C44E1ADCAED76243 /* Pods-SwiftGenKit UnitTests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A4BEA7CDDBBFAA846C07330F336E7D39 /* Yams-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E6C4D29AB2EA1CD1F1D7E5A3DA178314 /* Yams-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A58C97DA482D29487805893ABD51869B /* CallMacroNodes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4BA10B00A429E3DEBE56E716AE6A4741 /* CallMacroNodes.swift */; }; - A6939BC037DD3C1BA6A3CD5AB7C4E6EA /* Resolver.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4893D79B81861C5D7ABF162235E549F /* Resolver.swift */; }; - A7407F85B931EFADEA2978568B0CCFB5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA9225A6F428A88CAFCDD56E0E350219 /* Foundation.framework */; }; - A7833CFABF3FE8A24BBD3B5376DA5E00 /* Inheritence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 439E85784F90FF6019988A492FF9FF15 /* Inheritence.swift */; }; - AB5F32DF34B1D0477A4B57CD8AA0E6CC /* PathKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0566A8F86BD6CD0F51D9A9F6C40605F0 /* PathKit.framework */; }; - AE9454DAF810DF9ED5F1AB92155BC0AE /* Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA65A78D56FD870A815375290427FC5F /* Extension.swift */; }; - AED739EAD886901B0F58F00A377593C2 /* Constructor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 75C9DBDB3DA302827FE716C21B1399BD /* Constructor.swift */; }; - AEF60028D9A0BBB171CA610A0D7A6763 /* scanner.c in Sources */ = {isa = PBXBuildFile; fileRef = BBC129142F5A3B71AE8E280D56AAA0B8 /* scanner.c */; }; + A3061B6D0F84DB11C7028CC004D7CBD9 /* yaml.h in Headers */ = {isa = PBXBuildFile; fileRef = 654F32E98AF505B5790AF4088CB39CF4 /* yaml.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A400F47A57ABAA4AAD49C9CF37E482EF /* CYaml.h in Headers */ = {isa = PBXBuildFile; fileRef = 67116F110DE5C2F0C81F8690D4E70102 /* CYaml.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A5C9D2BFA9C806E2CF1E48487625FEA0 /* Node.Sequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 11DF79F39608A675A9A488D2CFBA5994 /* Node.Sequence.swift */; }; + A5D5AE3786BE13112467D6125AE5B16B /* CallMacroNodes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4BA10B00A429E3DEBE56E716AE6A4741 /* CallMacroNodes.swift */; }; + A9192D873345D813A8F101343FAB9D91 /* Environment.swift in Sources */ = {isa = PBXBuildFile; fileRef = 41536736EF3D70C26B6DACD02B0DBF12 /* Environment.swift */; }; + AA1679E87FA139AC2610DE1D7268C0D0 /* Representer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74237F9BDED57BECB2CEF42219AC002E /* Representer.swift */; }; + AAF5A16246C087D1A594D1DAC0DA499A /* Inheritence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 439E85784F90FF6019988A492FF9FF15 /* Inheritence.swift */; }; + AE0B6C7D5CE641995EDAB9A34DF3CC6B /* Tokenizer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84372F83E916A7CDF372417B40BA21DF /* Tokenizer.swift */; }; AF863C36D259D89189A0BDF54912C76E /* CSS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 81B2B6E40F4D4080F65641DD290FFEA6 /* CSS.swift */; }; - B1868AD526F9B07B72879441C1ECD330 /* Filters+Strings+Lettercase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 649697F4D4D9393F1C016549EB5F887C /* Filters+Strings+Lettercase.swift */; }; - B1CB5270AC2EC0DED12FFF2C7E681568 /* Filters+Strings+Mutations.swift in Sources */ = {isa = PBXBuildFile; fileRef = 48E8C1354E2301A747D18FE57531510E /* Filters+Strings+Mutations.swift */; }; - B3AE506E8152D3F3A5F3F6BE80D325F2 /* Pods-Templates UnitTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B7995FE659F376DE956FFEF77CC53528 /* Pods-Templates UnitTests-dummy.m */; }; - B797CC497AF133E4B8AA998E8F5470BF /* Filters+Strings+Boolean.swift in Sources */ = {isa = PBXBuildFile; fileRef = A6BA01D5AE011D7457C35635F9D824BF /* Filters+Strings+Boolean.swift */; }; - BBD9E144005CBDBEA39AC1E9A1D41CA1 /* FontsContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30EF8C11EA936E671AB620245DAC16C9 /* FontsContext.swift */; }; - BD06EE2D2AFCF40CDA2038E0C72CFB03 /* ColorsJSONFileParser.swift in Sources */ = {isa = PBXBuildFile; fileRef = DFE07A071C123AB075C3B4C591DCC152 /* ColorsJSONFileParser.swift */; }; - C576BE342408E16A13C932DF9FF6C743 /* StringsContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = E2A49F72B283554766D294CBF805CE07 /* StringsContext.swift */; }; - C82A7A43342E507A4C20C2B2D07D6253 /* ColorsParser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 92636EA964583141C0EFC1EA7AB4169F /* ColorsParser.swift */; }; - C8A7784C9747F5A22ABA031FF0B8DA37 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 07FC6C46CE5410C97375995E800EB8D5 /* Cocoa.framework */; }; - C8FF8C1A204B278E64E615929ECBCADF /* Stencil-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = EE218EEFCC4E6B9837BBF2FD65EF0E0E /* Stencil-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C95AC5E958CB0CEDB9BB0DD72C1C67FE /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 07FC6C46CE5410C97375995E800EB8D5 /* Cocoa.framework */; }; - CAB08A04498D25159D47821CF470BDEA /* Variable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 63A247AD412A818CAF48C1D997C51510 /* Variable.swift */; }; - CB35DAE76AB4AB946627AE73B597D1D8 /* Include.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1E3FAC5DDDD0A48F76368D37E61299D /* Include.swift */; }; - CB740F59B6F0AC05A489D1CE1061D79E /* PathKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A8372F79805E8B279CDAAC367A08F658 /* PathKit-dummy.m */; }; - D0EC9C03DDFD4E0874F07045417A96CD /* NowTag.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6FFA501B624BEA424F5953EC0DE874A6 /* NowTag.swift */; }; - D28BA61B4ADE8E5CE526CDDD8EF6C5FF /* parser.c in Sources */ = {isa = PBXBuildFile; fileRef = 175D9744F551585CB9E4E0C94E09083F /* parser.c */; }; - D5EFEB861DC4D2615F34B06FCC23D8B1 /* loader.c in Sources */ = {isa = PBXBuildFile; fileRef = 723C47BD138E0732E599128BB56BEDB8 /* loader.c */; }; + B0E3A64A258AD3D612BA438C2F26E28E /* NowTag.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6FFA501B624BEA424F5953EC0DE874A6 /* NowTag.swift */; }; + B1649F26B469F42A8677289159127C73 /* Loader.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79443D7B9D5596321DBA2A94D95D86A1 /* Loader.swift */; }; + B2C18E64E64800C9EE5F17CDFE8399B8 /* scanner.c in Sources */ = {isa = PBXBuildFile; fileRef = BBC129142F5A3B71AE8E280D56AAA0B8 /* scanner.c */; }; + B3AE506E8152D3F3A5F3F6BE80D325F2 /* Pods-Templates UnitTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FD5A328BA513C16BC9C63AE0B2FD2E10 /* Pods-Templates UnitTests-dummy.m */; }; + B49BC04252A4FF89CD19FA37EC25376D /* Parameters.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95EC2C27379036DB072DF82FB699F715 /* Parameters.swift */; }; + B4B86D266B4B623D161F61CCB9CFE808 /* Environment.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2DEB84B9FDBFB12F4D246BEE98DF613 /* Environment.swift */; }; + B97797868183631A978CAC79A121AE8D /* Yams-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E6C4D29AB2EA1CD1F1D7E5A3DA178314 /* Yams-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BA915565A2380A7A8DAF5CE38F5EAE0B /* Pods-swiftgen-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E2633AD48238CB17C93F4E12B6FBDF8E /* Pods-swiftgen-dummy.m */; }; + BBBDB9C8F54729126C8BAE86A0254978 /* PathKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0436538F42B0A2EC1C972F8EE47937E0 /* PathKit.framework */; }; + BCAC90A0D57C47F9047CB94A532CA23D /* Include.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1E3FAC5DDDD0A48F76368D37E61299D /* Include.swift */; }; + BCF4E286FC6711F98B9D364AF0214FE0 /* Yams-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B9FF930762AEFCD59EE294322B0FA60F /* Yams-dummy.m */; }; + BED7860CD9BDEBFAAD033174723019F8 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2497E0C37C035DB8276C0C7335E3FC93 /* Cocoa.framework */; }; + C20A747251AF68FBBC91C1A6213D75D5 /* Tag.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8C097E7409DB7A8F70A583EAF31CED0 /* Tag.swift */; }; + C5EBE01C22F936CD5B48EA49BD93AF6C /* Emitter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30A0C615C516C99574041867877218AE /* Emitter.swift */; }; + CA2F30A6DB0BA01A0A1363532E9DAD05 /* StencilSwiftKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EF12766E3CE313B09FF2365BDA6AD83 /* StencilSwiftKit-dummy.m */; }; + CA9F63CDF78B4D865FE113ECF939F819 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2497E0C37C035DB8276C0C7335E3FC93 /* Cocoa.framework */; }; + CB673FD15270E993486E31EC8F39E4F9 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 11F7F2E3F010D24453E40821938EF8EC /* Foundation.framework */; }; + CE4A6B56838A53CAE6018752D58ED9C2 /* ForTag.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B35F4F78AEDBFD70430C6E66B6967C0 /* ForTag.swift */; }; + D0CE5D321BC71497185743DDF3BC223A /* StencilSwiftKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 162A87BCD210F24832A5CF1B6F010631 /* StencilSwiftKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D320D650D0468D800E2D5E8FDE4847E1 /* Filters+Strings+Base.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C53BCA381BB2AC46DD1973418B08F10 /* Filters+Strings+Base.swift */; }; + D63F18712B2E5DF706920706CABDA79F /* Filters+Numbers.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6CFDBB7D8D3305203977010F00A0840 /* Filters+Numbers.swift */; }; D642097D9CCA9F870AFD197AFFC348AD /* ArgumentDescription.swift in Sources */ = {isa = PBXBuildFile; fileRef = 785EC1A1645C54E9BC6D4ADCD0D71F58 /* ArgumentDescription.swift */; }; - D7FA856D0BD741FF0E8AFC962AB6C31B /* SwiftGenKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C2EF20A4DB9DEFCCD074183FC5E946C /* SwiftGenKit-dummy.m */; }; - DC96F18EFEF5B2C572092D9A206F8D5F /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 07FC6C46CE5410C97375995E800EB8D5 /* Cocoa.framework */; }; - DCD42E4B781417ABFD19E4552EADC632 /* Node.Mapping.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95321C2B6F04F839EE528FDA1FD957AB /* Node.Mapping.swift */; }; - DEC5553165AD49A8E658A9DB250C6057 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 07FC6C46CE5410C97375995E800EB8D5 /* Cocoa.framework */; }; - E056D0F76643ABA22E74E2E4D6414E01 /* Filters+Numbers.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6CFDBB7D8D3305203977010F00A0840 /* Filters+Numbers.swift */; }; - E112EEA7365C094B7C6EBD323CFCA1E0 /* yaml.h in Headers */ = {isa = PBXBuildFile; fileRef = 654F32E98AF505B5790AF4088CB39CF4 /* yaml.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E33425E4783FDCBC6C2F5C44E8BF8C72 /* yaml_private.h in Headers */ = {isa = PBXBuildFile; fileRef = ACE230C7D510107506915DF1C430B485 /* yaml_private.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E39D4048EBE0F3B80777F4BF016BA715 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 07FC6C46CE5410C97375995E800EB8D5 /* Cocoa.framework */; }; - E4211870C0758BDFFFD0EA115F5C78A6 /* Yams.h in Headers */ = {isa = PBXBuildFile; fileRef = C4FCAF1854F7DE6FFFC097B5AB6CD02C /* Yams.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E4E62CAEBDDEA43955898C5B4F62DCD2 /* Tag.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8C097E7409DB7A8F70A583EAF31CED0 /* Tag.swift */; }; - E879656CA0053CEEC396AFCE87291065 /* ColorsContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = E936EA14E9DD7E7C9181D25C57D7D712 /* ColorsContext.swift */; }; - EB6B7D50630CF36903ABA2CD8CFE3AB4 /* Filters.swift in Sources */ = {isa = PBXBuildFile; fileRef = 65448494AA8CB1E0CD303577A38D8FA5 /* Filters.swift */; }; - EB98103C4E2D799BBAAF3918559EC46F /* ColorsCLRFileParser.swift in Sources */ = {isa = PBXBuildFile; fileRef = C6F3ED9C6E5CE313C78CFA34CB3A96CF /* ColorsCLRFileParser.swift */; }; - EC5F23EE6C16A383DA925B9221C957FE /* reader.c in Sources */ = {isa = PBXBuildFile; fileRef = 0FCC66D44CB39A4E00908DC825BE0D74 /* reader.c */; }; + D98897FF735B0FC80600CEB3A790CC3C /* Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D9AAF1E88FCC9E5782B687856E331F3 /* Errors.swift */; }; + DC96F18EFEF5B2C572092D9A206F8D5F /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2497E0C37C035DB8276C0C7335E3FC93 /* Cocoa.framework */; }; + DCAB81E7167B6B1C6D70327BB5646138 /* IfTag.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3FDFFBC204429B3D5DB0F5F161B1FDE2 /* IfTag.swift */; }; + E169A81C2F41BCED00388A40ED096CAE /* dumper.c in Sources */ = {isa = PBXBuildFile; fileRef = F70DDD9AB16AE398F2D56301C4476401 /* dumper.c */; }; + E2C199F4825D94CC6F7914BC759798B9 /* FilterTag.swift in Sources */ = {isa = PBXBuildFile; fileRef = CDCA4ECC17AA890085A1CCE2D57D3E0F /* FilterTag.swift */; }; + E59B1D966751C0F0F0EBE1A1D10783D8 /* Stencil-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = EE218EEFCC4E6B9837BBF2FD65EF0E0E /* Stencil-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E9A4AD38A6BF512B0847EFAD0F2A8C4C /* api.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B893CA3066E0CA10E10978C5F9783DD /* api.c */; }; + EBBC3C09B8C09908DEA4A35A850B64B7 /* Filters+Strings+Lettercase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 649697F4D4D9393F1C016549EB5F887C /* Filters+Strings+Lettercase.swift */; }; + EEA94C043E8D17F89D0A03DFAACE9A6E /* PathKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0436538F42B0A2EC1C972F8EE47937E0 /* PathKit.framework */; }; F07AFBD36582C282B1704DD3C5EB266B /* Commands.swift in Sources */ = {isa = PBXBuildFile; fileRef = D2BD52841E9D1CCB63CFA94CD75F50AF /* Commands.swift */; }; - F1306C2FB8717ACD61219BB33DEC3C9A /* Pods-SwiftGen UnitTests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C3D5DAAC33C2ECA7ED2E7D7D1A136227 /* Pods-SwiftGen UnitTests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F160C8BCCA7336A5581E55423474DC40 /* Parser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7AD03FF2652C402BF2893C3783F28B9F /* Parser.swift */; }; - F346E679C615776312767FB4C162372C /* ForTag.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B35F4F78AEDBFD70430C6E66B6967C0 /* ForTag.swift */; }; - FAFB861D89FD88D7AC6CA21F37E7099C /* PathKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0566A8F86BD6CD0F51D9A9F6C40605F0 /* PathKit.framework */; }; - FC881C76E6D407C76CAB6543EC86268F /* AssetsCatalogContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = 68C3D1D9E8249FFAA2A3AECAB02E0835 /* AssetsCatalogContext.swift */; }; - FD1D899B855F8D32BD1EF546C9E752D6 /* Stencil.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D290D1316E81A473E4C5B29A39156538 /* Stencil.framework */; }; + F08DF928AC4B48DB7592DA882E646431 /* Resolver.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4893D79B81861C5D7ABF162235E549F /* Resolver.swift */; }; + FC73A0EFBAEA673B0990E883938B63CE /* Node.Mapping.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95321C2B6F04F839EE528FDA1FD957AB /* Node.Mapping.swift */; }; FD87F8764674EFAAF3AABCA2552E5127 /* libxmlParserOption.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52364B2E263056F32176DD83AED55048 /* libxmlParserOption.swift */; }; - FF02C56C01717A43F019F3489C22C8BB /* Parameters.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95EC2C27379036DB072DF82FB699F715 /* Parameters.swift */; }; - FFE07C26E4D24835823D309C89DBF33D /* Context.swift in Sources */ = {isa = PBXBuildFile; fileRef = D54A5C8C45C15FE257B87F9B215ED705 /* Context.swift */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 030722AA2C02082FB394D625E5A9CE09 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; - proxyType = 1; - remoteGlobalIDString = 06B746BF324CCB3FC37334F087173F0E; - remoteInfo = StencilSwiftKit; - }; - 127AEAE31EAA7A297AC6EA3EC2E14286 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; - proxyType = 1; - remoteGlobalIDString = BBB46569A79C52426939AF96DA290CF9; - remoteInfo = PathKit; - }; - 12B87EB469CDBDD6F36EF5D2D3E0BCBA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; - proxyType = 1; - remoteGlobalIDString = FFC20C82FD3265C58EDEBE8C64960764; - remoteInfo = Stencil; - }; - 1B05342AD65F8E78FC705DDA7BC739DC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0BD7DE1296FE81ADA9236153E912FCD8; - remoteInfo = SwiftGenKit; - }; - 1FE836021046727B226E255724B9031E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; - proxyType = 1; - remoteGlobalIDString = BBB46569A79C52426939AF96DA290CF9; - remoteInfo = PathKit; - }; - 2CE2047A3D83927BF584620DA9A3D7E6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; - proxyType = 1; - remoteGlobalIDString = C938BBC036F7B18E50D6A376B38F11DF; - remoteInfo = Yams; - }; - 4074D9A66F52253CD500460733C003DB /* PBXContainerItemProxy */ = { + 00AC427DB3BC822CFC59035E4A0B934C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; remoteGlobalIDString = 4D10E4FF5A483B852B47CCA0B994E340; remoteInfo = Kanna; }; - 4672DB2C36FCF35BC2653FC640B71C61 /* PBXContainerItemProxy */ = { + 0CEA13E7D783DF970F8C6D820505DBFF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = 06B746BF324CCB3FC37334F087173F0E; - remoteInfo = StencilSwiftKit; + remoteGlobalIDString = 8C34778C96A8C1AE1673F661EBB20C72; + remoteInfo = Yams; + }; + 0FC9CCC0D00055468A9239EDB3CDA2B5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = E1627DDAF1A0884D6F43093CF781AE6B; + remoteInfo = Stencil; + }; + 45402298802DE56EBB32D2D2CD01B8AA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = BBB46569A79C52426939AF96DA290CF9; + remoteInfo = PathKit; + }; + 488634AA85EC41FCAB830A56AA8DCDD3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = BBB46569A79C52426939AF96DA290CF9; + remoteInfo = PathKit; + }; + 4CD7962C1E73789DAD5936D7E520659B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8C34778C96A8C1AE1673F661EBB20C72; + remoteInfo = Yams; }; 53E87F9C0141E1509E9881FE8C46FF75 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -202,105 +170,84 @@ remoteGlobalIDString = BBB46569A79C52426939AF96DA290CF9; remoteInfo = PathKit; }; - 5B2F5A8AAD625D37843B3B060B014431 /* PBXContainerItemProxy */ = { + 69AF01D7AC54E1729894B2CCB3436252 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = E1627DDAF1A0884D6F43093CF781AE6B; + remoteInfo = Stencil; + }; + 9731DB32E176D244FC403A78D3E1E764 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = E1627DDAF1A0884D6F43093CF781AE6B; + remoteInfo = Stencil; + }; + 993B228CDC14CE158B7FBA1EAEF93056 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3750EDCA0E0EF4DE3FA18CEDFBEF5A4A; + remoteInfo = StencilSwiftKit; + }; + A210C2BC294DB10B5ADF8BCCBF8C4565 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4D10E4FF5A483B852B47CCA0B994E340; + remoteInfo = Kanna; + }; + AE7D1D52DC083BC4869EA843726D2B94 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; remoteGlobalIDString = BBB46569A79C52426939AF96DA290CF9; remoteInfo = PathKit; }; - 71609C3411CD568C845E4B506F3881F1 /* PBXContainerItemProxy */ = { + AF2B26CEBD186986C00C6B1498A7AFD1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3750EDCA0E0EF4DE3FA18CEDFBEF5A4A; + remoteInfo = StencilSwiftKit; + }; + C42786187B819E569C440AABF7095DEB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; remoteGlobalIDString = 12E0F84081ABA0678A40FCDF294E5A65; remoteInfo = Commander; }; - 7613AC519008C3AC75CFE303CCC87437 /* PBXContainerItemProxy */ = { + C532760249D54C6ECE73A476426CFCC8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = FFC20C82FD3265C58EDEBE8C64960764; + remoteGlobalIDString = E1627DDAF1A0884D6F43093CF781AE6B; remoteInfo = Stencil; }; - 7A0792C7FDE3779082D5FC189BCF8C47 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; - proxyType = 1; - remoteGlobalIDString = FFC20C82FD3265C58EDEBE8C64960764; - remoteInfo = Stencil; - }; - 8CAC71DA5B2E054A636908BF08772BB2 /* PBXContainerItemProxy */ = { + D3D414DEFF73232DEBCAEC9B5F867073 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; remoteGlobalIDString = BBB46569A79C52426939AF96DA290CF9; remoteInfo = PathKit; }; - 904CBE74D25D3D3C70F883F2A2B265CA /* PBXContainerItemProxy */ = { + E1A00E3B2B207E1BEB506D17DAD2C2E8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = 4D10E4FF5A483B852B47CCA0B994E340; - remoteInfo = Kanna; + remoteGlobalIDString = BBB46569A79C52426939AF96DA290CF9; + remoteInfo = PathKit; }; - 960DD5AC386A2A4B8D84D6149EF3EEE8 /* PBXContainerItemProxy */ = { + EA7D13B03648CBA089510C61AA1DD60F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = 0BD7DE1296FE81ADA9236153E912FCD8; - remoteInfo = SwiftGenKit; - }; - 9731DB32E176D244FC403A78D3E1E764 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; - proxyType = 1; - remoteGlobalIDString = FFC20C82FD3265C58EDEBE8C64960764; - remoteInfo = Stencil; - }; - A4AB6216C2AB8BFE22408478BEF40CD8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; - proxyType = 1; - remoteGlobalIDString = C938BBC036F7B18E50D6A376B38F11DF; - remoteInfo = Yams; - }; - AF2B26CEBD186986C00C6B1498A7AFD1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; - proxyType = 1; - remoteGlobalIDString = 06B746BF324CCB3FC37334F087173F0E; + remoteGlobalIDString = 3750EDCA0E0EF4DE3FA18CEDFBEF5A4A; remoteInfo = StencilSwiftKit; }; - B1A40DCDDC3239727137F6A92B556C3C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; - proxyType = 1; - remoteGlobalIDString = BBB46569A79C52426939AF96DA290CF9; - remoteInfo = PathKit; - }; - BF5D99A62A0F12FBA6F4FE569A080B4D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4D10E4FF5A483B852B47CCA0B994E340; - remoteInfo = Kanna; - }; - C54563564FA7B7B38018BF8D65D565DD /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0BD7DE1296FE81ADA9236153E912FCD8; - remoteInfo = SwiftGenKit; - }; - F0DD840D2B5525BD876695BFFDDD2DAF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4D10E4FF5A483B852B47CCA0B994E340; - remoteInfo = Kanna; - }; - F8F346515511130C83B197A03D9B7AF2 /* PBXContainerItemProxy */ = { + EDE171B56D0D3A2E944241215B37C987 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; @@ -310,222 +257,198 @@ /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ - 0049391F861EB104D0D5FAE4A886DB38 /* Pods-Templates UnitTests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Templates UnitTests-frameworks.sh"; sourceTree = ""; }; - 00721322E4AFCA7EBB69D2F86EFDD11C /* Pods-swiftgen-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-swiftgen-resources.sh"; sourceTree = ""; }; 025B08582C703DF9518C856AE412AB56 /* Kanna-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Kanna-umbrella.h"; sourceTree = ""; }; - 0566A8F86BD6CD0F51D9A9F6C40605F0 /* PathKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = PathKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 07FC6C46CE5410C97375995E800EB8D5 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.12.sdk/System/Library/Frameworks/Cocoa.framework; sourceTree = DEVELOPER_DIR; }; + 0436538F42B0A2EC1C972F8EE47937E0 /* PathKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = PathKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 082021ECFC4843EAE4199FAAAA16092C /* Node.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Node.swift; path = Sources/Node.swift; sourceTree = ""; }; - 0D43B2FD62EC920BA081D8336202D2F8 /* Pods-swiftgen.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = "Pods-swiftgen.modulemap"; sourceTree = ""; }; - 0D4488AD29F301A89F9C2E260B7C0D95 /* Pods-Templates UnitTests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Templates UnitTests-acknowledgements.markdown"; sourceTree = ""; }; + 0EAEFA132424441FD7DA05ED8473150D /* Pods-Templates UnitTests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Templates UnitTests-acknowledgements.plist"; sourceTree = ""; }; 0FCC66D44CB39A4E00908DC825BE0D74 /* reader.c */ = {isa = PBXFileReference; includeInIndex = 1; name = reader.c; path = Sources/CYaml/src/reader.c; sourceTree = ""; }; + 1112FA129F4BEC77352CE7A855EA3B23 /* Pods-SwiftGenKit UnitTests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-SwiftGenKit UnitTests-acknowledgements.markdown"; sourceTree = ""; }; 11DF79F39608A675A9A488D2CFBA5994 /* Node.Sequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Node.Sequence.swift; path = Sources/Yams/Node.Sequence.swift; sourceTree = ""; }; + 11F7F2E3F010D24453E40821938EF8EC /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.12.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 124DCE74AFEDFC423CD3FB28B6FEA2DB /* CommandType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CommandType.swift; path = Sources/Commander/CommandType.swift; sourceTree = ""; }; 14ED035F9943C01C20306875C7A8CE7D /* StencilSwiftTemplate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StencilSwiftTemplate.swift; path = Sources/StencilSwiftTemplate.swift; sourceTree = ""; }; 162A87BCD210F24832A5CF1B6F010631 /* StencilSwiftKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "StencilSwiftKit-umbrella.h"; sourceTree = ""; }; 175D9744F551585CB9E4E0C94E09083F /* parser.c */ = {isa = PBXFileReference; includeInIndex = 1; name = parser.c; path = Sources/CYaml/src/parser.c; sourceTree = ""; }; 18281E8CC7F314093D3EF479EDCC2089 /* PathKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PathKit-prefix.pch"; sourceTree = ""; }; 1918888618379BDB4771415C98292B3E /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 1A3601DA809D1A0AB97708859D3713C1 /* Pods-SwiftGen UnitTests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-SwiftGen UnitTests-acknowledgements.markdown"; sourceTree = ""; }; 1A4D526612A21B6326D96D0DB7A848B7 /* SwiftIdentifier.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftIdentifier.swift; path = Sources/SwiftIdentifier.swift; sourceTree = ""; }; + 1BDDFB494759941860515D1F0C00BFDA /* Pods-SwiftGenKit UnitTests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-SwiftGenKit UnitTests-acknowledgements.plist"; sourceTree = ""; }; 1C53BCA381BB2AC46DD1973418B08F10 /* Filters+Strings+Base.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Filters+Strings+Base.swift"; path = "Sources/Filters+Strings+Base.swift"; sourceTree = ""; }; + 1E22BE4D7E672E01490B74A1F26BE97D /* Pods-Templates UnitTests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Templates UnitTests-resources.sh"; sourceTree = ""; }; + 1E6966294EA0A4DDD0E2C1DBEB428E7E /* Pods-SwiftGen UnitTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SwiftGen UnitTests.release.xcconfig"; sourceTree = ""; }; 1E8ECFF2FC462ABB13AF7CAB407FE1C5 /* Command.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Command.swift; path = Sources/Commander/Command.swift; sourceTree = ""; }; 1EF12766E3CE313B09FF2365BDA6AD83 /* StencilSwiftKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "StencilSwiftKit-dummy.m"; sourceTree = ""; }; 219C90464CF6DF8E36F74B98547A9C6D /* PathKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = PathKit.modulemap; sourceTree = ""; }; - 22FEFEF52EA31373B599B5D95270F253 /* Pods-swiftgen-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-swiftgen-frameworks.sh"; sourceTree = ""; }; + 226C39393337C59A34C1E31327819F02 /* Pods-SwiftGenKit UnitTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SwiftGenKit UnitTests.debug.xcconfig"; sourceTree = ""; }; 2390C963CFEF01B0C6E2DFB2D3717A89 /* Stencil.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Stencil.xcconfig; sourceTree = ""; }; - 28661CF1F039CC008169556F00F81A10 /* Pods-SwiftGenKit UnitTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SwiftGenKit UnitTests.debug.xcconfig"; sourceTree = ""; }; + 2497E0C37C035DB8276C0C7335E3FC93 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.12.sdk/System/Library/Frameworks/Cocoa.framework; sourceTree = DEVELOPER_DIR; }; + 259A75ACFABA05D92F45F2EE11DC3633 /* Pods-Templates UnitTests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Templates UnitTests-umbrella.h"; sourceTree = ""; }; + 26A5017A05425BE615D73D113E359F3D /* Pods-SwiftGenKit-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-SwiftGenKit-acknowledgements.markdown"; sourceTree = ""; }; 292B03EAEFC471FA146A542F6E29568C /* libxmlHTMLDocument.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = libxmlHTMLDocument.swift; path = Sources/Kanna/libxmlHTMLDocument.swift; sourceTree = ""; }; 2A149BDD7930FEA0653E8220AFB748C4 /* Kanna-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Kanna-prefix.pch"; sourceTree = ""; }; + 2A1D3FA16B2313A4B5394A5A04F4ADBF /* Pods-SwiftGenKit UnitTests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-SwiftGenKit UnitTests-dummy.m"; sourceTree = ""; }; 2B77D32FEAF37ECBC3B8D4F337954D64 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 2C2EF20A4DB9DEFCCD074183FC5E946C /* SwiftGenKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SwiftGenKit-dummy.m"; sourceTree = ""; }; - 2DF84BE2DE94D986A8EACE7D5EC56693 /* Pods_SwiftGenKit_UnitTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_SwiftGenKit_UnitTests.framework; path = "Pods-SwiftGenKit UnitTests.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; + 2BEB7E8B8E2EB4B568546ED128EF278C /* Pods-Templates UnitTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Templates UnitTests.release.xcconfig"; sourceTree = ""; }; + 2F0AA956E32A369C46A15D94571016A9 /* Pods_Templates_UnitTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_Templates_UnitTests.framework; path = "Pods-Templates UnitTests.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; + 2F388055681AE2C8A8283D9C07A7455F /* Pods-Templates UnitTests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Templates UnitTests-frameworks.sh"; sourceTree = ""; }; + 302F7901636DDABB479FC9971C641DB1 /* Pods-SwiftGen UnitTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SwiftGen UnitTests.debug.xcconfig"; sourceTree = ""; }; 30A0C615C516C99574041867877218AE /* Emitter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Emitter.swift; path = Sources/Yams/Emitter.swift; sourceTree = ""; }; - 30EF8C11EA936E671AB620245DAC16C9 /* FontsContext.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = FontsContext.swift; sourceTree = ""; }; 31286920C785B49282BFD679FC92D177 /* StencilSwiftKit.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = StencilSwiftKit.xcconfig; sourceTree = ""; }; 317782A9966145C3410FB4EA6AF1396C /* Commander-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Commander-umbrella.h"; sourceTree = ""; }; + 3868CDF0DC7FEAADF14F05A8B3C4D43D /* Pods-SwiftGen UnitTests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-SwiftGen UnitTests-umbrella.h"; sourceTree = ""; }; 38DAAE8CBE003D50930D22DB07258E6F /* Yams-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yams-prefix.pch"; sourceTree = ""; }; - 3B0D9CC37D75520638102982C82F78D1 /* Pods-SwiftGen UnitTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SwiftGen UnitTests.debug.xcconfig"; sourceTree = ""; }; - 3CC5467FF087318699606774B515B36F /* SwiftGenKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SwiftGenKit.framework; path = SwiftGenKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 3D14327F1C799583B4D81D6D02D87824 /* Pods-SwiftGen UnitTests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-SwiftGen UnitTests-dummy.m"; sourceTree = ""; }; - 3D5A5DAB9EEB325938EA6A57610AA2D9 /* Pods-SwiftGenKit UnitTests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = "Pods-SwiftGenKit UnitTests.modulemap"; sourceTree = ""; }; + 3D70A26B826329238B84D17159AADCD6 /* Pods-SwiftGenKit UnitTests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = "Pods-SwiftGenKit UnitTests.modulemap"; sourceTree = ""; }; 3D9AAF1E88FCC9E5782B687856E331F3 /* Errors.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Errors.swift; path = Sources/Errors.swift; sourceTree = ""; }; 3FD9BDCCE39B3FBB2252CA0F8A0C30D1 /* PathKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PathKit-umbrella.h"; sourceTree = ""; }; 3FDFFBC204429B3D5DB0F5F161B1FDE2 /* IfTag.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IfTag.swift; path = Sources/IfTag.swift; sourceTree = ""; }; 400EFBD5A01C135F0269EDD77A003C80 /* Node.Scalar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Node.Scalar.swift; path = Sources/Yams/Node.Scalar.swift; sourceTree = ""; }; + 4030A82F79CDB065F73B6D85D4C760B0 /* Stencil.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Stencil.framework; path = Stencil.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 40C5ADE511F57031BE1F8E97EAB6289D /* emitter.c */ = {isa = PBXFileReference; includeInIndex = 1; name = emitter.c; path = Sources/CYaml/src/emitter.c; sourceTree = ""; }; 41536736EF3D70C26B6DACD02B0DBF12 /* Environment.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Environment.swift; path = Sources/Environment.swift; sourceTree = ""; }; + 41D3F35CD6779B56B754BBB6A7EF30C1 /* Pods-SwiftGen UnitTests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = "Pods-SwiftGen UnitTests.modulemap"; sourceTree = ""; }; 439E85784F90FF6019988A492FF9FF15 /* Inheritence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Inheritence.swift; path = Sources/Inheritence.swift; sourceTree = ""; }; 439F3D303169C860333EEB319386123C /* Mark.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Mark.swift; path = Sources/Yams/Mark.swift; sourceTree = ""; }; 43A3EC09157425330ABE959C043D650E /* Lexer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Lexer.swift; path = Sources/Lexer.swift; sourceTree = ""; }; + 43E8A2B7DD1716ACE5A0A34EC8E93681 /* Yams.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Yams.framework; path = Yams.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 446C9E1F3C02E71C3E0A45793541B9C6 /* libxmlHTMLNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = libxmlHTMLNode.swift; path = Sources/Kanna/libxmlHTMLNode.swift; sourceTree = ""; }; + 45C23FF51DBD123B2B6A7C92F806495E /* Pods-SwiftGenKit UnitTests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-SwiftGenKit UnitTests-frameworks.sh"; sourceTree = ""; }; + 465F3FB8FB0AB76BC66B6F293A5433CB /* Pods-SwiftGenKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = "Pods-SwiftGenKit.modulemap"; sourceTree = ""; }; 47D0393BFA6E90F6DEE7DFC833B52E37 /* Kanna.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Kanna.swift; path = Sources/Kanna/Kanna.swift; sourceTree = ""; }; + 47DAD28A9981D58495B273AEA16D8089 /* Pods-SwiftGenKit UnitTests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-SwiftGenKit UnitTests-resources.sh"; sourceTree = ""; }; 48E8C1354E2301A747D18FE57531510E /* Filters+Strings+Mutations.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Filters+Strings+Mutations.swift"; path = "Sources/Filters+Strings+Mutations.swift"; sourceTree = ""; }; 4BA10B00A429E3DEBE56E716AE6A4741 /* CallMacroNodes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CallMacroNodes.swift; path = Sources/CallMacroNodes.swift; sourceTree = ""; }; 4EF63C4FAFEEC9DFC4CF6FC23CE6B55D /* Commander-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Commander-dummy.m"; sourceTree = ""; }; + 50F9FB22A2041E9431DF32A841D8D1B2 /* Pods-swiftgen.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-swiftgen.debug.xcconfig"; sourceTree = ""; }; 52364B2E263056F32176DD83AED55048 /* libxmlParserOption.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = libxmlParserOption.swift; path = Sources/Kanna/libxmlParserOption.swift; sourceTree = ""; }; - 52A88E569E0950EDFED8B4BBCA10FC9D /* Kanna.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Kanna.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 553EADAA17905D2B6886FFF5F9358DF9 /* Commander.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = Commander.modulemap; sourceTree = ""; }; 55619476435E21F77618F79DB6452FE5 /* Filters.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Filters.swift; path = Sources/Filters.swift; sourceTree = ""; }; + 56F1E30EEBB2703D2964063FF13F6A9C /* Pods_SwiftGen_UnitTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_SwiftGen_UnitTests.framework; path = "Pods-SwiftGen UnitTests.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; 57127B9664DDBF9DD147D1448016BD00 /* YamlError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = YamlError.swift; path = Sources/Yams/YamlError.swift; sourceTree = ""; }; + 5ACCF6606E5B78582C2390734472FEB7 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 5C127F01C6574565A24D60AEFBAB5667 /* Kanna-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Kanna-dummy.m"; sourceTree = ""; }; - 5D6A2BCC6A0A91B5C44E1ADCAED76243 /* Pods-SwiftGenKit UnitTests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-SwiftGenKit UnitTests-umbrella.h"; sourceTree = ""; }; - 5E2449C59161EF7593E19A01DC7C010B /* StoryboardsContext.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = StoryboardsContext.swift; sourceTree = ""; }; - 5EB396F3E0C100C49344889DC3DA1A5D /* StencilSwiftKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = StencilSwiftKit.framework; path = StencilSwiftKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 5D7F224BE778FD4DEA0076AC55FF296A /* Pods-SwiftGenKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-SwiftGenKit-umbrella.h"; sourceTree = ""; }; + 60E9A70E65EAEE51E8DD0CF3860C9C4F /* Pods-SwiftGenKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SwiftGenKit.release.xcconfig"; sourceTree = ""; }; 615AACF9A58CC7D650F1CB3637A03CE2 /* Template.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Template.swift; path = Sources/Template.swift; sourceTree = ""; }; + 62549533019D1D891840C09DA2274C63 /* Pods-SwiftGenKit-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-SwiftGenKit-resources.sh"; sourceTree = ""; }; 63A247AD412A818CAF48C1D997C51510 /* Variable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Variable.swift; path = Sources/Variable.swift; sourceTree = ""; }; 649697F4D4D9393F1C016549EB5F887C /* Filters+Strings+Lettercase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Filters+Strings+Lettercase.swift"; path = "Sources/Filters+Strings+Lettercase.swift"; sourceTree = ""; }; - 64BE17B237F085BA10E87588EC0568D1 /* Kanna.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Kanna.framework; path = Kanna.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 65448494AA8CB1E0CD303577A38D8FA5 /* Filters.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Filters.swift; path = Sources/Filters.swift; sourceTree = ""; }; 654F32E98AF505B5790AF4088CB39CF4 /* yaml.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = yaml.h; path = Sources/CYaml/include/yaml.h; sourceTree = ""; }; 67116F110DE5C2F0C81F8690D4E70102 /* CYaml.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CYaml.h; path = Sources/CYaml/include/CYaml.h; sourceTree = ""; }; - 672DD2AC7A4AD985FD3A2AAFC4F069EA /* FontsParser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = FontsParser.swift; sourceTree = ""; }; - 68C3D1D9E8249FFAA2A3AECAB02E0835 /* AssetsCatalogContext.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AssetsCatalogContext.swift; sourceTree = ""; }; - 6939C97A7765146A3F01BC23B897D412 /* Pods-swiftgen.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-swiftgen.release.xcconfig"; sourceTree = ""; }; - 698C770FB450908FBD23B4FB3A69395D /* StringsParser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = StringsParser.swift; sourceTree = ""; }; + 68368BA2432AD9191583C179466E226D /* Pods-SwiftGen UnitTests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-SwiftGen UnitTests-acknowledgements.plist"; sourceTree = ""; }; + 68D95C5D52F98D9C730AFDF1CE31D8A7 /* Pods-SwiftGen UnitTests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-SwiftGen UnitTests-dummy.m"; sourceTree = ""; }; 6D4B267893661656A8E7626F2A78BAF0 /* Context.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Context.swift; path = Sources/Context.swift; sourceTree = ""; }; - 6DC9CE80A93B60F2B20E02969153E0F5 /* Pods-swiftgen-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-swiftgen-acknowledgements.plist"; sourceTree = ""; }; + 6DA6D8381A53A7DEB653F63F6EBEDCFB /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 6FFA501B624BEA424F5953EC0DE874A6 /* NowTag.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NowTag.swift; path = Sources/NowTag.swift; sourceTree = ""; }; 704E8C9D5FAAA12103CC26FF5D956FDE /* Expression.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Expression.swift; path = Sources/Expression.swift; sourceTree = ""; }; - 71006898C6FF630B2AA830AC3A87BC20 /* ColorsXMLFileParser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ColorsXMLFileParser.swift; sourceTree = ""; }; - 71486E32631AE7A1DB1B9B77C6FBCAFB /* SwiftGenKit.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftGenKit.xcconfig; sourceTree = ""; }; 723C47BD138E0732E599128BB56BEDB8 /* loader.c */ = {isa = PBXFileReference; includeInIndex = 1; name = loader.c; path = Sources/CYaml/src/loader.c; sourceTree = ""; }; - 72DE9A8A4EA8D65357F2BED49F6A7DAD /* Pods-SwiftGen UnitTests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-SwiftGen UnitTests-resources.sh"; sourceTree = ""; }; + 7279FA75F5AB408E0C67C9A22A5ABF8A /* Pods-SwiftGen UnitTests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-SwiftGen UnitTests-resources.sh"; sourceTree = ""; }; 74237F9BDED57BECB2CEF42219AC002E /* Representer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Representer.swift; path = Sources/Yams/Representer.swift; sourceTree = ""; }; + 754F0C5849301279ABBCC626C08ECF10 /* PathKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = PathKit.framework; path = PathKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 75C9DBDB3DA302827FE716C21B1399BD /* Constructor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Constructor.swift; path = Sources/Yams/Constructor.swift; sourceTree = ""; }; - 770B749C8DEF28EDC1A7FDC7C45BADE6 /* Pods-SwiftGen UnitTests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = "Pods-SwiftGen UnitTests.modulemap"; sourceTree = ""; }; 785EC1A1645C54E9BC6D4ADCD0D71F58 /* ArgumentDescription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ArgumentDescription.swift; path = Sources/Commander/ArgumentDescription.swift; sourceTree = ""; }; + 793C985117487AB482BE3E08D415235C /* Pods_SwiftGenKit_UnitTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_SwiftGenKit_UnitTests.framework; path = "Pods-SwiftGenKit UnitTests.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; 79443D7B9D5596321DBA2A94D95D86A1 /* Loader.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Loader.swift; path = Sources/Loader.swift; sourceTree = ""; }; - 7963910D8D53D6526D8AC5678D90DDA9 /* Commander.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Commander.framework; path = Commander.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 7AD03FF2652C402BF2893C3783F28B9F /* Parser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Parser.swift; path = Sources/Parser.swift; sourceTree = ""; }; 7B893CA3066E0CA10E10978C5F9783DD /* api.c */ = {isa = PBXFileReference; includeInIndex = 1; name = api.c; path = Sources/CYaml/src/api.c; sourceTree = ""; }; 7B9146D26323341976053A5B89811BEC /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 7BB0EB5E177673E02428232D19DB4CF4 /* Pods_swiftgen.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_swiftgen.framework; path = "Pods-swiftgen.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; - 7D808030D0B4B98B95A15EA68A091B03 /* Pods-SwiftGenKit UnitTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SwiftGenKit UnitTests.release.xcconfig"; sourceTree = ""; }; + 7E60F9CB20713F7E04E523534619D8CE /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 81B2B6E40F4D4080F65641DD290FFEA6 /* CSS.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CSS.swift; path = Sources/Kanna/CSS.swift; sourceTree = ""; }; + 8262A975210A47D877CE5FEF0B5F83EB /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 84372F83E916A7CDF372417B40BA21DF /* Tokenizer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Tokenizer.swift; path = Sources/Tokenizer.swift; sourceTree = ""; }; - 8512CDB165C3BE376ADD1D7D51A25FFC /* Pods-SwiftGen UnitTests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-SwiftGen UnitTests-frameworks.sh"; sourceTree = ""; }; + 85CE4280DBFD1F86700915CEE0A0F8A9 /* Pods-swiftgen-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-swiftgen-acknowledgements.plist"; sourceTree = ""; }; + 88D6EE2AE8D42DF5AD02713B6CA0073B /* Pods-Templates UnitTests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Templates UnitTests-acknowledgements.markdown"; sourceTree = ""; }; 8995005E94A9629D16F59C2D10CED0AC /* Group.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Group.swift; path = Sources/Commander/Group.swift; sourceTree = ""; }; 8B35F4F78AEDBFD70430C6E66B6967C0 /* ForTag.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ForTag.swift; path = Sources/ForTag.swift; sourceTree = ""; }; + 8BB41F5F05703459C3F944B8F833D827 /* Pods_SwiftGenKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_SwiftGenKit.framework; path = "Pods-SwiftGenKit.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; + 8BB4B20E9CA05778A07FF0804C54BA70 /* Pods-swiftgen-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-swiftgen-umbrella.h"; sourceTree = ""; }; 8BD263F0AE275611C06B84F936F104EE /* CommandRunner.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CommandRunner.swift; path = Sources/Commander/CommandRunner.swift; sourceTree = ""; }; 8BE832C844D2DDE07D727B6279DCE58D /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 8DE740DE0C0F3F344E56671CA0D7B5E1 /* Pods-swiftgen-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-swiftgen-umbrella.h"; sourceTree = ""; }; - 91E889CB06E8813DE6BC4636771D42CF /* Pods-SwiftGen UnitTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SwiftGen UnitTests.release.xcconfig"; sourceTree = ""; }; 925DCA1FF058968B15FF4C6DDBBA2EBC /* ArgumentParser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ArgumentParser.swift; path = Sources/Commander/ArgumentParser.swift; sourceTree = ""; }; - 92636EA964583141C0EFC1EA7AB4169F /* ColorsParser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ColorsParser.swift; sourceTree = ""; }; 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 946CD195E48A7A3B6323AD0D0D835350 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 95321C2B6F04F839EE528FDA1FD957AB /* Node.Mapping.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Node.Mapping.swift; path = Sources/Yams/Node.Mapping.swift; sourceTree = ""; }; 95EC2C27379036DB072DF82FB699F715 /* Parameters.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Parameters.swift; path = Sources/Parameters.swift; sourceTree = ""; }; - 967B0255EEBAD5C83E67E7BDD2FBEB2D /* Pods-SwiftGenKit UnitTests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-SwiftGenKit UnitTests-acknowledgements.markdown"; sourceTree = ""; }; - 9C0BA96CC10A64F3C84F03ABF789D785 /* Pods-swiftgen.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-swiftgen.debug.xcconfig"; sourceTree = ""; }; - 9E3E34CF1DC913D6240DA6D5B1E0D526 /* StoryboardParser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = StoryboardParser.swift; sourceTree = ""; }; + 9A68FA9661EC6B4BA5415DDD474F7F00 /* Stencil.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Stencil.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 9C6A666CCF12210EFB2821B8F9908DDA /* Pods-swiftgen.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = "Pods-swiftgen.modulemap"; sourceTree = ""; }; A1E3FAC5DDDD0A48F76368D37E61299D /* Include.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Include.swift; path = Sources/Include.swift; sourceTree = ""; }; A256C0900E7ADB4B8C91773A738588B7 /* StencilSwiftKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "StencilSwiftKit-prefix.pch"; sourceTree = ""; }; + A2D9985BCA9FF5E0930396BA94076FC1 /* Pods-SwiftGenKit UnitTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SwiftGenKit UnitTests.release.xcconfig"; sourceTree = ""; }; A2F4E2E72DE36318F3A3A6CDB5E11F9F /* MapNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MapNode.swift; path = Sources/MapNode.swift; sourceTree = ""; }; A337CC7818D56C8663162F128B5A7A48 /* Yams.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = Yams.modulemap; sourceTree = ""; }; A6BA01D5AE011D7457C35635F9D824BF /* Filters+Strings+Boolean.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Filters+Strings+Boolean.swift"; path = "Sources/Filters+Strings+Boolean.swift"; sourceTree = ""; }; - A7C3F5FA4768AF1D745DED193A2B3803 /* ColorsTXTFileParser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ColorsTXTFileParser.swift; sourceTree = ""; }; A8372F79805E8B279CDAAC367A08F658 /* PathKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "PathKit-dummy.m"; sourceTree = ""; }; - A84E3ACC9C8D98444DCA3DFD982B2018 /* Pods-Templates UnitTests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Templates UnitTests-umbrella.h"; sourceTree = ""; }; A8C097E7409DB7A8F70A583EAF31CED0 /* Tag.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Tag.swift; path = Sources/Yams/Tag.swift; sourceTree = ""; }; A958AD0406CDA27C645A39B7B0583442 /* ArgumentConvertible.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ArgumentConvertible.swift; path = Sources/Commander/ArgumentConvertible.swift; sourceTree = ""; }; AA277005907B49BDAA60237F07179649 /* Stencil.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = Stencil.modulemap; sourceTree = ""; }; - ABDB1BA4DB332164A4278A5B0A322C36 /* Yams.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Yams.framework; path = Yams.framework; sourceTree = BUILT_PRODUCTS_DIR; }; ACE230C7D510107506915DF1C430B485 /* yaml_private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = yaml_private.h; path = Sources/CYaml/src/yaml_private.h; sourceTree = ""; }; - B10399A62F4AE41E794269D6AB35BA6E /* Pods-Templates UnitTests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = "Pods-Templates UnitTests.modulemap"; sourceTree = ""; }; - B23432BA840F820120E1FB9A42AF4C63 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - B360ABDDD237BE1DAF300C0DE06C209F /* Parser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Parser.swift; sourceTree = ""; }; + B1842BEE902BC050563A3C2DBEF1C665 /* Pods-Templates UnitTests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = "Pods-Templates UnitTests.modulemap"; sourceTree = ""; }; B4893D79B81861C5D7ABF162235E549F /* Resolver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Resolver.swift; path = Sources/Yams/Resolver.swift; sourceTree = ""; }; B569D9D0B5C0DFC2C4EB89F3238C2DE5 /* Kanna.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = Kanna.modulemap; sourceTree = ""; }; - B6F59BB3C13C9610CBF27C54C52195D7 /* Pods-SwiftGenKit UnitTests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-SwiftGenKit UnitTests-resources.sh"; sourceTree = ""; }; - B7995FE659F376DE956FFEF77CC53528 /* Pods-Templates UnitTests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Templates UnitTests-dummy.m"; sourceTree = ""; }; - B7D636F03FF63263B161F51301223ED5 /* PathKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = PathKit.framework; path = PathKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + B774BBAFB96E6AE495302E83F6BBC922 /* Kanna.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Kanna.framework; path = Kanna.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + B83DF6A2CB696A30381BED81EFF648E0 /* Pods-swiftgen.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-swiftgen.release.xcconfig"; sourceTree = ""; }; B9FF930762AEFCD59EE294322B0FA60F /* Yams-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Yams-dummy.m"; sourceTree = ""; }; - BAF62C8CF30DE46CA89C8F93C4EB1EAA /* Pods-Templates UnitTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Templates UnitTests.release.xcconfig"; sourceTree = ""; }; + BB5CAEE4ABFB9A414BC70AA5A0CBF78D /* StencilSwiftKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = StencilSwiftKit.framework; path = StencilSwiftKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; BBC129142F5A3B71AE8E280D56AAA0B8 /* scanner.c */ = {isa = PBXFileReference; includeInIndex = 1; name = scanner.c; path = Sources/CYaml/src/scanner.c; sourceTree = ""; }; BBD2DAA77CBCE64F0961AE0253ABF464 /* SetNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SetNode.swift; path = Sources/SetNode.swift; sourceTree = ""; }; BDA38753471B5DFE6D9EA06FE8A00A22 /* PathKit.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PathKit.xcconfig; sourceTree = ""; }; C013CA6D956CDF6428A12E449F3B687A /* Parser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Parser.swift; path = Sources/Yams/Parser.swift; sourceTree = ""; }; - C20FA20FF8835D7D786FC3FD75A2F258 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + C22921190966BAE904BC8717B83C01F9 /* Pods-SwiftGenKit-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-SwiftGenKit-acknowledgements.plist"; sourceTree = ""; }; C2DEB84B9FDBFB12F4D246BEE98DF613 /* Environment.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Environment.swift; path = Sources/Environment.swift; sourceTree = ""; }; - C3D5DAAC33C2ECA7ED2E7D7D1A136227 /* Pods-SwiftGen UnitTests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-SwiftGen UnitTests-umbrella.h"; sourceTree = ""; }; + C301DABEC77D714A8333E8FD5D2ACB26 /* Pods-SwiftGenKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SwiftGenKit.debug.xcconfig"; sourceTree = ""; }; C4FCAF1854F7DE6FFFC097B5AB6CD02C /* Yams.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yams.h; path = Sources/Yams/Yams.h; sourceTree = ""; }; C504292BF3E67C07BD5807029A465074 /* Stencil-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Stencil-prefix.pch"; sourceTree = ""; }; - C6F3ED9C6E5CE313C78CFA34CB3A96CF /* ColorsCLRFileParser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ColorsCLRFileParser.swift; sourceTree = ""; }; C7812A9A5D8897B9272D029F97AB5F45 /* Kanna.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Kanna.h; path = Sources/Kanna/Kanna.h; sourceTree = ""; }; - CA97BE741C513984164BFE5385E66978 /* Pods-swiftgen-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-swiftgen-acknowledgements.markdown"; sourceTree = ""; }; - CB11DD7EA2976EC4FA27D3E8C9474C6B /* Pods-SwiftGenKit UnitTests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-SwiftGenKit UnitTests-dummy.m"; sourceTree = ""; }; + CA08FF84BCAE78FB75EAEA286542075F /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + CA63F140BD15CE114B51EFF5452D1092 /* Commander.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Commander.framework; path = Commander.framework; sourceTree = BUILT_PRODUCTS_DIR; }; CBAECC2E168C6BECB5330A3A2DA3622B /* Kanna.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Kanna.xcconfig; sourceTree = ""; }; CDCA4ECC17AA890085A1CCE2D57D3E0F /* FilterTag.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FilterTag.swift; path = Sources/FilterTag.swift; sourceTree = ""; }; CE3411F9F120D23D157F6A272D64CE04 /* Commander-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Commander-prefix.pch"; sourceTree = ""; }; - CE45E7FB4E932831DBDA9B3EECC22822 /* Pods-Templates UnitTests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Templates UnitTests-resources.sh"; sourceTree = ""; }; - D0835423EE036D3BD1448C0BBA814FBD /* Pods-swiftgen-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-swiftgen-dummy.m"; sourceTree = ""; }; - D290D1316E81A473E4C5B29A39156538 /* Stencil.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Stencil.framework; sourceTree = BUILT_PRODUCTS_DIR; }; D2BD52841E9D1CCB63CFA94CD75F50AF /* Commands.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Commands.swift; path = Sources/Commander/Commands.swift; sourceTree = ""; }; D54A5C8C45C15FE257B87F9B215ED705 /* Context.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Context.swift; path = Sources/Context.swift; sourceTree = ""; }; - D58745F3FACA2D18464F96FCC2C7E325 /* Stencil.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Stencil.framework; path = Stencil.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + D69889E19D46E35A0B1D1B5A14F9872F /* Pods-swiftgen-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-swiftgen-acknowledgements.markdown"; sourceTree = ""; }; D6CFDBB7D8D3305203977010F00A0840 /* Filters+Numbers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Filters+Numbers.swift"; path = "Sources/Filters+Numbers.swift"; sourceTree = ""; }; - D705C219C0817969FA2FCA4865BC094B /* SwiftGenKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = SwiftGenKit.modulemap; sourceTree = ""; }; DA65A78D56FD870A815375290427FC5F /* Extension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Extension.swift; path = Sources/Extension.swift; sourceTree = ""; }; - DC8F4C4B17AFF86DFABDAB77BAE1866D /* Pods_SwiftGen_UnitTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_SwiftGen_UnitTests.framework; path = "Pods-SwiftGen UnitTests.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; DCCD3FAA90621AC6D16E2554D79FE74D /* Node.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Node.swift; path = Sources/Yams/Node.swift; sourceTree = ""; }; - DEF9C2BEF79DECAFA8EE3CE82CFE7DEB /* Pods-SwiftGenKit UnitTests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-SwiftGenKit UnitTests-acknowledgements.plist"; sourceTree = ""; }; - DFE07A071C123AB075C3B4C591DCC152 /* ColorsJSONFileParser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ColorsJSONFileParser.swift; sourceTree = ""; }; - E2A49F72B283554766D294CBF805CE07 /* StringsContext.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = StringsContext.swift; sourceTree = ""; }; - E45C1F1FAA21BFBD6BB4F1422A38875B /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - E504DC1E915D0C194A22434E87C7F698 /* SwiftGenKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftGenKit-prefix.pch"; sourceTree = ""; }; - E6775BDE84134B9B3939A6572895F0B5 /* AssetsCatalogParser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AssetsCatalogParser.swift; sourceTree = ""; }; + DE1D89BEA7B52BFAA6C42A09769BB8D0 /* Pods-swiftgen-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-swiftgen-resources.sh"; sourceTree = ""; }; + DEC43438FA64AC6DC5A29F4D8BB86401 /* Pods-SwiftGenKit UnitTests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-SwiftGenKit UnitTests-umbrella.h"; sourceTree = ""; }; + DF92A2FD6CA8A3688ACBBA4681AF7205 /* Pods-Templates UnitTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Templates UnitTests.debug.xcconfig"; sourceTree = ""; }; + E182B40BDCBE61875435B8C8C6EE5A91 /* Pods_swiftgen.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_swiftgen.framework; path = "Pods-swiftgen.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; + E2633AD48238CB17C93F4E12B6FBDF8E /* Pods-swiftgen-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-swiftgen-dummy.m"; sourceTree = ""; }; E67EB5FBEC8166A35ADE498CADB6DBE7 /* StencilSwiftKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = StencilSwiftKit.modulemap; sourceTree = ""; }; E6C4D29AB2EA1CD1F1D7E5A3DA178314 /* Yams-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yams-umbrella.h"; sourceTree = ""; }; - E936EA14E9DD7E7C9181D25C57D7D712 /* ColorsContext.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ColorsContext.swift; sourceTree = ""; }; - EA9225A6F428A88CAFCDD56E0E350219 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.12.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; + EA42B83CF4037EF0F8F7AA64DFD72549 /* Pods-SwiftGen UnitTests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-SwiftGen UnitTests-acknowledgements.markdown"; sourceTree = ""; }; EC15D14D2DB1C6C303A8B7A1EBB6FC2C /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + EC30417F47F50EB758EB28ADE8C3F513 /* Pods-SwiftGen UnitTests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-SwiftGen UnitTests-frameworks.sh"; sourceTree = ""; }; EE218EEFCC4E6B9837BBF2FD65EF0E0E /* Stencil-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Stencil-umbrella.h"; sourceTree = ""; }; - F061F9C88E7CC71F59713CD3C7F93EA7 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - F2D363C5740AC594EA878C8942DB0360 /* Pods-SwiftGenKit UnitTests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-SwiftGenKit UnitTests-frameworks.sh"; sourceTree = ""; }; - F3F927D8382BF14A80B3413AB571D270 /* SwiftGenKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftGenKit-umbrella.h"; sourceTree = ""; }; + EEE130C0340FE6A2008C6C9CDC9618AB /* Pods-swiftgen-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-swiftgen-frameworks.sh"; sourceTree = ""; }; + F1EBBBC2CC44C5AC3169F2ADAD559A23 /* Pods-SwiftGenKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-SwiftGenKit-dummy.m"; sourceTree = ""; }; F419ADC4844BF7A2B2BCC5E9EAE4E2C8 /* PathKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PathKit.swift; path = Sources/PathKit.swift; sourceTree = ""; }; F6289FF6EE58120281CA8D3BE7F61893 /* Stencil-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Stencil-dummy.m"; sourceTree = ""; }; F70DDD9AB16AE398F2D56301C4476401 /* dumper.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dumper.c; path = Sources/CYaml/src/dumper.c; sourceTree = ""; }; - F71CB78E5B1103852D5FC03157B87290 /* Pods-Templates UnitTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Templates UnitTests.debug.xcconfig"; sourceTree = ""; }; - F7E6F959A020A1C3D9940C45E3F84FEE /* Pods-Templates UnitTests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Templates UnitTests-acknowledgements.plist"; sourceTree = ""; }; F893FFD2C51D5FE40EEAF29887B87C7F /* Yams.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yams.xcconfig; sourceTree = ""; }; F980B82F696152EE9A6AF92250839417 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; FA336BF2A928D21EC7D7FC90D8A5D9D5 /* Error.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Error.swift; path = Sources/Commander/Error.swift; sourceTree = ""; }; - FB139A575F594C0DD26ADC605104A1C8 /* Pods-SwiftGen UnitTests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-SwiftGen UnitTests-acknowledgements.plist"; sourceTree = ""; }; + FD5A328BA513C16BC9C63AE0B2FD2E10 /* Pods-Templates UnitTests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Templates UnitTests-dummy.m"; sourceTree = ""; }; FD71201BD92A7B12E2A53836473F6FEB /* String+Yams.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+Yams.swift"; path = "Sources/Yams/String+Yams.swift"; sourceTree = ""; }; FDB98E2C2EA0A3B629C52160DEDF0381 /* Commander.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Commander.xcconfig; sourceTree = ""; }; - FEB25A513CC5BFE955C6F41753662E66 /* Pods_Templates_UnitTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_Templates_UnitTests.framework; path = "Pods-Templates UnitTests.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; FEDB6E992DD26F0C6E3C9C25D1707469 /* writer.c */ = {isa = PBXFileReference; includeInIndex = 1; name = writer.c; path = Sources/CYaml/src/writer.c; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ - 2BA4F35695073C4050477653393D89AC /* Frameworks */ = { + 320854A8973FCAE0FC4AF6E4473D50D1 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - C95AC5E958CB0CEDB9BB0DD72C1C67FE /* Cocoa.framework in Frameworks */, - AB5F32DF34B1D0477A4B57CD8AA0E6CC /* PathKit.framework in Frameworks */, + 7ED418955AC5E6A57B91DBD45F6BCEB9 /* Cocoa.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4356B034A5C8B8D52F061E552ABA6132 /* Frameworks */ = { + 440CFE2179706F2F4566C5EFFE700AA9 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - C8A7784C9747F5A22ABA031FF0B8DA37 /* Cocoa.framework in Frameworks */, - 8E9D5AF0B7349EFFFA54BAEEABD38939 /* Foundation.framework in Frameworks */, - 0DA796879D0F109648F4718C8B6FC6C2 /* Kanna.framework in Frameworks */, - 9CCE9EE1C314715E7DF058C0F1AB1019 /* PathKit.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4466D4766D166872CE381BFC6901024A /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - DEC5553165AD49A8E658A9DB250C6057 /* Cocoa.framework in Frameworks */, + CA9F63CDF78B4D865FE113ECF939F819 /* Cocoa.framework in Frameworks */, + EEA94C043E8D17F89D0A03DFAACE9A6E /* PathKit.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -553,30 +476,19 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 6ED3F69E31ABC7BA57AFC1A4ED33CAC3 /* Frameworks */ = { + B2159CA6FD0A7467A5D34708F0826BCB /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - E39D4048EBE0F3B80777F4BF016BA715 /* Cocoa.framework in Frameworks */, - A7407F85B931EFADEA2978568B0CCFB5 /* Foundation.framework in Frameworks */, - FAFB861D89FD88D7AC6CA21F37E7099C /* PathKit.framework in Frameworks */, - FD1D899B855F8D32BD1EF546C9E752D6 /* Stencil.framework in Frameworks */, + 76567A62B8F8996F30CC6A5BE24ADD2B /* Cocoa.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 85E5BD65204B98699BF43BAFF7ADA9CE /* Frameworks */ = { + B567D50D4CB371B5F4F7573B2D762C82 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 8BD7AC9CB107AF1A24067F1558F769F9 /* Cocoa.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A04B9CDAB33CDFA05F9D346D2BA4E141 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 7D8F4D538F95AC041DEAE03663F4B65C /* Cocoa.framework in Frameworks */, + BED7860CD9BDEBFAAD033174723019F8 /* Cocoa.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -588,11 +500,30 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - C5D3A24A3CF29BCBB1642221BDC52008 /* Frameworks */ = { + C1DD5A4F1F1BB0E13FEE172ADE02E62F /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 87D6B7DD851623A3474788FA762C2CDC /* Cocoa.framework in Frameworks */, + 6918C80B34F568CC3B45C81E9DA11A3B /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + C5764C3E73395AC9EC23A3EEAB6242A5 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 624A3F0CF5D478BA56750F18FACFF3CC /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F169C9117D13960FE8CFB5CB870249B3 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 736A4ECFEED8704082578A1613CB5A20 /* Cocoa.framework in Frameworks */, + CB673FD15270E993486E31EC8F39E4F9 /* Foundation.framework in Frameworks */, + BBBDB9C8F54729126C8BAE86A0254978 /* PathKit.framework in Frameworks */, + 6EF1012E2FFE8B147B226A1BB3D3D340 /* Stencil.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -633,119 +564,100 @@ path = Yams; sourceTree = ""; }; - 020A16D44E39C6049207F8A09EA0709F /* OS X */ = { + 08E5191E4E8B706D29BC3E9FD54F071A /* Targets Support Files */ = { isa = PBXGroup; children = ( - 07FC6C46CE5410C97375995E800EB8D5 /* Cocoa.framework */, - EA9225A6F428A88CAFCDD56E0E350219 /* Foundation.framework */, + 2B28263B24BEF4D3312F2FA174CF4393 /* Pods-swiftgen */, + 18C4A844FD426284C24B15A90F6F61A8 /* Pods-SwiftGen UnitTests */, + D35BFFC339B3D52090BC4BC9F936C2B6 /* Pods-SwiftGenKit */, + D6138CA3536B7FB87DD4FE3BDA116B3D /* Pods-SwiftGenKit UnitTests */, + 17EA75BE5E39C30AC754C9B59B625AC2 /* Pods-Templates UnitTests */, ); - name = "OS X"; + name = "Targets Support Files"; sourceTree = ""; }; - 0CC954FE446E17EDBA95D1BB7088313D /* Pods-Templates UnitTests */ = { + 17EA75BE5E39C30AC754C9B59B625AC2 /* Pods-Templates UnitTests */ = { isa = PBXGroup; children = ( - F061F9C88E7CC71F59713CD3C7F93EA7 /* Info.plist */, - B10399A62F4AE41E794269D6AB35BA6E /* Pods-Templates UnitTests.modulemap */, - 0D4488AD29F301A89F9C2E260B7C0D95 /* Pods-Templates UnitTests-acknowledgements.markdown */, - F7E6F959A020A1C3D9940C45E3F84FEE /* Pods-Templates UnitTests-acknowledgements.plist */, - B7995FE659F376DE956FFEF77CC53528 /* Pods-Templates UnitTests-dummy.m */, - 0049391F861EB104D0D5FAE4A886DB38 /* Pods-Templates UnitTests-frameworks.sh */, - CE45E7FB4E932831DBDA9B3EECC22822 /* Pods-Templates UnitTests-resources.sh */, - A84E3ACC9C8D98444DCA3DFD982B2018 /* Pods-Templates UnitTests-umbrella.h */, - F71CB78E5B1103852D5FC03157B87290 /* Pods-Templates UnitTests.debug.xcconfig */, - BAF62C8CF30DE46CA89C8F93C4EB1EAA /* Pods-Templates UnitTests.release.xcconfig */, + CA08FF84BCAE78FB75EAEA286542075F /* Info.plist */, + B1842BEE902BC050563A3C2DBEF1C665 /* Pods-Templates UnitTests.modulemap */, + 88D6EE2AE8D42DF5AD02713B6CA0073B /* Pods-Templates UnitTests-acknowledgements.markdown */, + 0EAEFA132424441FD7DA05ED8473150D /* Pods-Templates UnitTests-acknowledgements.plist */, + FD5A328BA513C16BC9C63AE0B2FD2E10 /* Pods-Templates UnitTests-dummy.m */, + 2F388055681AE2C8A8283D9C07A7455F /* Pods-Templates UnitTests-frameworks.sh */, + 1E22BE4D7E672E01490B74A1F26BE97D /* Pods-Templates UnitTests-resources.sh */, + 259A75ACFABA05D92F45F2EE11DC3633 /* Pods-Templates UnitTests-umbrella.h */, + DF92A2FD6CA8A3688ACBBA4681AF7205 /* Pods-Templates UnitTests.debug.xcconfig */, + 2BEB7E8B8E2EB4B568546ED128EF278C /* Pods-Templates UnitTests.release.xcconfig */, ); name = "Pods-Templates UnitTests"; path = "Target Support Files/Pods-Templates UnitTests"; sourceTree = ""; }; - 17E5BA734B72480F0208D2FE899BC480 /* Pods-SwiftGenKit UnitTests */ = { + 18C4A844FD426284C24B15A90F6F61A8 /* Pods-SwiftGen UnitTests */ = { isa = PBXGroup; children = ( - 946CD195E48A7A3B6323AD0D0D835350 /* Info.plist */, - 3D5A5DAB9EEB325938EA6A57610AA2D9 /* Pods-SwiftGenKit UnitTests.modulemap */, - 967B0255EEBAD5C83E67E7BDD2FBEB2D /* Pods-SwiftGenKit UnitTests-acknowledgements.markdown */, - DEF9C2BEF79DECAFA8EE3CE82CFE7DEB /* Pods-SwiftGenKit UnitTests-acknowledgements.plist */, - CB11DD7EA2976EC4FA27D3E8C9474C6B /* Pods-SwiftGenKit UnitTests-dummy.m */, - F2D363C5740AC594EA878C8942DB0360 /* Pods-SwiftGenKit UnitTests-frameworks.sh */, - B6F59BB3C13C9610CBF27C54C52195D7 /* Pods-SwiftGenKit UnitTests-resources.sh */, - 5D6A2BCC6A0A91B5C44E1ADCAED76243 /* Pods-SwiftGenKit UnitTests-umbrella.h */, - 28661CF1F039CC008169556F00F81A10 /* Pods-SwiftGenKit UnitTests.debug.xcconfig */, - 7D808030D0B4B98B95A15EA68A091B03 /* Pods-SwiftGenKit UnitTests.release.xcconfig */, + 8262A975210A47D877CE5FEF0B5F83EB /* Info.plist */, + 41D3F35CD6779B56B754BBB6A7EF30C1 /* Pods-SwiftGen UnitTests.modulemap */, + EA42B83CF4037EF0F8F7AA64DFD72549 /* Pods-SwiftGen UnitTests-acknowledgements.markdown */, + 68368BA2432AD9191583C179466E226D /* Pods-SwiftGen UnitTests-acknowledgements.plist */, + 68D95C5D52F98D9C730AFDF1CE31D8A7 /* Pods-SwiftGen UnitTests-dummy.m */, + EC30417F47F50EB758EB28ADE8C3F513 /* Pods-SwiftGen UnitTests-frameworks.sh */, + 7279FA75F5AB408E0C67C9A22A5ABF8A /* Pods-SwiftGen UnitTests-resources.sh */, + 3868CDF0DC7FEAADF14F05A8B3C4D43D /* Pods-SwiftGen UnitTests-umbrella.h */, + 302F7901636DDABB479FC9971C641DB1 /* Pods-SwiftGen UnitTests.debug.xcconfig */, + 1E6966294EA0A4DDD0E2C1DBEB428E7E /* Pods-SwiftGen UnitTests.release.xcconfig */, ); - name = "Pods-SwiftGenKit UnitTests"; - path = "Target Support Files/Pods-SwiftGenKit UnitTests"; + name = "Pods-SwiftGen UnitTests"; + path = "Target Support Files/Pods-SwiftGen UnitTests"; sourceTree = ""; }; - 23494911050610FE886B150B783A8A2F /* ColorsFileParsers */ = { + 1F3D57661A2D1DE0369137E32807F052 /* Products */ = { isa = PBXGroup; children = ( - C6F3ED9C6E5CE313C78CFA34CB3A96CF /* ColorsCLRFileParser.swift */, - DFE07A071C123AB075C3B4C591DCC152 /* ColorsJSONFileParser.swift */, - A7C3F5FA4768AF1D745DED193A2B3803 /* ColorsTXTFileParser.swift */, - 71006898C6FF630B2AA830AC3A87BC20 /* ColorsXMLFileParser.swift */, + CA63F140BD15CE114B51EFF5452D1092 /* Commander.framework */, + B774BBAFB96E6AE495302E83F6BBC922 /* Kanna.framework */, + 754F0C5849301279ABBCC626C08ECF10 /* PathKit.framework */, + E182B40BDCBE61875435B8C8C6EE5A91 /* Pods_swiftgen.framework */, + 56F1E30EEBB2703D2964063FF13F6A9C /* Pods_SwiftGen_UnitTests.framework */, + 8BB41F5F05703459C3F944B8F833D827 /* Pods_SwiftGenKit.framework */, + 793C985117487AB482BE3E08D415235C /* Pods_SwiftGenKit_UnitTests.framework */, + 2F0AA956E32A369C46A15D94571016A9 /* Pods_Templates_UnitTests.framework */, + 4030A82F79CDB065F73B6D85D4C760B0 /* Stencil.framework */, + BB5CAEE4ABFB9A414BC70AA5A0CBF78D /* StencilSwiftKit.framework */, + 43E8A2B7DD1716ACE5A0A34EC8E93681 /* Yams.framework */, ); - name = ColorsFileParsers; - path = ColorsFileParsers; + name = Products; sourceTree = ""; }; - 2D0AA71F0F7D1B12A7B862F6D7BFE52F /* Pods-swiftgen */ = { + 1F5E5F8A51A1DB712AA69F86066566AE /* Frameworks */ = { isa = PBXGroup; children = ( - C20FA20FF8835D7D786FC3FD75A2F258 /* Info.plist */, - 0D43B2FD62EC920BA081D8336202D2F8 /* Pods-swiftgen.modulemap */, - CA97BE741C513984164BFE5385E66978 /* Pods-swiftgen-acknowledgements.markdown */, - 6DC9CE80A93B60F2B20E02969153E0F5 /* Pods-swiftgen-acknowledgements.plist */, - D0835423EE036D3BD1448C0BBA814FBD /* Pods-swiftgen-dummy.m */, - 22FEFEF52EA31373B599B5D95270F253 /* Pods-swiftgen-frameworks.sh */, - 00721322E4AFCA7EBB69D2F86EFDD11C /* Pods-swiftgen-resources.sh */, - 8DE740DE0C0F3F344E56671CA0D7B5E1 /* Pods-swiftgen-umbrella.h */, - 9C0BA96CC10A64F3C84F03ABF789D785 /* Pods-swiftgen.debug.xcconfig */, - 6939C97A7765146A3F01BC23B897D412 /* Pods-swiftgen.release.xcconfig */, + 0436538F42B0A2EC1C972F8EE47937E0 /* PathKit.framework */, + 9A68FA9661EC6B4BA5415DDD474F7F00 /* Stencil.framework */, + BAD0DD2B62009F64C32E0A3BDCACD5FB /* OS X */, + ); + name = Frameworks; + sourceTree = ""; + }; + 2B28263B24BEF4D3312F2FA174CF4393 /* Pods-swiftgen */ = { + isa = PBXGroup; + children = ( + 6DA6D8381A53A7DEB653F63F6EBEDCFB /* Info.plist */, + 9C6A666CCF12210EFB2821B8F9908DDA /* Pods-swiftgen.modulemap */, + D69889E19D46E35A0B1D1B5A14F9872F /* Pods-swiftgen-acknowledgements.markdown */, + 85CE4280DBFD1F86700915CEE0A0F8A9 /* Pods-swiftgen-acknowledgements.plist */, + E2633AD48238CB17C93F4E12B6FBDF8E /* Pods-swiftgen-dummy.m */, + EEE130C0340FE6A2008C6C9CDC9618AB /* Pods-swiftgen-frameworks.sh */, + DE1D89BEA7B52BFAA6C42A09769BB8D0 /* Pods-swiftgen-resources.sh */, + 8BB4B20E9CA05778A07FF0804C54BA70 /* Pods-swiftgen-umbrella.h */, + 50F9FB22A2041E9431DF32A841D8D1B2 /* Pods-swiftgen.debug.xcconfig */, + B83DF6A2CB696A30381BED81EFF648E0 /* Pods-swiftgen.release.xcconfig */, ); name = "Pods-swiftgen"; path = "Target Support Files/Pods-swiftgen"; sourceTree = ""; }; - 336EFB557C96E9F4A5AB93D96DAF4709 /* Support Files */ = { - isa = PBXGroup; - children = ( - B23432BA840F820120E1FB9A42AF4C63 /* Info.plist */, - D705C219C0817969FA2FCA4865BC094B /* SwiftGenKit.modulemap */, - 71486E32631AE7A1DB1B9B77C6FBCAFB /* SwiftGenKit.xcconfig */, - 2C2EF20A4DB9DEFCCD074183FC5E946C /* SwiftGenKit-dummy.m */, - E504DC1E915D0C194A22434E87C7F698 /* SwiftGenKit-prefix.pch */, - F3F927D8382BF14A80B3413AB571D270 /* SwiftGenKit-umbrella.h */, - ); - name = "Support Files"; - path = "../Pods/Target Support Files/SwiftGenKit"; - sourceTree = ""; - }; - 349C7F8B740025734C89696EB809F7DE /* Stencil */ = { - isa = PBXGroup; - children = ( - 68C3D1D9E8249FFAA2A3AECAB02E0835 /* AssetsCatalogContext.swift */, - E936EA14E9DD7E7C9181D25C57D7D712 /* ColorsContext.swift */, - 30EF8C11EA936E671AB620245DAC16C9 /* FontsContext.swift */, - 5E2449C59161EF7593E19A01DC7C010B /* StoryboardsContext.swift */, - E2A49F72B283554766D294CBF805CE07 /* StringsContext.swift */, - ); - name = Stencil; - path = Sources/Stencil; - sourceTree = ""; - }; - 3CB7B64C06199C17C97E709B75962D57 /* SwiftGenKit */ = { - isa = PBXGroup; - children = ( - EFD8C24A6FBC8D1DFDAF3850B7B63EA0 /* Parsers */, - 349C7F8B740025734C89696EB809F7DE /* Stencil */, - 336EFB557C96E9F4A5AB93D96DAF4709 /* Support Files */, - ); - name = SwiftGenKit; - path = ../SwiftGenKit; - sourceTree = ""; - }; 4498F77A4B66A4C9B7E245C7D2F417A1 /* Kanna */ = { isa = PBXGroup; children = ( @@ -771,24 +683,6 @@ path = PathKit; sourceTree = ""; }; - 4FDCD240FC351AA7C1DE12862B884CAA /* Pods-SwiftGen UnitTests */ = { - isa = PBXGroup; - children = ( - E45C1F1FAA21BFBD6BB4F1422A38875B /* Info.plist */, - 770B749C8DEF28EDC1A7FDC7C45BADE6 /* Pods-SwiftGen UnitTests.modulemap */, - 1A3601DA809D1A0AB97708859D3713C1 /* Pods-SwiftGen UnitTests-acknowledgements.markdown */, - FB139A575F594C0DD26ADC605104A1C8 /* Pods-SwiftGen UnitTests-acknowledgements.plist */, - 3D14327F1C799583B4D81D6D02D87824 /* Pods-SwiftGen UnitTests-dummy.m */, - 8512CDB165C3BE376ADD1D7D51A25FFC /* Pods-SwiftGen UnitTests-frameworks.sh */, - 72DE9A8A4EA8D65357F2BED49F6A7DAD /* Pods-SwiftGen UnitTests-resources.sh */, - C3D5DAAC33C2ECA7ED2E7D7D1A136227 /* Pods-SwiftGen UnitTests-umbrella.h */, - 3B0D9CC37D75520638102982C82F78D1 /* Pods-SwiftGen UnitTests.debug.xcconfig */, - 91E889CB06E8813DE6BC4636771D42CF /* Pods-SwiftGen UnitTests.release.xcconfig */, - ); - name = "Pods-SwiftGen UnitTests"; - path = "Target Support Files/Pods-SwiftGen UnitTests"; - sourceTree = ""; - }; 508D9F8D07447B094DEBE5E5A7C7EFAB /* Support Files */ = { isa = PBXGroup; children = ( @@ -803,17 +697,6 @@ path = "../Target Support Files/Commander"; sourceTree = ""; }; - 68467DFCA068B44931E2BF19C3EF4E9C /* Frameworks */ = { - isa = PBXGroup; - children = ( - 52A88E569E0950EDFED8B4BBCA10FC9D /* Kanna.framework */, - 0566A8F86BD6CD0F51D9A9F6C40605F0 /* PathKit.framework */, - D290D1316E81A473E4C5B29A39156538 /* Stencil.framework */, - 020A16D44E39C6049207F8A09EA0709F /* OS X */, - ); - name = Frameworks; - sourceTree = ""; - }; 68A66AF3FD80CC52FFF4D7F35145DC37 /* Support Files */ = { isa = PBXGroup; children = ( @@ -832,11 +715,10 @@ isa = PBXGroup; children = ( 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */, - BE4270DFC0604EBFDB596438B81115F3 /* Development Pods */, - 68467DFCA068B44931E2BF19C3EF4E9C /* Frameworks */, + 1F5E5F8A51A1DB712AA69F86066566AE /* Frameworks */, FFDDD50A5B18183071B8A61AB0BBE35E /* Pods */, - C3A6C15DBD694C3E9C1E86F9AE732FA9 /* Products */, - BA170508B4E23596E37DA5C20CFD6072 /* Targets Support Files */, + 1F3D57661A2D1DE0369137E32807F052 /* Products */, + 08E5191E4E8B706D29BC3E9FD54F071A /* Targets Support Files */, ); sourceTree = ""; }; @@ -895,23 +777,13 @@ path = StencilSwiftKit; sourceTree = ""; }; - BA170508B4E23596E37DA5C20CFD6072 /* Targets Support Files */ = { + BAD0DD2B62009F64C32E0A3BDCACD5FB /* OS X */ = { isa = PBXGroup; children = ( - 2D0AA71F0F7D1B12A7B862F6D7BFE52F /* Pods-swiftgen */, - 4FDCD240FC351AA7C1DE12862B884CAA /* Pods-SwiftGen UnitTests */, - 17E5BA734B72480F0208D2FE899BC480 /* Pods-SwiftGenKit UnitTests */, - 0CC954FE446E17EDBA95D1BB7088313D /* Pods-Templates UnitTests */, + 2497E0C37C035DB8276C0C7335E3FC93 /* Cocoa.framework */, + 11F7F2E3F010D24453E40821938EF8EC /* Foundation.framework */, ); - name = "Targets Support Files"; - sourceTree = ""; - }; - BE4270DFC0604EBFDB596438B81115F3 /* Development Pods */ = { - isa = PBXGroup; - children = ( - 3CB7B64C06199C17C97E709B75962D57 /* SwiftGenKit */, - ); - name = "Development Pods"; + name = "OS X"; sourceTree = ""; }; BFECEDE50F0BE75B25D7A1668EA6D7C9 /* Support Files */ = { @@ -928,22 +800,39 @@ path = "../Target Support Files/StencilSwiftKit"; sourceTree = ""; }; - C3A6C15DBD694C3E9C1E86F9AE732FA9 /* Products */ = { + D35BFFC339B3D52090BC4BC9F936C2B6 /* Pods-SwiftGenKit */ = { isa = PBXGroup; children = ( - 7963910D8D53D6526D8AC5678D90DDA9 /* Commander.framework */, - 64BE17B237F085BA10E87588EC0568D1 /* Kanna.framework */, - B7D636F03FF63263B161F51301223ED5 /* PathKit.framework */, - 7BB0EB5E177673E02428232D19DB4CF4 /* Pods_swiftgen.framework */, - DC8F4C4B17AFF86DFABDAB77BAE1866D /* Pods_SwiftGen_UnitTests.framework */, - 2DF84BE2DE94D986A8EACE7D5EC56693 /* Pods_SwiftGenKit_UnitTests.framework */, - FEB25A513CC5BFE955C6F41753662E66 /* Pods_Templates_UnitTests.framework */, - D58745F3FACA2D18464F96FCC2C7E325 /* Stencil.framework */, - 5EB396F3E0C100C49344889DC3DA1A5D /* StencilSwiftKit.framework */, - 3CC5467FF087318699606774B515B36F /* SwiftGenKit.framework */, - ABDB1BA4DB332164A4278A5B0A322C36 /* Yams.framework */, + 5ACCF6606E5B78582C2390734472FEB7 /* Info.plist */, + 465F3FB8FB0AB76BC66B6F293A5433CB /* Pods-SwiftGenKit.modulemap */, + 26A5017A05425BE615D73D113E359F3D /* Pods-SwiftGenKit-acknowledgements.markdown */, + C22921190966BAE904BC8717B83C01F9 /* Pods-SwiftGenKit-acknowledgements.plist */, + F1EBBBC2CC44C5AC3169F2ADAD559A23 /* Pods-SwiftGenKit-dummy.m */, + 62549533019D1D891840C09DA2274C63 /* Pods-SwiftGenKit-resources.sh */, + 5D7F224BE778FD4DEA0076AC55FF296A /* Pods-SwiftGenKit-umbrella.h */, + C301DABEC77D714A8333E8FD5D2ACB26 /* Pods-SwiftGenKit.debug.xcconfig */, + 60E9A70E65EAEE51E8DD0CF3860C9C4F /* Pods-SwiftGenKit.release.xcconfig */, ); - name = Products; + name = "Pods-SwiftGenKit"; + path = "Target Support Files/Pods-SwiftGenKit"; + sourceTree = ""; + }; + D6138CA3536B7FB87DD4FE3BDA116B3D /* Pods-SwiftGenKit UnitTests */ = { + isa = PBXGroup; + children = ( + 7E60F9CB20713F7E04E523534619D8CE /* Info.plist */, + 3D70A26B826329238B84D17159AADCD6 /* Pods-SwiftGenKit UnitTests.modulemap */, + 1112FA129F4BEC77352CE7A855EA3B23 /* Pods-SwiftGenKit UnitTests-acknowledgements.markdown */, + 1BDDFB494759941860515D1F0C00BFDA /* Pods-SwiftGenKit UnitTests-acknowledgements.plist */, + 2A1D3FA16B2313A4B5394A5A04F4ADBF /* Pods-SwiftGenKit UnitTests-dummy.m */, + 45C23FF51DBD123B2B6A7C92F806495E /* Pods-SwiftGenKit UnitTests-frameworks.sh */, + 47DAD28A9981D58495B273AEA16D8089 /* Pods-SwiftGenKit UnitTests-resources.sh */, + DEC43438FA64AC6DC5A29F4D8BB86401 /* Pods-SwiftGenKit UnitTests-umbrella.h */, + 226C39393337C59A34C1E31327819F02 /* Pods-SwiftGenKit UnitTests.debug.xcconfig */, + A2D9985BCA9FF5E0930396BA94076FC1 /* Pods-SwiftGenKit UnitTests.release.xcconfig */, + ); + name = "Pods-SwiftGenKit UnitTests"; + path = "Target Support Files/Pods-SwiftGenKit UnitTests"; sourceTree = ""; }; E06D9A03276DA1B895EB0DA8E0FB5C69 /* Stencil */ = { @@ -988,21 +877,6 @@ path = "../Target Support Files/PathKit"; sourceTree = ""; }; - EFD8C24A6FBC8D1DFDAF3850B7B63EA0 /* Parsers */ = { - isa = PBXGroup; - children = ( - E6775BDE84134B9B3939A6572895F0B5 /* AssetsCatalogParser.swift */, - 92636EA964583141C0EFC1EA7AB4169F /* ColorsParser.swift */, - 672DD2AC7A4AD985FD3A2AAFC4F069EA /* FontsParser.swift */, - B360ABDDD237BE1DAF300C0DE06C209F /* Parser.swift */, - 9E3E34CF1DC913D6240DA6D5B1E0D526 /* StoryboardParser.swift */, - 698C770FB450908FBD23B4FB3A69395D /* StringsParser.swift */, - 23494911050610FE886B150B783A8A2F /* ColorsFileParsers */, - ); - name = Parsers; - path = Sources/Parsers; - sourceTree = ""; - }; FCF6194838336AB67992D292C40CFC59 /* Support Files */ = { isa = PBXGroup; children = ( @@ -1041,19 +915,31 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 44C00039809A2BD44D68E73F860FDC79 /* Headers */ = { + 67392CDDAB45F58EB797439006F56E59 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - F1306C2FB8717ACD61219BB33DEC3C9A /* Pods-SwiftGen UnitTests-umbrella.h in Headers */, + A400F47A57ABAA4AAD49C9CF37E482EF /* CYaml.h in Headers */, + A3061B6D0F84DB11C7028CC004D7CBD9 /* yaml.h in Headers */, + 8EC825CC2D31B58A40CEED66C8B839AF /* yaml_private.h in Headers */, + B97797868183631A978CAC79A121AE8D /* Yams-umbrella.h in Headers */, + 7A57BC2CB6057D1920ADFE7E36BDC65D /* Yams.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 77E3A80C28F364CD0D996287E3458085 /* Headers */ = { + 6F40EF59B67573CCB72D9D4A8F68191A /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 17EEE0D771BE4FBDDD0AF3F6FBE8BCD1 /* SwiftGenKit-umbrella.h in Headers */, + E59B1D966751C0F0F0EBE1A1D10783D8 /* Stencil-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 7BB71699E3E0DD6ECD9EE75A90743C09 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 39F21C6145075DD7C1AECF704802AD76 /* Pods-swiftgen-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1065,19 +951,11 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 89741F21C4D691AEDC72046BA94F7A99 /* Headers */ = { + A3C0DD86568858D7693E1910F9BBC621 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - A38ED60206DE5F43713E68934AA3B958 /* Pods-SwiftGenKit UnitTests-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 8BFA6858344D714F1A1C11799107C683 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - C8FF8C1A204B278E64E615929ECBCADF /* Stencil-umbrella.h in Headers */, + 084EF68F3F219FC04AA043FC4B2824E8 /* Pods-SwiftGen UnitTests-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1090,31 +968,27 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - B48C51630ED20128A07AF9FBAED9B73C /* Headers */ = { + B306C818B2851456255D6F775278510D /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 72086B5F3AA0AFAA7BFA4CBBBF9E4674 /* Pods-swiftgen-umbrella.h in Headers */, + 6DDEED31B233CBC886873B7D1AAD1AF3 /* Pods-SwiftGenKit UnitTests-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - CFE61938F8737B394993FD293FB0B6C0 /* Headers */ = { + DA22540F643D881EF29F2A94534473AA /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 45C9C98AD4CDE8E0A6B2C5A30EBCFCB0 /* StencilSwiftKit-umbrella.h in Headers */, + D0CE5D321BC71497185743DDF3BC223A /* StencilSwiftKit-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - F5EDD062052CC42C6C4841BA5AB2B2A1 /* Headers */ = { + FE46A42655359BE48C2710FCC6530D66 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 822617FFBBD074012142B24970700A3D /* CYaml.h in Headers */, - E112EEA7365C094B7C6EBD323CFCA1E0 /* yaml.h in Headers */, - E33425E4783FDCBC6C2F5C44E8BF8C72 /* yaml_private.h in Headers */, - A4BEA7CDDBBFAA846C07330F336E7D39 /* Yams-umbrella.h in Headers */, - E4211870C0758BDFFFD0EA115F5C78A6 /* Yams.h in Headers */, + 88E8AA4FA20A4FBEE47BA9F14FF69608 /* Pods-SwiftGenKit-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1129,42 +1003,44 @@ /* End PBXHeadersBuildPhase section */ /* Begin PBXNativeTarget section */ - 06B746BF324CCB3FC37334F087173F0E /* StencilSwiftKit */ = { + 0A8577A4A2EAF5284B80359873790C32 /* Pods-SwiftGenKit */ = { isa = PBXNativeTarget; - buildConfigurationList = 12A5A2FCE1EDA0414BA8F130F8712B1E /* Build configuration list for PBXNativeTarget "StencilSwiftKit" */; + buildConfigurationList = 8DF0DECCCC0C68F3B41416DD270763BD /* Build configuration list for PBXNativeTarget "Pods-SwiftGenKit" */; buildPhases = ( - A600DF31E05282CD1B5631A75B4AA61C /* Sources */, - 6ED3F69E31ABC7BA57AFC1A4ED33CAC3 /* Frameworks */, - CFE61938F8737B394993FD293FB0B6C0 /* Headers */, + 19EF8CAD96EC2FFCB0950E9267531FD6 /* Sources */, + B567D50D4CB371B5F4F7573B2D762C82 /* Frameworks */, + FE46A42655359BE48C2710FCC6530D66 /* Headers */, ); buildRules = ( ); dependencies = ( - 009A40171E42B96F7FD897235C49499E /* PBXTargetDependency */, - 8BEF222F4A855B43CC2A04B5ACEA943E /* PBXTargetDependency */, + B2D1BB1C749CE86888D03E5608DFE052 /* PBXTargetDependency */, + DC8A7CB46997676F84C9E49E03DADEA7 /* PBXTargetDependency */, ); - name = StencilSwiftKit; - productName = StencilSwiftKit; - productReference = 5EB396F3E0C100C49344889DC3DA1A5D /* StencilSwiftKit.framework */; + name = "Pods-SwiftGenKit"; + productName = "Pods-SwiftGenKit"; + productReference = 8BB41F5F05703459C3F944B8F833D827 /* Pods_SwiftGenKit.framework */; productType = "com.apple.product-type.framework"; }; - 0BD7DE1296FE81ADA9236153E912FCD8 /* SwiftGenKit */ = { + 11E9E8DA960B83354CEB8E7042858544 /* Pods-SwiftGen UnitTests */ = { isa = PBXNativeTarget; - buildConfigurationList = 8E560F6D2416F8FD097939579DB7187A /* Build configuration list for PBXNativeTarget "SwiftGenKit" */; + buildConfigurationList = 0582C3E6EB39704115635E476618496B /* Build configuration list for PBXNativeTarget "Pods-SwiftGen UnitTests" */; buildPhases = ( - 19CAEA646071F4CB6A985959D1011003 /* Sources */, - 4356B034A5C8B8D52F061E552ABA6132 /* Frameworks */, - 77E3A80C28F364CD0D996287E3458085 /* Headers */, + 36C1821C5753F790C0693E72F08A692B /* Sources */, + B2159CA6FD0A7467A5D34708F0826BCB /* Frameworks */, + A3C0DD86568858D7693E1910F9BBC621 /* Headers */, ); buildRules = ( ); dependencies = ( - 106E6148CA6ED10B5362091BE3977D43 /* PBXTargetDependency */, - 8374E8C81F71365DEC826D58144C08A0 /* PBXTargetDependency */, + 90BC11899923EB7EDB1040A11770ABFB /* PBXTargetDependency */, + EE56126017B8CD45D2E11958F0F9282F /* PBXTargetDependency */, + 0CA92D3C180DCCC42F594BDD100D2982 /* PBXTargetDependency */, + 14D575F14A1E3C96D00C8505F3965C85 /* PBXTargetDependency */, ); - name = SwiftGenKit; - productName = SwiftGenKit; - productReference = 3CC5467FF087318699606774B515B36F /* SwiftGenKit.framework */; + name = "Pods-SwiftGen UnitTests"; + productName = "Pods-SwiftGen UnitTests"; + productReference = 56F1E30EEBB2703D2964063FF13F6A9C /* Pods_SwiftGen_UnitTests.framework */; productType = "com.apple.product-type.framework"; }; 12E0F84081ABA0678A40FCDF294E5A65 /* Commander */ = { @@ -1181,7 +1057,26 @@ ); name = Commander; productName = Commander; - productReference = 7963910D8D53D6526D8AC5678D90DDA9 /* Commander.framework */; + productReference = CA63F140BD15CE114B51EFF5452D1092 /* Commander.framework */; + productType = "com.apple.product-type.framework"; + }; + 3750EDCA0E0EF4DE3FA18CEDFBEF5A4A /* StencilSwiftKit */ = { + isa = PBXNativeTarget; + buildConfigurationList = CFE0BD42F8F74111F96CB1E862C22B6A /* Build configuration list for PBXNativeTarget "StencilSwiftKit" */; + buildPhases = ( + E44A9E9F68657864DD4BEA1F11B19B7D /* Sources */, + F169C9117D13960FE8CFB5CB870249B3 /* Frameworks */, + DA22540F643D881EF29F2A94534473AA /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + 80FECBC48FD02BD9ACDB9F32FD8F57E4 /* PBXTargetDependency */, + 1A39EE42EAC467CDBE52CC7D40888BBE /* PBXTargetDependency */, + ); + name = StencilSwiftKit; + productName = StencilSwiftKit; + productReference = BB5CAEE4ABFB9A414BC70AA5A0CBF78D /* StencilSwiftKit.framework */; productType = "com.apple.product-type.framework"; }; 4D10E4FF5A483B852B47CCA0B994E340 /* Kanna */ = { @@ -1198,58 +1093,54 @@ ); name = Kanna; productName = Kanna; - productReference = 64BE17B237F085BA10E87588EC0568D1 /* Kanna.framework */; + productReference = B774BBAFB96E6AE495302E83F6BBC922 /* Kanna.framework */; productType = "com.apple.product-type.framework"; }; - 9262F4B4C62C858E1A19F7C163A0922B /* Pods-swiftgen */ = { + 73CA1BD7F43C4A33FE4CFD4EB217943C /* Pods-swiftgen */ = { isa = PBXNativeTarget; - buildConfigurationList = 313A6AF836F5073AD186462E0D69D345 /* Build configuration list for PBXNativeTarget "Pods-swiftgen" */; + buildConfigurationList = 6054E704E73AE31F82362BDD8823A0B5 /* Build configuration list for PBXNativeTarget "Pods-swiftgen" */; buildPhases = ( - 0BF1695A1FDB54654984C37D9A8048A0 /* Sources */, - 4466D4766D166872CE381BFC6901024A /* Frameworks */, - B48C51630ED20128A07AF9FBAED9B73C /* Headers */, + C6010C3036258E52302FEE0B91374CD4 /* Sources */, + C5764C3E73395AC9EC23A3EEAB6242A5 /* Frameworks */, + 7BB71699E3E0DD6ECD9EE75A90743C09 /* Headers */, ); buildRules = ( ); dependencies = ( - B7EFD427BA250D8C8429CA8313E9AB5C /* PBXTargetDependency */, - 6341A65B5E4072A1158381A6F46A542F /* PBXTargetDependency */, - 190802EBA4F90D058F716DDD0C8D264B /* PBXTargetDependency */, - 07411B7E8645F3EE2D3D5FE1EADC4ECA /* PBXTargetDependency */, - 294D64FDBA027421BB5E97533CDE9E4E /* PBXTargetDependency */, - 38F698A92170736418FDC0F40D600635 /* PBXTargetDependency */, - CD034A550296DB65EB302C0BD6C8EB4C /* PBXTargetDependency */, + 48D3532532A15F1AF84FDEE0CE1A2813 /* PBXTargetDependency */, + 69C6C687370065AA259BAC9458110FCB /* PBXTargetDependency */, + F67EC8AA5427F69B0F89EA1C9D0D6800 /* PBXTargetDependency */, + 017662FA4467E1B526E16B3416E1E7F4 /* PBXTargetDependency */, + D1C1262639B5F61E7F81F45CFEBAE113 /* PBXTargetDependency */, + 3C7AED00743B3DC13DB23C6C86707057 /* PBXTargetDependency */, ); name = "Pods-swiftgen"; productName = "Pods-swiftgen"; - productReference = 7BB0EB5E177673E02428232D19DB4CF4 /* Pods_swiftgen.framework */; + productReference = E182B40BDCBE61875435B8C8C6EE5A91 /* Pods_swiftgen.framework */; productType = "com.apple.product-type.framework"; }; - B87C37DE66096E0B04E6CF74E84DB74A /* Pods-SwiftGenKit UnitTests */ = { + 8C34778C96A8C1AE1673F661EBB20C72 /* Yams */ = { isa = PBXNativeTarget; - buildConfigurationList = B5ABCC90E536EC95C32F43A5AE8E58F8 /* Build configuration list for PBXNativeTarget "Pods-SwiftGenKit UnitTests" */; + buildConfigurationList = 33EB3C498EEF718D24C7450C26861CAE /* Build configuration list for PBXNativeTarget "Yams" */; buildPhases = ( - 1F216032C930584CAC67799CF8A239E9 /* Sources */, - C5D3A24A3CF29BCBB1642221BDC52008 /* Frameworks */, - 89741F21C4D691AEDC72046BA94F7A99 /* Headers */, + 1549A7F4F0103C446F90728989FE74E9 /* Sources */, + 320854A8973FCAE0FC4AF6E4473D50D1 /* Frameworks */, + 67392CDDAB45F58EB797439006F56E59 /* Headers */, ); buildRules = ( ); dependencies = ( - 4E2B77E706F9DB81F55C9966F1F757B9 /* PBXTargetDependency */, - 05B7A9F0D55E58F311A6480E23001DC6 /* PBXTargetDependency */, - 4AB16842C12CB97328381C24301BA71C /* PBXTargetDependency */, ); - name = "Pods-SwiftGenKit UnitTests"; - productName = "Pods-SwiftGenKit UnitTests"; - productReference = 2DF84BE2DE94D986A8EACE7D5EC56693 /* Pods_SwiftGenKit_UnitTests.framework */; + name = Yams; + productName = Yams; + productReference = 43E8A2B7DD1716ACE5A0A34EC8E93681 /* Yams.framework */; productType = "com.apple.product-type.framework"; }; BBB46569A79C52426939AF96DA290CF9 /* PathKit */ = { isa = PBXNativeTarget; buildConfigurationList = 23F10DCF4CC19FAEB872F3FF8C874D18 /* Build configuration list for PBXNativeTarget "PathKit" */; buildPhases = ( - 09B5B21B3340F15FC7DF127F784D1C78 /* Sources */, + 5FCA4CE5597481B9D6D11D12673C7E41 /* Sources */, 507CFE04FE082677F97EFC2EEEBAC4B7 /* Frameworks */, 3695CC57AAB057789DAA4445DC5DF883 /* Headers */, ); @@ -1259,47 +1150,43 @@ ); name = PathKit; productName = PathKit; - productReference = B7D636F03FF63263B161F51301223ED5 /* PathKit.framework */; + productReference = 754F0C5849301279ABBCC626C08ECF10 /* PathKit.framework */; productType = "com.apple.product-type.framework"; }; - C938BBC036F7B18E50D6A376B38F11DF /* Yams */ = { + D93D8857C1185572F5A0716495D7A884 /* Pods-SwiftGenKit UnitTests */ = { isa = PBXNativeTarget; - buildConfigurationList = 566D77FC53423A0F1670AFD9B0111088 /* Build configuration list for PBXNativeTarget "Yams" */; + buildConfigurationList = 0064832A3FC5A4DA14CE1CF03C3B1A94 /* Build configuration list for PBXNativeTarget "Pods-SwiftGenKit UnitTests" */; buildPhases = ( - 787D1D00A3E1E8DA34E9A20ABFC07228 /* Sources */, - A04B9CDAB33CDFA05F9D346D2BA4E141 /* Frameworks */, - F5EDD062052CC42C6C4841BA5AB2B2A1 /* Headers */, + B158A84350B07661B74763660B474612 /* Sources */, + C1DD5A4F1F1BB0E13FEE172ADE02E62F /* Frameworks */, + B306C818B2851456255D6F775278510D /* Headers */, ); buildRules = ( ); dependencies = ( + 36EF09B6F4E53B2FB48BAAD509BF37D6 /* PBXTargetDependency */, ); - name = Yams; - productName = Yams; - productReference = ABDB1BA4DB332164A4278A5B0A322C36 /* Yams.framework */; + name = "Pods-SwiftGenKit UnitTests"; + productName = "Pods-SwiftGenKit UnitTests"; + productReference = 793C985117487AB482BE3E08D415235C /* Pods_SwiftGenKit_UnitTests.framework */; productType = "com.apple.product-type.framework"; }; - D39894D9E12FFA87C5ECBBA37B73AE0E /* Pods-SwiftGen UnitTests */ = { + E1627DDAF1A0884D6F43093CF781AE6B /* Stencil */ = { isa = PBXNativeTarget; - buildConfigurationList = EE215D444C3C033A2775F5BE6A4DECD8 /* Build configuration list for PBXNativeTarget "Pods-SwiftGen UnitTests" */; + buildConfigurationList = 98C9D65943F99486C5861EEC2D5FBB6D /* Build configuration list for PBXNativeTarget "Stencil" */; buildPhases = ( - 071AF53D1D5053B187C6FAA2C030D022 /* Sources */, - 85E5BD65204B98699BF43BAFF7ADA9CE /* Frameworks */, - 44C00039809A2BD44D68E73F860FDC79 /* Headers */, + A612EE0A244A728408750DEC8163327F /* Sources */, + 440CFE2179706F2F4566C5EFFE700AA9 /* Frameworks */, + 6F40EF59B67573CCB72D9D4A8F68191A /* Headers */, ); buildRules = ( ); dependencies = ( - EABAB3936FD6C29FA195D79390835F79 /* PBXTargetDependency */, - CA58DAFA89DA9467CBBB46274F042975 /* PBXTargetDependency */, - 3756C9DCFCE3C191338B9C8A34E57E7C /* PBXTargetDependency */, - 7C51B2C743AF4EF1F0A4FE23B46AF0F2 /* PBXTargetDependency */, - 8F71A671A6D7665CB54306517BD7F132 /* PBXTargetDependency */, - 318B9C13823277AE666C55A153F6F6B8 /* PBXTargetDependency */, + 8FA454199546D02BFABC4232CD9CBA7B /* PBXTargetDependency */, ); - name = "Pods-SwiftGen UnitTests"; - productName = "Pods-SwiftGen UnitTests"; - productReference = DC8F4C4B17AFF86DFABDAB77BAE1866D /* Pods_SwiftGen_UnitTests.framework */; + name = Stencil; + productName = Stencil; + productReference = 4030A82F79CDB065F73B6D85D4C760B0 /* Stencil.framework */; productType = "com.apple.product-type.framework"; }; FBDFF66DD4691D43545AB6AF7BEF24B6 /* Pods-Templates UnitTests */ = { @@ -1319,25 +1206,7 @@ ); name = "Pods-Templates UnitTests"; productName = "Pods-Templates UnitTests"; - productReference = FEB25A513CC5BFE955C6F41753662E66 /* Pods_Templates_UnitTests.framework */; - productType = "com.apple.product-type.framework"; - }; - FFC20C82FD3265C58EDEBE8C64960764 /* Stencil */ = { - isa = PBXNativeTarget; - buildConfigurationList = E6E1C4DFBD55CC221A11D2C002CA3319 /* Build configuration list for PBXNativeTarget "Stencil" */; - buildPhases = ( - C31002B0E077BC7C9826CF9D125C9107 /* Sources */, - 2BA4F35695073C4050477653393D89AC /* Frameworks */, - 8BFA6858344D714F1A1C11799107C683 /* Headers */, - ); - buildRules = ( - ); - dependencies = ( - 1D633FCEE83F4975F809F007B41F3CA7 /* PBXTargetDependency */, - ); - name = Stencil; - productName = Stencil; - productReference = D58745F3FACA2D18464F96FCC2C7E325 /* Stencil.framework */; + productReference = 2F0AA956E32A369C46A15D94571016A9 /* Pods_Templates_UnitTests.framework */; productType = "com.apple.product-type.framework"; }; /* End PBXNativeTarget section */ @@ -1357,79 +1226,60 @@ en, ); mainGroup = 7DB346D0F39D3F0E887471402A8071AB; - productRefGroup = C3A6C15DBD694C3E9C1E86F9AE732FA9 /* Products */; + productRefGroup = 1F3D57661A2D1DE0369137E32807F052 /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( 12E0F84081ABA0678A40FCDF294E5A65 /* Commander */, 4D10E4FF5A483B852B47CCA0B994E340 /* Kanna */, BBB46569A79C52426939AF96DA290CF9 /* PathKit */, - 9262F4B4C62C858E1A19F7C163A0922B /* Pods-swiftgen */, - D39894D9E12FFA87C5ECBBA37B73AE0E /* Pods-SwiftGen UnitTests */, - B87C37DE66096E0B04E6CF74E84DB74A /* Pods-SwiftGenKit UnitTests */, + 73CA1BD7F43C4A33FE4CFD4EB217943C /* Pods-swiftgen */, + 11E9E8DA960B83354CEB8E7042858544 /* Pods-SwiftGen UnitTests */, + 0A8577A4A2EAF5284B80359873790C32 /* Pods-SwiftGenKit */, + D93D8857C1185572F5A0716495D7A884 /* Pods-SwiftGenKit UnitTests */, FBDFF66DD4691D43545AB6AF7BEF24B6 /* Pods-Templates UnitTests */, - FFC20C82FD3265C58EDEBE8C64960764 /* Stencil */, - 06B746BF324CCB3FC37334F087173F0E /* StencilSwiftKit */, - 0BD7DE1296FE81ADA9236153E912FCD8 /* SwiftGenKit */, - C938BBC036F7B18E50D6A376B38F11DF /* Yams */, + E1627DDAF1A0884D6F43093CF781AE6B /* Stencil */, + 3750EDCA0E0EF4DE3FA18CEDFBEF5A4A /* StencilSwiftKit */, + 8C34778C96A8C1AE1673F661EBB20C72 /* Yams */, ); }; /* End PBXProject section */ /* Begin PBXSourcesBuildPhase section */ - 071AF53D1D5053B187C6FAA2C030D022 /* Sources */ = { + 1549A7F4F0103C446F90728989FE74E9 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - A1ABE18E9AD440C16105C242FBFD1EEA /* Pods-SwiftGen UnitTests-dummy.m in Sources */, + E9A4AD38A6BF512B0847EFAD0F2A8C4C /* api.c in Sources */, + 2C84D8700C154D8E01282B003EC0E4DA /* Constructor.swift in Sources */, + E169A81C2F41BCED00388A40ED096CAE /* dumper.c in Sources */, + 1C6E6549FF0040C3FEDEC69D0928E1D5 /* emitter.c in Sources */, + C5EBE01C22F936CD5B48EA49BD93AF6C /* Emitter.swift in Sources */, + 3E795BB4A21FCEF88103E465D08A5718 /* loader.c in Sources */, + 6939ED51E0F9238A05F60D27A9415D77 /* Mark.swift in Sources */, + FC73A0EFBAEA673B0990E883938B63CE /* Node.Mapping.swift in Sources */, + 824B3C69163FD408E21BEE7DEB9BC9E4 /* Node.Scalar.swift in Sources */, + A5C9D2BFA9C806E2CF1E48487625FEA0 /* Node.Sequence.swift in Sources */, + 2C6293566429CA3C6FC819A4C44974D6 /* Node.swift in Sources */, + 40AB291C1E9F6850F4C09BD2BB7CD946 /* parser.c in Sources */, + 012CB473D64027416E5F06C7DCD0AD88 /* Parser.swift in Sources */, + 920FDD426E7FFCF3F9DFF5F6E26B7704 /* reader.c in Sources */, + AA1679E87FA139AC2610DE1D7268C0D0 /* Representer.swift in Sources */, + F08DF928AC4B48DB7592DA882E646431 /* Resolver.swift in Sources */, + B2C18E64E64800C9EE5F17CDFE8399B8 /* scanner.c in Sources */, + 583FC9B7EBAC6470BF53CE427FC72D54 /* String+Yams.swift in Sources */, + C20A747251AF68FBBC91C1A6213D75D5 /* Tag.swift in Sources */, + 4D7A74BEAD0938EE7BD86E584F847704 /* writer.c in Sources */, + 5528811EA188E0899ED495FF7AD460B7 /* YamlError.swift in Sources */, + BCF4E286FC6711F98B9D364AF0214FE0 /* Yams-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 09B5B21B3340F15FC7DF127F784D1C78 /* Sources */ = { + 19EF8CAD96EC2FFCB0950E9267531FD6 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - CB740F59B6F0AC05A489D1CE1061D79E /* PathKit-dummy.m in Sources */, - 4883DBB8B0294F54C812013BF87D3B37 /* PathKit.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 0BF1695A1FDB54654984C37D9A8048A0 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 986B039B504B837671D7E57BE2E1C587 /* Pods-swiftgen-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 19CAEA646071F4CB6A985959D1011003 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - FC881C76E6D407C76CAB6543EC86268F /* AssetsCatalogContext.swift in Sources */, - 9AFB40C280B2EE1BC9A104A17AFB12B6 /* AssetsCatalogParser.swift in Sources */, - EB98103C4E2D799BBAAF3918559EC46F /* ColorsCLRFileParser.swift in Sources */, - E879656CA0053CEEC396AFCE87291065 /* ColorsContext.swift in Sources */, - BD06EE2D2AFCF40CDA2038E0C72CFB03 /* ColorsJSONFileParser.swift in Sources */, - C82A7A43342E507A4C20C2B2D07D6253 /* ColorsParser.swift in Sources */, - 5792E1589905DD9069FB9C6DDD597F42 /* ColorsTXTFileParser.swift in Sources */, - 5D07EEE29DAE491DD2E111BDB65D376E /* ColorsXMLFileParser.swift in Sources */, - BBD9E144005CBDBEA39AC1E9A1D41CA1 /* FontsContext.swift in Sources */, - 9E0EAC310F2E827C6EA5C0DB2A57C185 /* FontsParser.swift in Sources */, - A1C09F16A6806F59EB6C142456E92D24 /* Parser.swift in Sources */, - 45E60DE373050F8CF7070A030E80158F /* StoryboardParser.swift in Sources */, - 57A475269BC08FEC3574AB018C64C80E /* StoryboardsContext.swift in Sources */, - C576BE342408E16A13C932DF9FF6C743 /* StringsContext.swift in Sources */, - 0276A23062CB53E49BDDA10A54DBA7B9 /* StringsParser.swift in Sources */, - D7FA856D0BD741FF0E8AFC962AB6C31B /* SwiftGenKit-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 1F216032C930584CAC67799CF8A239E9 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 6049A8E1463E7FF77E76EFAA7AA7140D /* Pods-SwiftGenKit UnitTests-dummy.m in Sources */, + 8365236212F6A2F4C56B301AF1998B23 /* Pods-SwiftGenKit-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1446,54 +1296,55 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 787D1D00A3E1E8DA34E9A20ABFC07228 /* Sources */ = { + 36C1821C5753F790C0693E72F08A692B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 025E3B2BB362A180A34F93930A89BC3D /* api.c in Sources */, - AED739EAD886901B0F58F00A377593C2 /* Constructor.swift in Sources */, - 1E54981617131D2CC854125C2F10D7CE /* dumper.c in Sources */, - 37E8979E16B4C05CA22F30E9C53D7EE4 /* emitter.c in Sources */, - 80E50DE018F8B498A3A4B07F993D7A89 /* Emitter.swift in Sources */, - D5EFEB861DC4D2615F34B06FCC23D8B1 /* loader.c in Sources */, - 95C814EE2408F7E106BFD472B7EB8A2B /* Mark.swift in Sources */, - DCD42E4B781417ABFD19E4552EADC632 /* Node.Mapping.swift in Sources */, - 0F21A0B9080494BE19400501F4F4C6C7 /* Node.Scalar.swift in Sources */, - 888F6506E37ECACAA7BDF2AE87286061 /* Node.Sequence.swift in Sources */, - 9E9B1B2345D73B43D50408FA51FCA41B /* Node.swift in Sources */, - D28BA61B4ADE8E5CE526CDDD8EF6C5FF /* parser.c in Sources */, - 189C8117DCBFD14F29DA2434CEEE30E8 /* Parser.swift in Sources */, - EC5F23EE6C16A383DA925B9221C957FE /* reader.c in Sources */, - 3FFDFD3D45A6CD3A55C102B2409C4BCA /* Representer.swift in Sources */, - A6939BC037DD3C1BA6A3CD5AB7C4E6EA /* Resolver.swift in Sources */, - AEF60028D9A0BBB171CA610A0D7A6763 /* scanner.c in Sources */, - 93A4819971C0FFE43505FB16CCA3CFE7 /* String+Yams.swift in Sources */, - E4E62CAEBDDEA43955898C5B4F62DCD2 /* Tag.swift in Sources */, - 0F8921099653946B4D4B71FFC2AE567F /* writer.c in Sources */, - 26ED199A407E75AF1AF467771B97A0B6 /* YamlError.swift in Sources */, - 2865697D91EF99ABF0E6D842B2498061 /* Yams-dummy.m in Sources */, + 4F56DAD2BC8835CF5C9331BE258B9A1E /* Pods-SwiftGen UnitTests-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - A600DF31E05282CD1B5631A75B4AA61C /* Sources */ = { + 5FCA4CE5597481B9D6D11D12673C7E41 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - A58C97DA482D29487805893ABD51869B /* CallMacroNodes.swift in Sources */, - 4CC6C3067A5019EC63D056D0DF75EAE6 /* Context.swift in Sources */, - 24667B191E1955165C7A0D321E07D34E /* Environment.swift in Sources */, - E056D0F76643ABA22E74E2E4D6414E01 /* Filters+Numbers.swift in Sources */, - 9E740CA8F7E9F3FA89B9A5A7C1E8CF02 /* Filters+Strings+Base.swift in Sources */, - B797CC497AF133E4B8AA998E8F5470BF /* Filters+Strings+Boolean.swift in Sources */, - B1868AD526F9B07B72879441C1ECD330 /* Filters+Strings+Lettercase.swift in Sources */, - B1CB5270AC2EC0DED12FFF2C7E681568 /* Filters+Strings+Mutations.swift in Sources */, - 7D407A604BE562BCD5F7CCC90079BDE0 /* Filters.swift in Sources */, - 4BD1C25EBFBB1DB54B8388E7FDC6511F /* MapNode.swift in Sources */, - FF02C56C01717A43F019F3489C22C8BB /* Parameters.swift in Sources */, - A35AD2966C2C90082D19C3F8841204F9 /* SetNode.swift in Sources */, - 1122005E9586BC5AC5703D4BE016765A /* StencilSwiftKit-dummy.m in Sources */, - 3677E882D94482D001B2936D468633CD /* StencilSwiftTemplate.swift in Sources */, - 3FD53ACD42E41BE6868911A8A049B6C6 /* SwiftIdentifier.swift in Sources */, + 040B29D0120B5B450B98FC67FEC958B8 /* PathKit-dummy.m in Sources */, + 6272EE69D3F5DE1DF030E2B979A19909 /* PathKit.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + A612EE0A244A728408750DEC8163327F /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 73C697AEA59145B90FECAEA9CC2C44FE /* Context.swift in Sources */, + A9192D873345D813A8F101343FAB9D91 /* Environment.swift in Sources */, + D98897FF735B0FC80600CEB3A790CC3C /* Errors.swift in Sources */, + 68586DD5B46141ED23CA28B947B7B8AD /* Expression.swift in Sources */, + 34149423685DA2DF36A400E401ED60DC /* Extension.swift in Sources */, + A13C854BE9D94DB5520A745B47C4E1EE /* Filters.swift in Sources */, + E2C199F4825D94CC6F7914BC759798B9 /* FilterTag.swift in Sources */, + CE4A6B56838A53CAE6018752D58ED9C2 /* ForTag.swift in Sources */, + DCAB81E7167B6B1C6D70327BB5646138 /* IfTag.swift in Sources */, + BCAC90A0D57C47F9047CB94A532CA23D /* Include.swift in Sources */, + AAF5A16246C087D1A594D1DAC0DA499A /* Inheritence.swift in Sources */, + 9FF74B1386B90344FA9E4D13C4002E74 /* Lexer.swift in Sources */, + B1649F26B469F42A8677289159127C73 /* Loader.swift in Sources */, + 035BF828DAD65FEE4A05A11C2DC93533 /* Node.swift in Sources */, + B0E3A64A258AD3D612BA438C2F26E28E /* NowTag.swift in Sources */, + 45843DAFF1A940C0EDD59F00C2814729 /* Parser.swift in Sources */, + 892888FA07D13CEA164605377940F627 /* Stencil-dummy.m in Sources */, + 845D99A5FADD51384D258DDFC5FE7C2B /* Template.swift in Sources */, + AE0B6C7D5CE641995EDAB9A34DF3CC6B /* Tokenizer.swift in Sources */, + 92D21A166C75A2AB91A0512700B4A002 /* Variable.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B158A84350B07661B74763660B474612 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 589D8709F5D683E559F44F331F81D694 /* Pods-SwiftGenKit UnitTests-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1522,131 +1373,92 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - C31002B0E077BC7C9826CF9D125C9107 /* Sources */ = { + C6010C3036258E52302FEE0B91374CD4 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFE07C26E4D24835823D309C89DBF33D /* Context.swift in Sources */, - 85B7FD13DCEF511D801FCAA8CE365EF4 /* Environment.swift in Sources */, - 474E831066282CB75DF63B8532C311F5 /* Errors.swift in Sources */, - 3C921B492F183E960336A2A7CD9B7059 /* Expression.swift in Sources */, - AE9454DAF810DF9ED5F1AB92155BC0AE /* Extension.swift in Sources */, - EB6B7D50630CF36903ABA2CD8CFE3AB4 /* Filters.swift in Sources */, - 94F06CD58668D57C63BA492085E5270B /* FilterTag.swift in Sources */, - F346E679C615776312767FB4C162372C /* ForTag.swift in Sources */, - 2E06DBBFEE0D4CA4043C88B59CB6EF31 /* IfTag.swift in Sources */, - CB35DAE76AB4AB946627AE73B597D1D8 /* Include.swift in Sources */, - A7833CFABF3FE8A24BBD3B5376DA5E00 /* Inheritence.swift in Sources */, - 9C8E13DCDF806E26A4BAF82810D298C2 /* Lexer.swift in Sources */, - 3F9416F2CCC68C329CB2FA9B48D0133B /* Loader.swift in Sources */, - 8862C132346331AADF96130ADEEBA9EB /* Node.swift in Sources */, - D0EC9C03DDFD4E0874F07045417A96CD /* NowTag.swift in Sources */, - F160C8BCCA7336A5581E55423474DC40 /* Parser.swift in Sources */, - 4F22D8DBF0481A0935B09AE24B8471AB /* Stencil-dummy.m in Sources */, - 1A1B3823A490DE70E812FFC5F3DF7589 /* Template.swift in Sources */, - 5A821EDAB718D303F701987DDB2AF1FE /* Tokenizer.swift in Sources */, - CAB08A04498D25159D47821CF470BDEA /* Variable.swift in Sources */, + BA915565A2380A7A8DAF5CE38F5EAE0B /* Pods-swiftgen-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E44A9E9F68657864DD4BEA1F11B19B7D /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + A5D5AE3786BE13112467D6125AE5B16B /* CallMacroNodes.swift in Sources */, + 295F38AAD416FC498C6680E6F941B415 /* Context.swift in Sources */, + B4B86D266B4B623D161F61CCB9CFE808 /* Environment.swift in Sources */, + D63F18712B2E5DF706920706CABDA79F /* Filters+Numbers.swift in Sources */, + D320D650D0468D800E2D5E8FDE4847E1 /* Filters+Strings+Base.swift in Sources */, + 02D84F8EBC7E13EB99CD3738DA071ED0 /* Filters+Strings+Boolean.swift in Sources */, + EBBC3C09B8C09908DEA4A35A850B64B7 /* Filters+Strings+Lettercase.swift in Sources */, + 7163AECB088178E6DA653C4243CAB1C8 /* Filters+Strings+Mutations.swift in Sources */, + 9080A96A1C5E815B8773F55E80957393 /* Filters.swift in Sources */, + 6673E39FEBF0326594317C63015D72FE /* MapNode.swift in Sources */, + B49BC04252A4FF89CD19FA37EC25376D /* Parameters.swift in Sources */, + 1ED3D59DFF6287FDE50EF497065ED3F1 /* SetNode.swift in Sources */, + CA2F30A6DB0BA01A0A1363532E9DAD05 /* StencilSwiftKit-dummy.m in Sources */, + 32D9E9F3F1117A43278FA56D65A5BADA /* StencilSwiftTemplate.swift in Sources */, + 6D2A45BB49A45340020BBF94977C8C74 /* SwiftIdentifier.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 009A40171E42B96F7FD897235C49499E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = PathKit; - target = BBB46569A79C52426939AF96DA290CF9 /* PathKit */; - targetProxy = 127AEAE31EAA7A297AC6EA3EC2E14286 /* PBXContainerItemProxy */; - }; - 05B7A9F0D55E58F311A6480E23001DC6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = PathKit; - target = BBB46569A79C52426939AF96DA290CF9 /* PathKit */; - targetProxy = B1A40DCDDC3239727137F6A92B556C3C /* PBXContainerItemProxy */; - }; - 07411B7E8645F3EE2D3D5FE1EADC4ECA /* PBXTargetDependency */ = { + 017662FA4467E1B526E16B3416E1E7F4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Stencil; - target = FFC20C82FD3265C58EDEBE8C64960764 /* Stencil */; - targetProxy = 12B87EB469CDBDD6F36EF5D2D3E0BCBA /* PBXContainerItemProxy */; + target = E1627DDAF1A0884D6F43093CF781AE6B /* Stencil */; + targetProxy = 0FC9CCC0D00055468A9239EDB3CDA2B5 /* PBXContainerItemProxy */; }; - 106E6148CA6ED10B5362091BE3977D43 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Kanna; - target = 4D10E4FF5A483B852B47CCA0B994E340 /* Kanna */; - targetProxy = 904CBE74D25D3D3C70F883F2A2B265CA /* PBXContainerItemProxy */; - }; - 190802EBA4F90D058F716DDD0C8D264B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = PathKit; - target = BBB46569A79C52426939AF96DA290CF9 /* PathKit */; - targetProxy = 5B2F5A8AAD625D37843B3B060B014431 /* PBXContainerItemProxy */; - }; - 1D633FCEE83F4975F809F007B41F3CA7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = PathKit; - target = BBB46569A79C52426939AF96DA290CF9 /* PathKit */; - targetProxy = F8F346515511130C83B197A03D9B7AF2 /* PBXContainerItemProxy */; - }; - 294D64FDBA027421BB5E97533CDE9E4E /* PBXTargetDependency */ = { + 0CA92D3C180DCCC42F594BDD100D2982 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = StencilSwiftKit; - target = 06B746BF324CCB3FC37334F087173F0E /* StencilSwiftKit */; - targetProxy = 030722AA2C02082FB394D625E5A9CE09 /* PBXContainerItemProxy */; + target = 3750EDCA0E0EF4DE3FA18CEDFBEF5A4A /* StencilSwiftKit */; + targetProxy = EA7D13B03648CBA089510C61AA1DD60F /* PBXContainerItemProxy */; }; - 318B9C13823277AE666C55A153F6F6B8 /* PBXTargetDependency */ = { + 14D575F14A1E3C96D00C8505F3965C85 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Yams; - target = C938BBC036F7B18E50D6A376B38F11DF /* Yams */; - targetProxy = A4AB6216C2AB8BFE22408478BEF40CD8 /* PBXContainerItemProxy */; + target = 8C34778C96A8C1AE1673F661EBB20C72 /* Yams */; + targetProxy = 4CD7962C1E73789DAD5936D7E520659B /* PBXContainerItemProxy */; }; - 3756C9DCFCE3C191338B9C8A34E57E7C /* PBXTargetDependency */ = { + 1A39EE42EAC467CDBE52CC7D40888BBE /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Stencil; - target = FFC20C82FD3265C58EDEBE8C64960764 /* Stencil */; - targetProxy = 7A0792C7FDE3779082D5FC189BCF8C47 /* PBXContainerItemProxy */; + target = E1627DDAF1A0884D6F43093CF781AE6B /* Stencil */; + targetProxy = 69AF01D7AC54E1729894B2CCB3436252 /* PBXContainerItemProxy */; }; - 38F698A92170736418FDC0F40D600635 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SwiftGenKit; - target = 0BD7DE1296FE81ADA9236153E912FCD8 /* SwiftGenKit */; - targetProxy = 960DD5AC386A2A4B8D84D6149EF3EEE8 /* PBXContainerItemProxy */; - }; - 4AB16842C12CB97328381C24301BA71C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SwiftGenKit; - target = 0BD7DE1296FE81ADA9236153E912FCD8 /* SwiftGenKit */; - targetProxy = C54563564FA7B7B38018BF8D65D565DD /* PBXContainerItemProxy */; - }; - 4E2B77E706F9DB81F55C9966F1F757B9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Kanna; - target = 4D10E4FF5A483B852B47CCA0B994E340 /* Kanna */; - targetProxy = 4074D9A66F52253CD500460733C003DB /* PBXContainerItemProxy */; - }; - 6341A65B5E4072A1158381A6F46A542F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Kanna; - target = 4D10E4FF5A483B852B47CCA0B994E340 /* Kanna */; - targetProxy = F0DD840D2B5525BD876695BFFDDD2DAF /* PBXContainerItemProxy */; - }; - 7C51B2C743AF4EF1F0A4FE23B46AF0F2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = StencilSwiftKit; - target = 06B746BF324CCB3FC37334F087173F0E /* StencilSwiftKit */; - targetProxy = 4672DB2C36FCF35BC2653FC640B71C61 /* PBXContainerItemProxy */; - }; - 8374E8C81F71365DEC826D58144C08A0 /* PBXTargetDependency */ = { + 36EF09B6F4E53B2FB48BAAD509BF37D6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = PathKit; target = BBB46569A79C52426939AF96DA290CF9 /* PathKit */; - targetProxy = 1FE836021046727B226E255724B9031E /* PBXContainerItemProxy */; + targetProxy = AE7D1D52DC083BC4869EA843726D2B94 /* PBXContainerItemProxy */; }; - 8BEF222F4A855B43CC2A04B5ACEA943E /* PBXTargetDependency */ = { + 3C7AED00743B3DC13DB23C6C86707057 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Stencil; - target = FFC20C82FD3265C58EDEBE8C64960764 /* Stencil */; - targetProxy = 7613AC519008C3AC75CFE303CCC87437 /* PBXContainerItemProxy */; + name = Yams; + target = 8C34778C96A8C1AE1673F661EBB20C72 /* Yams */; + targetProxy = 0CEA13E7D783DF970F8C6D820505DBFF /* PBXContainerItemProxy */; + }; + 48D3532532A15F1AF84FDEE0CE1A2813 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Commander; + target = 12E0F84081ABA0678A40FCDF294E5A65 /* Commander */; + targetProxy = C42786187B819E569C440AABF7095DEB /* PBXContainerItemProxy */; + }; + 69C6C687370065AA259BAC9458110FCB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Kanna; + target = 4D10E4FF5A483B852B47CCA0B994E340 /* Kanna */; + targetProxy = A210C2BC294DB10B5ADF8BCCBF8C4565 /* PBXContainerItemProxy */; + }; + 80FECBC48FD02BD9ACDB9F32FD8F57E4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = PathKit; + target = BBB46569A79C52426939AF96DA290CF9 /* PathKit */; + targetProxy = EDE171B56D0D3A2E944241215B37C987 /* PBXContainerItemProxy */; }; 8D0574F268436672A8A8A8333692E9BB /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -1654,442 +1466,208 @@ target = BBB46569A79C52426939AF96DA290CF9 /* PathKit */; targetProxy = 53E87F9C0141E1509E9881FE8C46FF75 /* PBXContainerItemProxy */; }; - 8F71A671A6D7665CB54306517BD7F132 /* PBXTargetDependency */ = { + 8FA454199546D02BFABC4232CD9CBA7B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SwiftGenKit; - target = 0BD7DE1296FE81ADA9236153E912FCD8 /* SwiftGenKit */; - targetProxy = 1B05342AD65F8E78FC705DDA7BC739DC /* PBXContainerItemProxy */; + name = PathKit; + target = BBB46569A79C52426939AF96DA290CF9 /* PathKit */; + targetProxy = E1A00E3B2B207E1BEB506D17DAD2C2E8 /* PBXContainerItemProxy */; + }; + 90BC11899923EB7EDB1040A11770ABFB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = PathKit; + target = BBB46569A79C52426939AF96DA290CF9 /* PathKit */; + targetProxy = 488634AA85EC41FCAB830A56AA8DCDD3 /* PBXContainerItemProxy */; }; A97CA7B7FE92AA026F1F5E8F5F25C993 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Stencil; - target = FFC20C82FD3265C58EDEBE8C64960764 /* Stencil */; + target = E1627DDAF1A0884D6F43093CF781AE6B /* Stencil */; targetProxy = 9731DB32E176D244FC403A78D3E1E764 /* PBXContainerItemProxy */; }; - B7EFD427BA250D8C8429CA8313E9AB5C /* PBXTargetDependency */ = { + B2D1BB1C749CE86888D03E5608DFE052 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Commander; - target = 12E0F84081ABA0678A40FCDF294E5A65 /* Commander */; - targetProxy = 71609C3411CD568C845E4B506F3881F1 /* PBXContainerItemProxy */; + name = Kanna; + target = 4D10E4FF5A483B852B47CCA0B994E340 /* Kanna */; + targetProxy = 00AC427DB3BC822CFC59035E4A0B934C /* PBXContainerItemProxy */; }; B9D2EE171C76A665A60AD8F95AF47306 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = StencilSwiftKit; - target = 06B746BF324CCB3FC37334F087173F0E /* StencilSwiftKit */; + target = 3750EDCA0E0EF4DE3FA18CEDFBEF5A4A /* StencilSwiftKit */; targetProxy = AF2B26CEBD186986C00C6B1498A7AFD1 /* PBXContainerItemProxy */; }; - CA58DAFA89DA9467CBBB46274F042975 /* PBXTargetDependency */ = { + D1C1262639B5F61E7F81F45CFEBAE113 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = StencilSwiftKit; + target = 3750EDCA0E0EF4DE3FA18CEDFBEF5A4A /* StencilSwiftKit */; + targetProxy = 993B228CDC14CE158B7FBA1EAEF93056 /* PBXContainerItemProxy */; + }; + DC8A7CB46997676F84C9E49E03DADEA7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = PathKit; target = BBB46569A79C52426939AF96DA290CF9 /* PathKit */; - targetProxy = 8CAC71DA5B2E054A636908BF08772BB2 /* PBXContainerItemProxy */; + targetProxy = 45402298802DE56EBB32D2D2CD01B8AA /* PBXContainerItemProxy */; }; - CD034A550296DB65EB302C0BD6C8EB4C /* PBXTargetDependency */ = { + EE56126017B8CD45D2E11958F0F9282F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Yams; - target = C938BBC036F7B18E50D6A376B38F11DF /* Yams */; - targetProxy = 2CE2047A3D83927BF584620DA9A3D7E6 /* PBXContainerItemProxy */; + name = Stencil; + target = E1627DDAF1A0884D6F43093CF781AE6B /* Stencil */; + targetProxy = C532760249D54C6ECE73A476426CFCC8 /* PBXContainerItemProxy */; }; - EABAB3936FD6C29FA195D79390835F79 /* PBXTargetDependency */ = { + F67EC8AA5427F69B0F89EA1C9D0D6800 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Kanna; - target = 4D10E4FF5A483B852B47CCA0B994E340 /* Kanna */; - targetProxy = BF5D99A62A0F12FBA6F4FE569A080B4D /* PBXContainerItemProxy */; + name = PathKit; + target = BBB46569A79C52426939AF96DA290CF9 /* PathKit */; + targetProxy = D3D414DEFF73232DEBCAEC9B5F867073 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ - 09A237D95D173EEE84BB5027CEE6B520 /* Release */ = { + 0154966AF4642F58BAA25A36C582C062 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 31286920C785B49282BFD679FC92D177 /* StencilSwiftKit.xcconfig */; buildSettings = { - CODE_SIGN_IDENTITY = ""; + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + CODE_SIGNING_REQUIRED = NO; + COPY_PHASE_STRIP = YES; + ENABLE_NS_ASSERTIONS = NO; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_PREPROCESSOR_DEFINITIONS = ( + "POD_CONFIGURATION_RELEASE=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACOSX_DEPLOYMENT_TARGET = 10.9; + PROVISIONING_PROFILE_SPECIFIER = NO_SIGNING/; + STRIP_INSTALLED_PRODUCT = NO; + SYMROOT = "${SRCROOT}/../build"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 0BDB2A6D9FB5A3D0CAC907559212C4E4 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = FDB98E2C2EA0A3B629C52160DEDF0381 /* Commander.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = "-"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; FRAMEWORK_VERSION = A; - GCC_PREFIX_HEADER = "Target Support Files/StencilSwiftKit/StencilSwiftKit-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/StencilSwiftKit/Info.plist"; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/Commander/Commander-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/Commander/Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; MACOSX_DEPLOYMENT_TARGET = 10.9; - MODULEMAP_FILE = "Target Support Files/StencilSwiftKit/StencilSwiftKit.modulemap"; - PRODUCT_NAME = StencilSwiftKit; + MODULEMAP_FILE = "Target Support Files/Commander/Commander.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + PRODUCT_NAME = Commander; SDKROOT = macosx; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; - SWIFT_VERSION = 3.2; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 4.0; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - 3285827118716209DEDA9229640C21AE /* Release */ = { + 0D966D6F29884E7F97C563ABB4407486 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 71486E32631AE7A1DB1B9B77C6FBCAFB /* SwiftGenKit.xcconfig */; + baseConfigurationReference = F893FFD2C51D5FE40EEAF29887B87C7F /* Yams.xcconfig */; buildSettings = { - CODE_SIGN_IDENTITY = ""; + CODE_SIGN_IDENTITY = "-"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; FRAMEWORK_VERSION = A; - GCC_PREFIX_HEADER = "Target Support Files/SwiftGenKit/SwiftGenKit-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/SwiftGenKit/Info.plist"; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/Yams/Yams-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/Yams/Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; MACOSX_DEPLOYMENT_TARGET = 10.9; - MODULEMAP_FILE = "Target Support Files/SwiftGenKit/SwiftGenKit.modulemap"; - PRODUCT_NAME = SwiftGenKit; + MODULEMAP_FILE = "Target Support Files/Yams/Yams.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = Yams; SDKROOT = macosx; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; - SWIFT_VERSION = 3.2; + SWIFT_VERSION = 4.0; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Release; }; - 400CC24BABCABBBD23645E26C89EA4B1 /* Debug */ = { + 0F90EF1C7248AC063B60697BAC8DA93F /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = BDA38753471B5DFE6D9EA06FE8A00A22 /* PathKit.xcconfig */; buildSettings = { - CODE_SIGN_IDENTITY = ""; + CODE_SIGN_IDENTITY = "-"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; FRAMEWORK_VERSION = A; + GCC_NO_COMMON_BLOCKS = YES; GCC_PREFIX_HEADER = "Target Support Files/PathKit/PathKit-prefix.pch"; INFOPLIST_FILE = "Target Support Files/PathKit/Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; MACOSX_DEPLOYMENT_TARGET = 10.9; MODULEMAP_FILE = "Target Support Files/PathKit/PathKit.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; PRODUCT_NAME = PathKit; SDKROOT = macosx; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - SWIFT_VERSION = 4.0; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 4599550759EC939D4B468BCD1A10109D /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 2390C963CFEF01B0C6E2DFB2D3717A89 /* Stencil.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - COMBINE_HIDPI_IMAGES = YES; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - FRAMEWORK_VERSION = A; - GCC_PREFIX_HEADER = "Target Support Files/Stencil/Stencil-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/Stencil/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 10.9; - MODULEMAP_FILE = "Target Support Files/Stencil/Stencil.modulemap"; - PRODUCT_NAME = Stencil; - SDKROOT = macosx; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - SWIFT_VERSION = 3.2; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 558521A991DFDD124E330030CA44C0C3 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 28661CF1F039CC008169556F00F81A10 /* Pods-SwiftGenKit UnitTests.debug.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - COMBINE_HIDPI_IMAGES = YES; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - FRAMEWORK_VERSION = A; - INFOPLIST_FILE = "Target Support Files/Pods-SwiftGenKit UnitTests/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; - MACH_O_TYPE = staticlib; - MACOSX_DEPLOYMENT_TARGET = 10.9; - MODULEMAP_FILE = "Target Support Files/Pods-SwiftGenKit UnitTests/Pods-SwiftGenKit UnitTests.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = Pods_SwiftGenKit_UnitTests; - SDKROOT = macosx; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - SWIFT_VERSION = 3.2; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 5F9F32AEFAE91540F5DA8D1D6E42E1B1 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 2390C963CFEF01B0C6E2DFB2D3717A89 /* Stencil.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - COMBINE_HIDPI_IMAGES = YES; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - FRAMEWORK_VERSION = A; - GCC_PREFIX_HEADER = "Target Support Files/Stencil/Stencil-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/Stencil/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 10.9; - MODULEMAP_FILE = "Target Support Files/Stencil/Stencil.modulemap"; - PRODUCT_NAME = Stencil; - SDKROOT = macosx; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; - SWIFT_VERSION = 3.2; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 64DF9FDD51742292F216DE1C533B9788 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = F893FFD2C51D5FE40EEAF29887B87C7F /* Yams.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - COMBINE_HIDPI_IMAGES = YES; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - FRAMEWORK_VERSION = A; - GCC_PREFIX_HEADER = "Target Support Files/Yams/Yams-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/Yams/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 10.9; - MODULEMAP_FILE = "Target Support Files/Yams/Yams.modulemap"; - PRODUCT_NAME = Yams; - SDKROOT = macosx; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - SWIFT_VERSION = 4.0; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 722370D8052EEC3A546A7C16C931FFDC /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = CBAECC2E168C6BECB5330A3A2DA3622B /* Kanna.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - COMBINE_HIDPI_IMAGES = YES; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - FRAMEWORK_VERSION = A; - GCC_PREFIX_HEADER = "Target Support Files/Kanna/Kanna-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/Kanna/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 10.9; - MODULEMAP_FILE = "Target Support Files/Kanna/Kanna.modulemap"; - PRODUCT_NAME = Kanna; - SDKROOT = macosx; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; - SWIFT_VERSION = 3.2; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 73911A1874B5C1475026DB05D475BF61 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 91E889CB06E8813DE6BC4636771D42CF /* Pods-SwiftGen UnitTests.release.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - COMBINE_HIDPI_IMAGES = YES; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - FRAMEWORK_VERSION = A; - INFOPLIST_FILE = "Target Support Files/Pods-SwiftGen UnitTests/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; - MACH_O_TYPE = staticlib; - MACOSX_DEPLOYMENT_TARGET = 10.9; - MODULEMAP_FILE = "Target Support Files/Pods-SwiftGen UnitTests/Pods-SwiftGen UnitTests.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = Pods_SwiftGen_UnitTests; - SDKROOT = macosx; - SKIP_INSTALL = YES; - SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; - SWIFT_VERSION = 3.2; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 7D86809A93895DA579C7664489F6A6F8 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = BAF62C8CF30DE46CA89C8F93C4EB1EAA /* Pods-Templates UnitTests.release.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - COMBINE_HIDPI_IMAGES = YES; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - FRAMEWORK_VERSION = A; - INFOPLIST_FILE = "Target Support Files/Pods-Templates UnitTests/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; - MACH_O_TYPE = staticlib; - MACOSX_DEPLOYMENT_TARGET = 10.9; - MODULEMAP_FILE = "Target Support Files/Pods-Templates UnitTests/Pods-Templates UnitTests.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = Pods_Templates_UnitTests; - SDKROOT = macosx; - SKIP_INSTALL = YES; - SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; - SWIFT_VERSION = 3.2; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 883191E3CC81CA8762126F948D466743 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = F71CB78E5B1103852D5FC03157B87290 /* Pods-Templates UnitTests.debug.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - COMBINE_HIDPI_IMAGES = YES; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - FRAMEWORK_VERSION = A; - INFOPLIST_FILE = "Target Support Files/Pods-Templates UnitTests/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; - MACH_O_TYPE = staticlib; - MACOSX_DEPLOYMENT_TARGET = 10.9; - MODULEMAP_FILE = "Target Support Files/Pods-Templates UnitTests/Pods-Templates UnitTests.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = Pods_Templates_UnitTests; - SDKROOT = macosx; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - SWIFT_VERSION = 3.2; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 8C70D7972347379D1C8B6BF029B0FF75 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = F893FFD2C51D5FE40EEAF29887B87C7F /* Yams.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - COMBINE_HIDPI_IMAGES = YES; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - FRAMEWORK_VERSION = A; - GCC_PREFIX_HEADER = "Target Support Files/Yams/Yams-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/Yams/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 10.9; - MODULEMAP_FILE = "Target Support Files/Yams/Yams.modulemap"; - PRODUCT_NAME = Yams; - SDKROOT = macosx; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; VERSIONING_SYSTEM = "apple-generic"; @@ -2097,94 +1675,48 @@ }; name = Release; }; - 928BA160D1A89DB3CEF789DA3C3AC18A /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 6939C97A7765146A3F01BC23B897D412 /* Pods-swiftgen.release.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - COMBINE_HIDPI_IMAGES = YES; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - FRAMEWORK_VERSION = A; - INFOPLIST_FILE = "Target Support Files/Pods-swiftgen/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; - MACH_O_TYPE = staticlib; - MACOSX_DEPLOYMENT_TARGET = 10.9; - MODULEMAP_FILE = "Target Support Files/Pods-swiftgen/Pods-swiftgen.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = Pods_swiftgen; - SDKROOT = macosx; - SKIP_INSTALL = YES; - SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; - SWIFT_VERSION = 3.2; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 92D88596A34C3F04B7B923E26E2DA7F6 /* Debug */ = { + 1ACCC5D7D6798FE768B014D3BD3B5D97 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; CLANG_ANALYZER_NONNULL = YES; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; CLANG_CXX_LIBRARY = "libc++"; CLANG_ENABLE_MODULES = YES; CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; CLANG_WARN_DOCUMENTATION_COMMENTS = YES; CLANG_WARN_EMPTY_BODY = YES; CLANG_WARN_ENUM_CONVERSION = YES; CLANG_WARN_INFINITE_RECURSION = YES; CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES; CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; CLANG_WARN_UNREACHABLE_CODE = YES; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; CODE_SIGNING_REQUIRED = NO; COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = dwarf; - ENABLE_STRICT_OBJC_MSGSEND = YES; ENABLE_TESTABILITY = YES; - GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_C_LANGUAGE_STANDARD = gnu99; GCC_DYNAMIC_NO_PIC = NO; - GCC_NO_COMMON_BLOCKS = YES; GCC_OPTIMIZATION_LEVEL = 0; GCC_PREPROCESSOR_DEFINITIONS = ( "POD_CONFIGURATION_DEBUG=1", "DEBUG=1", "$(inherited)", ); + GCC_SYMBOLS_PRIVATE_EXTERN = NO; GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_ABOUT_RETURN_TYPE = YES; GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; MACOSX_DEPLOYMENT_TARGET = 10.9; - MTL_ENABLE_DEBUG_INFO = YES; ONLY_ACTIVE_ARCH = YES; - PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = NO_SIGNING/; STRIP_INSTALLED_PRODUCT = NO; SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; @@ -2192,127 +1724,75 @@ }; name = Debug; }; - 99EF98D5D31437F1F7DB4B5DA90E1A25 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = FDB98E2C2EA0A3B629C52160DEDF0381 /* Commander.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - COMBINE_HIDPI_IMAGES = YES; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - FRAMEWORK_VERSION = A; - GCC_PREFIX_HEADER = "Target Support Files/Commander/Commander-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/Commander/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 10.9; - MODULEMAP_FILE = "Target Support Files/Commander/Commander.modulemap"; - PRODUCT_NAME = Commander; - SDKROOT = macosx; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - SWIFT_VERSION = 4.0; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 9A128DAC194C7D1EF996104469A3EB99 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 71486E32631AE7A1DB1B9B77C6FBCAFB /* SwiftGenKit.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - COMBINE_HIDPI_IMAGES = YES; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - FRAMEWORK_VERSION = A; - GCC_PREFIX_HEADER = "Target Support Files/SwiftGenKit/SwiftGenKit-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/SwiftGenKit/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 10.9; - MODULEMAP_FILE = "Target Support Files/SwiftGenKit/SwiftGenKit.modulemap"; - PRODUCT_NAME = SwiftGenKit; - SDKROOT = macosx; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - SWIFT_VERSION = 3.2; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - A077B85149CFA6BFA91AF041CAA04D55 /* Release */ = { + 2A6AEBEB46C5367B8CE3E724CA63AB2A /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = BDA38753471B5DFE6D9EA06FE8A00A22 /* PathKit.xcconfig */; buildSettings = { - CODE_SIGN_IDENTITY = ""; + CODE_SIGN_IDENTITY = "-"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; FRAMEWORK_VERSION = A; + GCC_NO_COMMON_BLOCKS = YES; GCC_PREFIX_HEADER = "Target Support Files/PathKit/PathKit-prefix.pch"; INFOPLIST_FILE = "Target Support Files/PathKit/Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; MACOSX_DEPLOYMENT_TARGET = 10.9; MODULEMAP_FILE = "Target Support Files/PathKit/PathKit.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; PRODUCT_NAME = PathKit; SDKROOT = macosx; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; SWIFT_VERSION = 4.0; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - C631253BEC63DD11AB8812067DF1797C /* Debug */ = { + 2B6950B73B20ACDD846D5E109E2D2DF3 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CBAECC2E168C6BECB5330A3A2DA3622B /* Kanna.xcconfig */; + baseConfigurationReference = DF92A2FD6CA8A3688ACBBA4681AF7205 /* Pods-Templates UnitTests.debug.xcconfig */; buildSettings = { - CODE_SIGN_IDENTITY = ""; + CODE_SIGN_IDENTITY = "-"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; FRAMEWORK_VERSION = A; - GCC_PREFIX_HEADER = "Target Support Files/Kanna/Kanna-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/Kanna/Info.plist"; + GCC_NO_COMMON_BLOCKS = YES; + INFOPLIST_FILE = "Target Support Files/Pods-Templates UnitTests/Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; MACOSX_DEPLOYMENT_TARGET = 10.9; - MODULEMAP_FILE = "Target Support Files/Kanna/Kanna.modulemap"; - PRODUCT_NAME = Kanna; + MODULEMAP_FILE = "Target Support Files/Pods-Templates UnitTests/Pods-Templates UnitTests.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = Pods_Templates_UnitTests; SDKROOT = macosx; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; SWIFT_VERSION = 3.2; VERSIONING_SYSTEM = "apple-generic"; @@ -2320,59 +1800,103 @@ }; name = Debug; }; - C6A9B33EC1D6710E7A71933CB6A7A805 /* Release */ = { + 387E73F70016BBBC0EA880FAAE64C6C4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FDB98E2C2EA0A3B629C52160DEDF0381 /* Commander.xcconfig */; + baseConfigurationReference = CBAECC2E168C6BECB5330A3A2DA3622B /* Kanna.xcconfig */; buildSettings = { - CODE_SIGN_IDENTITY = ""; + CODE_SIGN_IDENTITY = "-"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; FRAMEWORK_VERSION = A; - GCC_PREFIX_HEADER = "Target Support Files/Commander/Commander-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/Commander/Info.plist"; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/Kanna/Kanna-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/Kanna/Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; MACOSX_DEPLOYMENT_TARGET = 10.9; - MODULEMAP_FILE = "Target Support Files/Commander/Commander.modulemap"; - PRODUCT_NAME = Commander; + MODULEMAP_FILE = "Target Support Files/Kanna/Kanna.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = Kanna; SDKROOT = macosx; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; - SWIFT_VERSION = 4.0; + SWIFT_VERSION = 3.2; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Release; }; - D74F4222065FF0121896B82C81CC2A32 /* Debug */ = { + 39DE2C5AFD87518C7DC4BD86372D0046 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3B0D9CC37D75520638102982C82F78D1 /* Pods-SwiftGen UnitTests.debug.xcconfig */; + baseConfigurationReference = F893FFD2C51D5FE40EEAF29887B87C7F /* Yams.xcconfig */; buildSettings = { - CODE_SIGN_IDENTITY = ""; + CODE_SIGN_IDENTITY = "-"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; FRAMEWORK_VERSION = A; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/Yams/Yams-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/Yams/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; + MACOSX_DEPLOYMENT_TARGET = 10.9; + MODULEMAP_FILE = "Target Support Files/Yams/Yams.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + PRODUCT_NAME = Yams; + SDKROOT = macosx; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 4.0; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 3E46603F717E86E460521A988E178FE2 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 302F7901636DDABB479FC9971C641DB1 /* Pods-SwiftGen UnitTests.debug.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = "-"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + COMBINE_HIDPI_IMAGES = YES; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + FRAMEWORK_VERSION = A; + GCC_NO_COMMON_BLOCKS = YES; INFOPLIST_FILE = "Target Support Files/Pods-SwiftGen UnitTests/Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; MACH_O_TYPE = staticlib; MACOSX_DEPLOYMENT_TARGET = 10.9; MODULEMAP_FILE = "Target Support Files/Pods-SwiftGen UnitTests/Pods-SwiftGen UnitTests.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; @@ -2388,27 +1912,67 @@ }; name = Debug; }; - D90E8FC28843630636BC5F79DB900360 /* Release */ = { + 512F476B9578F8FEBA4318D440600460 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7D808030D0B4B98B95A15EA68A091B03 /* Pods-SwiftGenKit UnitTests.release.xcconfig */; + baseConfigurationReference = 31286920C785B49282BFD679FC92D177 /* StencilSwiftKit.xcconfig */; buildSettings = { - CODE_SIGN_IDENTITY = ""; + CODE_SIGN_IDENTITY = "-"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; FRAMEWORK_VERSION = A; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/StencilSwiftKit/StencilSwiftKit-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/StencilSwiftKit/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; + MACOSX_DEPLOYMENT_TARGET = 10.9; + MODULEMAP_FILE = "Target Support Files/StencilSwiftKit/StencilSwiftKit.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + PRODUCT_NAME = StencilSwiftKit; + SDKROOT = macosx; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 3.2; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 610E6E0917422DF196CDF12573582B10 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = A2D9985BCA9FF5E0930396BA94076FC1 /* Pods-SwiftGenKit UnitTests.release.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = "-"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + COMBINE_HIDPI_IMAGES = YES; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + FRAMEWORK_VERSION = A; + GCC_NO_COMMON_BLOCKS = YES; INFOPLIST_FILE = "Target Support Files/Pods-SwiftGenKit UnitTests/Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; MACH_O_TYPE = staticlib; MACOSX_DEPLOYMENT_TARGET = 10.9; MODULEMAP_FILE = "Target Support Files/Pods-SwiftGenKit UnitTests/Pods-SwiftGenKit UnitTests.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; @@ -2423,31 +1987,71 @@ }; name = Release; }; - D9C0021DC4066221D0513E7B82B060B0 /* Debug */ = { + 6CA219F7A900C0D3FEF0D7CBEC4AB2B8 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 31286920C785B49282BFD679FC92D177 /* StencilSwiftKit.xcconfig */; buildSettings = { - CODE_SIGN_IDENTITY = ""; + CODE_SIGN_IDENTITY = "-"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; FRAMEWORK_VERSION = A; + GCC_NO_COMMON_BLOCKS = YES; GCC_PREFIX_HEADER = "Target Support Files/StencilSwiftKit/StencilSwiftKit-prefix.pch"; INFOPLIST_FILE = "Target Support Files/StencilSwiftKit/Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; MACOSX_DEPLOYMENT_TARGET = 10.9; MODULEMAP_FILE = "Target Support Files/StencilSwiftKit/StencilSwiftKit.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; PRODUCT_NAME = StencilSwiftKit; SDKROOT = macosx; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; + SWIFT_VERSION = 3.2; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 726DFBD775C042B92DAD88E8DF935A2E /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = CBAECC2E168C6BECB5330A3A2DA3622B /* Kanna.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = "-"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + COMBINE_HIDPI_IMAGES = YES; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + FRAMEWORK_VERSION = A; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/Kanna/Kanna-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/Kanna/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; + MACOSX_DEPLOYMENT_TARGET = 10.9; + MODULEMAP_FILE = "Target Support Files/Kanna/Kanna.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + PRODUCT_NAME = Kanna; + SDKROOT = macosx; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; SWIFT_VERSION = 3.2; VERSIONING_SYSTEM = "apple-generic"; @@ -2455,27 +2059,375 @@ }; name = Debug; }; - DBFC1C25215EF6CA98AC7F1785142FBF /* Debug */ = { + A585C34BB4A5C6A1439AFC943888B15F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9C0BA96CC10A64F3C84F03ABF789D785 /* Pods-swiftgen.debug.xcconfig */; + baseConfigurationReference = C301DABEC77D714A8333E8FD5D2ACB26 /* Pods-SwiftGenKit.debug.xcconfig */; buildSettings = { - CODE_SIGN_IDENTITY = ""; + CODE_SIGN_IDENTITY = "-"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; FRAMEWORK_VERSION = A; + GCC_NO_COMMON_BLOCKS = YES; + INFOPLIST_FILE = "Target Support Files/Pods-SwiftGenKit/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MACOSX_DEPLOYMENT_TARGET = 10.9; + MODULEMAP_FILE = "Target Support Files/Pods-SwiftGenKit/Pods-SwiftGenKit.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = Pods_SwiftGenKit; + SDKROOT = macosx; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 3.2; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + A784678B7022244AC625D36BC889E04B /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 2BEB7E8B8E2EB4B568546ED128EF278C /* Pods-Templates UnitTests.release.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = "-"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + COMBINE_HIDPI_IMAGES = YES; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + FRAMEWORK_VERSION = A; + GCC_NO_COMMON_BLOCKS = YES; + INFOPLIST_FILE = "Target Support Files/Pods-Templates UnitTests/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MACOSX_DEPLOYMENT_TARGET = 10.9; + MODULEMAP_FILE = "Target Support Files/Pods-Templates UnitTests/Pods-Templates UnitTests.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = Pods_Templates_UnitTests; + SDKROOT = macosx; + SKIP_INSTALL = YES; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; + SWIFT_VERSION = 3.2; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + A795C5D326310824A62726F15444A821 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 2390C963CFEF01B0C6E2DFB2D3717A89 /* Stencil.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = "-"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + COMBINE_HIDPI_IMAGES = YES; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + FRAMEWORK_VERSION = A; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/Stencil/Stencil-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/Stencil/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; + MACOSX_DEPLOYMENT_TARGET = 10.9; + MODULEMAP_FILE = "Target Support Files/Stencil/Stencil.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + PRODUCT_NAME = Stencil; + SDKROOT = macosx; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 3.2; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + BC86B21C828130DDBE910CF2BA927DB1 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 60E9A70E65EAEE51E8DD0CF3860C9C4F /* Pods-SwiftGenKit.release.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = "-"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + COMBINE_HIDPI_IMAGES = YES; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + FRAMEWORK_VERSION = A; + GCC_NO_COMMON_BLOCKS = YES; + INFOPLIST_FILE = "Target Support Files/Pods-SwiftGenKit/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MACOSX_DEPLOYMENT_TARGET = 10.9; + MODULEMAP_FILE = "Target Support Files/Pods-SwiftGenKit/Pods-SwiftGenKit.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = Pods_SwiftGenKit; + SDKROOT = macosx; + SKIP_INSTALL = YES; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; + SWIFT_VERSION = 3.2; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + BE7808519D4BC5FAFDB0B9874B66740F /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = FDB98E2C2EA0A3B629C52160DEDF0381 /* Commander.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = "-"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + COMBINE_HIDPI_IMAGES = YES; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + FRAMEWORK_VERSION = A; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/Commander/Commander-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/Commander/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; + MACOSX_DEPLOYMENT_TARGET = 10.9; + MODULEMAP_FILE = "Target Support Files/Commander/Commander.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = Commander; + SDKROOT = macosx; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; + SWIFT_VERSION = 4.0; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + C7EEB1F020F4FFADBD8F690AE88AE626 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 226C39393337C59A34C1E31327819F02 /* Pods-SwiftGenKit UnitTests.debug.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = "-"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + COMBINE_HIDPI_IMAGES = YES; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + FRAMEWORK_VERSION = A; + GCC_NO_COMMON_BLOCKS = YES; + INFOPLIST_FILE = "Target Support Files/Pods-SwiftGenKit UnitTests/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MACOSX_DEPLOYMENT_TARGET = 10.9; + MODULEMAP_FILE = "Target Support Files/Pods-SwiftGenKit UnitTests/Pods-SwiftGenKit UnitTests.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = Pods_SwiftGenKit_UnitTests; + SDKROOT = macosx; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 3.2; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + CC4B65226E41B63D9F21CF5766E96E53 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 2390C963CFEF01B0C6E2DFB2D3717A89 /* Stencil.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = "-"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + COMBINE_HIDPI_IMAGES = YES; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + FRAMEWORK_VERSION = A; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/Stencil/Stencil-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/Stencil/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; + MACOSX_DEPLOYMENT_TARGET = 10.9; + MODULEMAP_FILE = "Target Support Files/Stencil/Stencil.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = Stencil; + SDKROOT = macosx; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; + SWIFT_VERSION = 3.2; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + D32B2687D6A3B20A70540B132DEEAEA7 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 1E6966294EA0A4DDD0E2C1DBEB428E7E /* Pods-SwiftGen UnitTests.release.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = "-"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + COMBINE_HIDPI_IMAGES = YES; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + FRAMEWORK_VERSION = A; + GCC_NO_COMMON_BLOCKS = YES; + INFOPLIST_FILE = "Target Support Files/Pods-SwiftGen UnitTests/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MACOSX_DEPLOYMENT_TARGET = 10.9; + MODULEMAP_FILE = "Target Support Files/Pods-SwiftGen UnitTests/Pods-SwiftGen UnitTests.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = Pods_SwiftGen_UnitTests; + SDKROOT = macosx; + SKIP_INSTALL = YES; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; + SWIFT_VERSION = 3.2; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + E32542C41ACAEFE87544F37CF1A9788A /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B83DF6A2CB696A30381BED81EFF648E0 /* Pods-swiftgen.release.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = "-"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + COMBINE_HIDPI_IMAGES = YES; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + FRAMEWORK_VERSION = A; + GCC_NO_COMMON_BLOCKS = YES; INFOPLIST_FILE = "Target Support Files/Pods-swiftgen/Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; MACH_O_TYPE = staticlib; MACOSX_DEPLOYMENT_TARGET = 10.9; MODULEMAP_FILE = "Target Support Files/Pods-swiftgen/Pods-swiftgen.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = Pods_swiftgen; + SDKROOT = macosx; + SKIP_INSTALL = YES; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; + SWIFT_VERSION = 3.2; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + E3B970A7A20FC8DC92B4E2B0537BF774 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 50F9FB22A2041E9431DF32A841D8D1B2 /* Pods-swiftgen.debug.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = "-"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + COMBINE_HIDPI_IMAGES = YES; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + FRAMEWORK_VERSION = A; + GCC_NO_COMMON_BLOCKS = YES; + INFOPLIST_FILE = "Target Support Files/Pods-swiftgen/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MACOSX_DEPLOYMENT_TARGET = 10.9; + MODULEMAP_FILE = "Target Support Files/Pods-swiftgen/Pods-swiftgen.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; @@ -2491,69 +2443,32 @@ }; name = Debug; }; - FC02EFD93E1F4AA4AC667927B4B5A83F /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_DOCUMENTATION_COMMENTS = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - CODE_SIGNING_REQUIRED = NO; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu11; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "POD_CONFIGURATION_RELEASE=1", - "$(inherited)", - ); - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.9; - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = "$(TARGET_NAME)"; - PROVISIONING_PROFILE_SPECIFIER = NO_SIGNING/; - STRIP_INSTALLED_PRODUCT = NO; - SYMROOT = "${SRCROOT}/../build"; - }; - name = Release; - }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ + 0064832A3FC5A4DA14CE1CF03C3B1A94 /* Build configuration list for PBXNativeTarget "Pods-SwiftGenKit UnitTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C7EEB1F020F4FFADBD8F690AE88AE626 /* Debug */, + 610E6E0917422DF196CDF12573582B10 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 032FE6A4FF03E43B2C60899A35389C7F /* Build configuration list for PBXNativeTarget "Kanna" */ = { isa = XCConfigurationList; buildConfigurations = ( - C631253BEC63DD11AB8812067DF1797C /* Debug */, - 722370D8052EEC3A546A7C16C931FFDC /* Release */, + 726DFBD775C042B92DAD88E8DF935A2E /* Debug */, + 387E73F70016BBBC0EA880FAAE64C6C4 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 0582C3E6EB39704115635E476618496B /* Build configuration list for PBXNativeTarget "Pods-SwiftGen UnitTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 3E46603F717E86E460521A988E178FE2 /* Debug */, + D32B2687D6A3B20A70540B132DEEAEA7 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -2561,17 +2476,8 @@ 0AEB027DADF0C7EF3FFB930E37187EB6 /* Build configuration list for PBXNativeTarget "Commander" */ = { isa = XCConfigurationList; buildConfigurations = ( - 99EF98D5D31437F1F7DB4B5DA90E1A25 /* Debug */, - C6A9B33EC1D6710E7A71933CB6A7A805 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 12A5A2FCE1EDA0414BA8F130F8712B1E /* Build configuration list for PBXNativeTarget "StencilSwiftKit" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - D9C0021DC4066221D0513E7B82B060B0 /* Debug */, - 09A237D95D173EEE84BB5027CEE6B520 /* Release */, + 0BDB2A6D9FB5A3D0CAC907559212C4E4 /* Debug */, + BE7808519D4BC5FAFDB0B9874B66740F /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -2579,8 +2485,8 @@ 23F10DCF4CC19FAEB872F3FF8C874D18 /* Build configuration list for PBXNativeTarget "PathKit" */ = { isa = XCConfigurationList; buildConfigurations = ( - 400CC24BABCABBBD23645E26C89EA4B1 /* Debug */, - A077B85149CFA6BFA91AF041CAA04D55 /* Release */, + 2A6AEBEB46C5367B8CE3E724CA63AB2A /* Debug */, + 0F90EF1C7248AC063B60697BAC8DA93F /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -2588,17 +2494,17 @@ 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = { isa = XCConfigurationList; buildConfigurations = ( - 92D88596A34C3F04B7B923E26E2DA7F6 /* Debug */, - FC02EFD93E1F4AA4AC667927B4B5A83F /* Release */, + 1ACCC5D7D6798FE768B014D3BD3B5D97 /* Debug */, + 0154966AF4642F58BAA25A36C582C062 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 313A6AF836F5073AD186462E0D69D345 /* Build configuration list for PBXNativeTarget "Pods-swiftgen" */ = { + 33EB3C498EEF718D24C7450C26861CAE /* Build configuration list for PBXNativeTarget "Yams" */ = { isa = XCConfigurationList; buildConfigurations = ( - DBFC1C25215EF6CA98AC7F1785142FBF /* Debug */, - 928BA160D1A89DB3CEF789DA3C3AC18A /* Release */, + 39DE2C5AFD87518C7DC4BD86372D0046 /* Debug */, + 0D966D6F29884E7F97C563ABB4407486 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -2606,53 +2512,44 @@ 4960F6AD001E08A39B94DA104761C88C /* Build configuration list for PBXNativeTarget "Pods-Templates UnitTests" */ = { isa = XCConfigurationList; buildConfigurations = ( - 883191E3CC81CA8762126F948D466743 /* Debug */, - 7D86809A93895DA579C7664489F6A6F8 /* Release */, + 2B6950B73B20ACDD846D5E109E2D2DF3 /* Debug */, + A784678B7022244AC625D36BC889E04B /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 566D77FC53423A0F1670AFD9B0111088 /* Build configuration list for PBXNativeTarget "Yams" */ = { + 6054E704E73AE31F82362BDD8823A0B5 /* Build configuration list for PBXNativeTarget "Pods-swiftgen" */ = { isa = XCConfigurationList; buildConfigurations = ( - 64DF9FDD51742292F216DE1C533B9788 /* Debug */, - 8C70D7972347379D1C8B6BF029B0FF75 /* Release */, + E3B970A7A20FC8DC92B4E2B0537BF774 /* Debug */, + E32542C41ACAEFE87544F37CF1A9788A /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 8E560F6D2416F8FD097939579DB7187A /* Build configuration list for PBXNativeTarget "SwiftGenKit" */ = { + 8DF0DECCCC0C68F3B41416DD270763BD /* Build configuration list for PBXNativeTarget "Pods-SwiftGenKit" */ = { isa = XCConfigurationList; buildConfigurations = ( - 9A128DAC194C7D1EF996104469A3EB99 /* Debug */, - 3285827118716209DEDA9229640C21AE /* Release */, + A585C34BB4A5C6A1439AFC943888B15F /* Debug */, + BC86B21C828130DDBE910CF2BA927DB1 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - B5ABCC90E536EC95C32F43A5AE8E58F8 /* Build configuration list for PBXNativeTarget "Pods-SwiftGenKit UnitTests" */ = { + 98C9D65943F99486C5861EEC2D5FBB6D /* Build configuration list for PBXNativeTarget "Stencil" */ = { isa = XCConfigurationList; buildConfigurations = ( - 558521A991DFDD124E330030CA44C0C3 /* Debug */, - D90E8FC28843630636BC5F79DB900360 /* Release */, + A795C5D326310824A62726F15444A821 /* Debug */, + CC4B65226E41B63D9F21CF5766E96E53 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - E6E1C4DFBD55CC221A11D2C002CA3319 /* Build configuration list for PBXNativeTarget "Stencil" */ = { + CFE0BD42F8F74111F96CB1E862C22B6A /* Build configuration list for PBXNativeTarget "StencilSwiftKit" */ = { isa = XCConfigurationList; buildConfigurations = ( - 4599550759EC939D4B468BCD1A10109D /* Debug */, - 5F9F32AEFAE91540F5DA8D1D6E42E1B1 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - EE215D444C3C033A2775F5BE6A4DECD8 /* Build configuration list for PBXNativeTarget "Pods-SwiftGen UnitTests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - D74F4222065FF0121896B82C81CC2A32 /* Debug */, - 73911A1874B5C1475026DB05D475BF61 /* Release */, + 512F476B9578F8FEBA4318D440600460 /* Debug */, + 6CA219F7A900C0D3FEF0D7CBEC4AB2B8 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; diff --git a/Pods/Target Support Files/PathKit/PathKit.xcconfig b/Pods/Target Support Files/PathKit/PathKit.xcconfig index 0fbd7ff9..ce335515 100644 --- a/Pods/Target Support Files/PathKit/PathKit.xcconfig +++ b/Pods/Target Support Files/PathKit/PathKit.xcconfig @@ -2,7 +2,7 @@ CODE_SIGN_IDENTITY = CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/PathKit GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" -OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" "-suppress-warnings" +OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" PODS_BUILD_DIR = $BUILD_DIR PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_ROOT = ${SRCROOT} diff --git a/Pods/Target Support Files/Pods-SwiftGen UnitTests/Pods-SwiftGen UnitTests-acknowledgements.markdown b/Pods/Target Support Files/Pods-SwiftGen UnitTests/Pods-SwiftGen UnitTests-acknowledgements.markdown index f15862ee..7d453402 100644 --- a/Pods/Target Support Files/Pods-SwiftGen UnitTests/Pods-SwiftGen UnitTests-acknowledgements.markdown +++ b/Pods/Target Support Files/Pods-SwiftGen UnitTests/Pods-SwiftGen UnitTests-acknowledgements.markdown @@ -1,30 +1,6 @@ # Acknowledgements This application makes use of the following third party libraries: -## Kanna - -The MIT License (MIT) - -Copyright (c) 2014 - 2015 Atsushi Kiwaki (@_tid_) - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - ## PathKit Copyright (c) 2014, Kyle Fuller diff --git a/Pods/Target Support Files/Pods-SwiftGen UnitTests/Pods-SwiftGen UnitTests-acknowledgements.plist b/Pods/Target Support Files/Pods-SwiftGen UnitTests/Pods-SwiftGen UnitTests-acknowledgements.plist index 2b628e6b..6114a100 100644 --- a/Pods/Target Support Files/Pods-SwiftGen UnitTests/Pods-SwiftGen UnitTests-acknowledgements.plist +++ b/Pods/Target Support Files/Pods-SwiftGen UnitTests/Pods-SwiftGen UnitTests-acknowledgements.plist @@ -12,36 +12,6 @@ Type PSGroupSpecifier - - FooterText - The MIT License (MIT) - -Copyright (c) 2014 - 2015 Atsushi Kiwaki (@_tid_) - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - License - MIT - Title - Kanna - Type - PSGroupSpecifier - FooterText Copyright (c) 2014, Kyle Fuller diff --git a/Pods/Target Support Files/Pods-SwiftGen UnitTests/Pods-SwiftGen UnitTests-frameworks.sh b/Pods/Target Support Files/Pods-SwiftGen UnitTests/Pods-SwiftGen UnitTests-frameworks.sh index dbff20bb..2df438e1 100755 --- a/Pods/Target Support Files/Pods-SwiftGen UnitTests/Pods-SwiftGen UnitTests-frameworks.sh +++ b/Pods/Target Support Files/Pods-SwiftGen UnitTests/Pods-SwiftGen UnitTests-frameworks.sh @@ -102,19 +102,15 @@ strip_invalid_archs() { if [[ "$CONFIGURATION" == "Debug" ]]; then - install_framework "${BUILT_PRODUCTS_DIR}/Kanna/Kanna.framework" install_framework "${BUILT_PRODUCTS_DIR}/PathKit/PathKit.framework" install_framework "${BUILT_PRODUCTS_DIR}/Stencil/Stencil.framework" install_framework "${BUILT_PRODUCTS_DIR}/StencilSwiftKit/StencilSwiftKit.framework" - install_framework "${BUILT_PRODUCTS_DIR}/SwiftGenKit/SwiftGenKit.framework" install_framework "${BUILT_PRODUCTS_DIR}/Yams/Yams.framework" fi if [[ "$CONFIGURATION" == "Release" ]]; then - install_framework "${BUILT_PRODUCTS_DIR}/Kanna/Kanna.framework" install_framework "${BUILT_PRODUCTS_DIR}/PathKit/PathKit.framework" install_framework "${BUILT_PRODUCTS_DIR}/Stencil/Stencil.framework" install_framework "${BUILT_PRODUCTS_DIR}/StencilSwiftKit/StencilSwiftKit.framework" - install_framework "${BUILT_PRODUCTS_DIR}/SwiftGenKit/SwiftGenKit.framework" install_framework "${BUILT_PRODUCTS_DIR}/Yams/Yams.framework" fi if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then diff --git a/Pods/Target Support Files/Pods-SwiftGen UnitTests/Pods-SwiftGen UnitTests.debug.xcconfig b/Pods/Target Support Files/Pods-SwiftGen UnitTests/Pods-SwiftGen UnitTests.debug.xcconfig index a0e845e4..bfeba03e 100644 --- a/Pods/Target Support Files/Pods-SwiftGen UnitTests/Pods-SwiftGen UnitTests.debug.xcconfig +++ b/Pods/Target Support Files/Pods-SwiftGen UnitTests/Pods-SwiftGen UnitTests.debug.xcconfig @@ -1,14 +1,12 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES CODE_SIGN_IDENTITY = -FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/Kanna" "$PODS_CONFIGURATION_BUILD_DIR/PathKit" "$PODS_CONFIGURATION_BUILD_DIR/Stencil" "$PODS_CONFIGURATION_BUILD_DIR/StencilSwiftKit" "$PODS_CONFIGURATION_BUILD_DIR/SwiftGenKit" "$PODS_CONFIGURATION_BUILD_DIR/Yams" +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/PathKit" "$PODS_CONFIGURATION_BUILD_DIR/Stencil" "$PODS_CONFIGURATION_BUILD_DIR/StencilSwiftKit" "$PODS_CONFIGURATION_BUILD_DIR/Yams" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(SDKROOT)/usr/include/libxml2 LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/../Frameworks' '@loader_path/../Frameworks' -OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/Kanna/Kanna.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/PathKit/PathKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Stencil/Stencil.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/StencilSwiftKit/StencilSwiftKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SwiftGenKit/SwiftGenKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Yams/Yams.framework/Headers" -OTHER_LDFLAGS = $(inherited) -framework "Kanna" -framework "PathKit" -framework "Stencil" -framework "StencilSwiftKit" -framework "SwiftGenKit" -framework "Yams" +OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/PathKit/PathKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Stencil/Stencil.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/StencilSwiftKit/StencilSwiftKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Yams/Yams.framework/Headers" +OTHER_LDFLAGS = $(inherited) -framework "PathKit" -framework "Stencil" -framework "StencilSwiftKit" -framework "Yams" OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" PODS_BUILD_DIR = $BUILD_DIR PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_PODFILE_DIR_PATH = ${SRCROOT}/. PODS_ROOT = ${SRCROOT}/Pods -SWIFT_INCLUDE_PATHS = $(SRCROOT)/Kanna/Modules diff --git a/Pods/Target Support Files/Pods-SwiftGen UnitTests/Pods-SwiftGen UnitTests.release.xcconfig b/Pods/Target Support Files/Pods-SwiftGen UnitTests/Pods-SwiftGen UnitTests.release.xcconfig index a0e845e4..bfeba03e 100644 --- a/Pods/Target Support Files/Pods-SwiftGen UnitTests/Pods-SwiftGen UnitTests.release.xcconfig +++ b/Pods/Target Support Files/Pods-SwiftGen UnitTests/Pods-SwiftGen UnitTests.release.xcconfig @@ -1,14 +1,12 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES CODE_SIGN_IDENTITY = -FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/Kanna" "$PODS_CONFIGURATION_BUILD_DIR/PathKit" "$PODS_CONFIGURATION_BUILD_DIR/Stencil" "$PODS_CONFIGURATION_BUILD_DIR/StencilSwiftKit" "$PODS_CONFIGURATION_BUILD_DIR/SwiftGenKit" "$PODS_CONFIGURATION_BUILD_DIR/Yams" +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/PathKit" "$PODS_CONFIGURATION_BUILD_DIR/Stencil" "$PODS_CONFIGURATION_BUILD_DIR/StencilSwiftKit" "$PODS_CONFIGURATION_BUILD_DIR/Yams" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(SDKROOT)/usr/include/libxml2 LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/../Frameworks' '@loader_path/../Frameworks' -OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/Kanna/Kanna.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/PathKit/PathKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Stencil/Stencil.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/StencilSwiftKit/StencilSwiftKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SwiftGenKit/SwiftGenKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Yams/Yams.framework/Headers" -OTHER_LDFLAGS = $(inherited) -framework "Kanna" -framework "PathKit" -framework "Stencil" -framework "StencilSwiftKit" -framework "SwiftGenKit" -framework "Yams" +OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/PathKit/PathKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Stencil/Stencil.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/StencilSwiftKit/StencilSwiftKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Yams/Yams.framework/Headers" +OTHER_LDFLAGS = $(inherited) -framework "PathKit" -framework "Stencil" -framework "StencilSwiftKit" -framework "Yams" OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" PODS_BUILD_DIR = $BUILD_DIR PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_PODFILE_DIR_PATH = ${SRCROOT}/. PODS_ROOT = ${SRCROOT}/Pods -SWIFT_INCLUDE_PATHS = $(SRCROOT)/Kanna/Modules diff --git a/Pods/Target Support Files/Pods-SwiftGenKit UnitTests/Pods-SwiftGenKit UnitTests-acknowledgements.markdown b/Pods/Target Support Files/Pods-SwiftGenKit UnitTests/Pods-SwiftGenKit UnitTests-acknowledgements.markdown index 3f9bdeb9..25ae6631 100644 --- a/Pods/Target Support Files/Pods-SwiftGenKit UnitTests/Pods-SwiftGenKit UnitTests-acknowledgements.markdown +++ b/Pods/Target Support Files/Pods-SwiftGenKit UnitTests/Pods-SwiftGenKit UnitTests-acknowledgements.markdown @@ -1,30 +1,6 @@ # Acknowledgements This application makes use of the following third party libraries: -## Kanna - -The MIT License (MIT) - -Copyright (c) 2014 - 2015 Atsushi Kiwaki (@_tid_) - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - ## PathKit Copyright (c) 2014, Kyle Fuller diff --git a/Pods/Target Support Files/Pods-SwiftGenKit UnitTests/Pods-SwiftGenKit UnitTests-acknowledgements.plist b/Pods/Target Support Files/Pods-SwiftGenKit UnitTests/Pods-SwiftGenKit UnitTests-acknowledgements.plist index a7dc939d..804d82e7 100644 --- a/Pods/Target Support Files/Pods-SwiftGenKit UnitTests/Pods-SwiftGenKit UnitTests-acknowledgements.plist +++ b/Pods/Target Support Files/Pods-SwiftGenKit UnitTests/Pods-SwiftGenKit UnitTests-acknowledgements.plist @@ -12,36 +12,6 @@ Type PSGroupSpecifier - - FooterText - The MIT License (MIT) - -Copyright (c) 2014 - 2015 Atsushi Kiwaki (@_tid_) - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - License - MIT - Title - Kanna - Type - PSGroupSpecifier - FooterText Copyright (c) 2014, Kyle Fuller diff --git a/Pods/Target Support Files/Pods-SwiftGenKit UnitTests/Pods-SwiftGenKit UnitTests-frameworks.sh b/Pods/Target Support Files/Pods-SwiftGenKit UnitTests/Pods-SwiftGenKit UnitTests-frameworks.sh index 519b49be..1f73277b 100755 --- a/Pods/Target Support Files/Pods-SwiftGenKit UnitTests/Pods-SwiftGenKit UnitTests-frameworks.sh +++ b/Pods/Target Support Files/Pods-SwiftGenKit UnitTests/Pods-SwiftGenKit UnitTests-frameworks.sh @@ -102,14 +102,10 @@ strip_invalid_archs() { if [[ "$CONFIGURATION" == "Debug" ]]; then - install_framework "${BUILT_PRODUCTS_DIR}/Kanna/Kanna.framework" install_framework "${BUILT_PRODUCTS_DIR}/PathKit/PathKit.framework" - install_framework "${BUILT_PRODUCTS_DIR}/SwiftGenKit/SwiftGenKit.framework" fi if [[ "$CONFIGURATION" == "Release" ]]; then - install_framework "${BUILT_PRODUCTS_DIR}/Kanna/Kanna.framework" install_framework "${BUILT_PRODUCTS_DIR}/PathKit/PathKit.framework" - install_framework "${BUILT_PRODUCTS_DIR}/SwiftGenKit/SwiftGenKit.framework" fi if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then wait diff --git a/Pods/Target Support Files/Pods-SwiftGenKit UnitTests/Pods-SwiftGenKit UnitTests.debug.xcconfig b/Pods/Target Support Files/Pods-SwiftGenKit UnitTests/Pods-SwiftGenKit UnitTests.debug.xcconfig index bd34f50a..8e38cacd 100644 --- a/Pods/Target Support Files/Pods-SwiftGenKit UnitTests/Pods-SwiftGenKit UnitTests.debug.xcconfig +++ b/Pods/Target Support Files/Pods-SwiftGenKit UnitTests/Pods-SwiftGenKit UnitTests.debug.xcconfig @@ -1,14 +1,12 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES CODE_SIGN_IDENTITY = -FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/Kanna" "$PODS_CONFIGURATION_BUILD_DIR/PathKit" "$PODS_CONFIGURATION_BUILD_DIR/SwiftGenKit" +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/PathKit" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(SDKROOT)/usr/include/libxml2 LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/../Frameworks' '@loader_path/../Frameworks' -OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/Kanna/Kanna.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/PathKit/PathKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SwiftGenKit/SwiftGenKit.framework/Headers" -OTHER_LDFLAGS = $(inherited) -framework "Kanna" -framework "PathKit" -framework "SwiftGenKit" +OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/PathKit/PathKit.framework/Headers" +OTHER_LDFLAGS = $(inherited) -framework "PathKit" OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" PODS_BUILD_DIR = $BUILD_DIR PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_PODFILE_DIR_PATH = ${SRCROOT}/. PODS_ROOT = ${SRCROOT}/Pods -SWIFT_INCLUDE_PATHS = $(SRCROOT)/Kanna/Modules diff --git a/Pods/Target Support Files/Pods-SwiftGenKit UnitTests/Pods-SwiftGenKit UnitTests.release.xcconfig b/Pods/Target Support Files/Pods-SwiftGenKit UnitTests/Pods-SwiftGenKit UnitTests.release.xcconfig index bd34f50a..8e38cacd 100644 --- a/Pods/Target Support Files/Pods-SwiftGenKit UnitTests/Pods-SwiftGenKit UnitTests.release.xcconfig +++ b/Pods/Target Support Files/Pods-SwiftGenKit UnitTests/Pods-SwiftGenKit UnitTests.release.xcconfig @@ -1,14 +1,12 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES CODE_SIGN_IDENTITY = -FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/Kanna" "$PODS_CONFIGURATION_BUILD_DIR/PathKit" "$PODS_CONFIGURATION_BUILD_DIR/SwiftGenKit" +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/PathKit" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(SDKROOT)/usr/include/libxml2 LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/../Frameworks' '@loader_path/../Frameworks' -OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/Kanna/Kanna.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/PathKit/PathKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SwiftGenKit/SwiftGenKit.framework/Headers" -OTHER_LDFLAGS = $(inherited) -framework "Kanna" -framework "PathKit" -framework "SwiftGenKit" +OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/PathKit/PathKit.framework/Headers" +OTHER_LDFLAGS = $(inherited) -framework "PathKit" OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" PODS_BUILD_DIR = $BUILD_DIR PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_PODFILE_DIR_PATH = ${SRCROOT}/. PODS_ROOT = ${SRCROOT}/Pods -SWIFT_INCLUDE_PATHS = $(SRCROOT)/Kanna/Modules diff --git a/Pods/Target Support Files/Pods-SwiftGenKit/Info.plist b/Pods/Target Support Files/Pods-SwiftGenKit/Info.plist new file mode 100644 index 00000000..2243fe6e --- /dev/null +++ b/Pods/Target Support Files/Pods-SwiftGenKit/Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0.0 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Pods/Target Support Files/Pods-SwiftGenKit/Pods-SwiftGenKit-acknowledgements.markdown b/Pods/Target Support Files/Pods-SwiftGenKit/Pods-SwiftGenKit-acknowledgements.markdown new file mode 100644 index 00000000..c21db850 --- /dev/null +++ b/Pods/Target Support Files/Pods-SwiftGenKit/Pods-SwiftGenKit-acknowledgements.markdown @@ -0,0 +1,54 @@ +# Acknowledgements +This application makes use of the following third party libraries: + +## PathKit + +Copyright (c) 2014, Kyle Fuller +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + + +## Kanna + +The MIT License (MIT) + +Copyright (c) 2014 - 2015 Atsushi Kiwaki (@_tid_) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +Generated by CocoaPods - https://cocoapods.org diff --git a/Pods/Target Support Files/Pods-SwiftGenKit/Pods-SwiftGenKit-acknowledgements.plist b/Pods/Target Support Files/Pods-SwiftGenKit/Pods-SwiftGenKit-acknowledgements.plist new file mode 100644 index 00000000..2e86b50a --- /dev/null +++ b/Pods/Target Support Files/Pods-SwiftGenKit/Pods-SwiftGenKit-acknowledgements.plist @@ -0,0 +1,92 @@ + + + + + PreferenceSpecifiers + + + FooterText + This application makes use of the following third party libraries: + Title + Acknowledgements + Type + PSGroupSpecifier + + + FooterText + Copyright (c) 2014, Kyle Fuller +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + + License + BSD + Title + PathKit + Type + PSGroupSpecifier + + + FooterText + The MIT License (MIT) + +Copyright (c) 2014 - 2015 Atsushi Kiwaki (@_tid_) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + License + MIT + Title + Kanna + Type + PSGroupSpecifier + + + FooterText + Generated by CocoaPods - https://cocoapods.org + Title + + Type + PSGroupSpecifier + + + StringsTable + Acknowledgements + Title + Acknowledgements + + diff --git a/Pods/Target Support Files/Pods-SwiftGenKit/Pods-SwiftGenKit-dummy.m b/Pods/Target Support Files/Pods-SwiftGenKit/Pods-SwiftGenKit-dummy.m new file mode 100644 index 00000000..227a63d6 --- /dev/null +++ b/Pods/Target Support Files/Pods-SwiftGenKit/Pods-SwiftGenKit-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_Pods_SwiftGenKit : NSObject +@end +@implementation PodsDummy_Pods_SwiftGenKit +@end diff --git a/Pods/Target Support Files/Pods-SwiftGenKit/Pods-SwiftGenKit-resources.sh b/Pods/Target Support Files/Pods-SwiftGenKit/Pods-SwiftGenKit-resources.sh new file mode 100755 index 00000000..a7df4405 --- /dev/null +++ b/Pods/Target Support Files/Pods-SwiftGenKit/Pods-SwiftGenKit-resources.sh @@ -0,0 +1,106 @@ +#!/bin/sh +set -e + +mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" + +RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt +> "$RESOURCES_TO_COPY" + +XCASSET_FILES=() + +# This protects against multiple targets copying the same framework dependency at the same time. The solution +# was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html +RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") + +case "${TARGETED_DEVICE_FAMILY}" in + 1,2) + TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" + ;; + 1) + TARGET_DEVICE_ARGS="--target-device iphone" + ;; + 2) + TARGET_DEVICE_ARGS="--target-device ipad" + ;; + 3) + TARGET_DEVICE_ARGS="--target-device tv" + ;; + 4) + TARGET_DEVICE_ARGS="--target-device watch" + ;; + *) + TARGET_DEVICE_ARGS="--target-device mac" + ;; +esac + +install_resource() +{ + if [[ "$1" = /* ]] ; then + RESOURCE_PATH="$1" + else + RESOURCE_PATH="${PODS_ROOT}/$1" + fi + if [[ ! -e "$RESOURCE_PATH" ]] ; then + cat << EOM +error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. +EOM + exit 1 + fi + case $RESOURCE_PATH in + *.storyboard) + echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true + ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} + ;; + *.xib) + echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true + ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} + ;; + *.framework) + echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true + mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + ;; + *.xcdatamodel) + echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" || true + xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" + ;; + *.xcdatamodeld) + echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" || true + xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" + ;; + *.xcmappingmodel) + echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" || true + xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" + ;; + *.xcassets) + ABSOLUTE_XCASSET_FILE="$RESOURCE_PATH" + XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") + ;; + *) + echo "$RESOURCE_PATH" || true + echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" + ;; + esac +} + +mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then + mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" + rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +fi +rm -f "$RESOURCES_TO_COPY" + +if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] +then + # Find all other xcassets (this unfortunately includes those of path pods and other targets). + OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) + while read line; do + if [[ $line != "${PODS_ROOT}*" ]]; then + XCASSET_FILES+=("$line") + fi + done <<<"$OTHER_XCASSETS" + + printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +fi diff --git a/Pods/Target Support Files/SwiftGenKit/SwiftGenKit-umbrella.h b/Pods/Target Support Files/Pods-SwiftGenKit/Pods-SwiftGenKit-umbrella.h similarity index 60% rename from Pods/Target Support Files/SwiftGenKit/SwiftGenKit-umbrella.h rename to Pods/Target Support Files/Pods-SwiftGenKit/Pods-SwiftGenKit-umbrella.h index b75efb50..f99e8d90 100644 --- a/Pods/Target Support Files/SwiftGenKit/SwiftGenKit-umbrella.h +++ b/Pods/Target Support Files/Pods-SwiftGenKit/Pods-SwiftGenKit-umbrella.h @@ -11,6 +11,6 @@ #endif -FOUNDATION_EXPORT double SwiftGenKitVersionNumber; -FOUNDATION_EXPORT const unsigned char SwiftGenKitVersionString[]; +FOUNDATION_EXPORT double Pods_SwiftGenKitVersionNumber; +FOUNDATION_EXPORT const unsigned char Pods_SwiftGenKitVersionString[]; diff --git a/Pods/Target Support Files/Pods-SwiftGenKit/Pods-SwiftGenKit.debug.xcconfig b/Pods/Target Support Files/Pods-SwiftGenKit/Pods-SwiftGenKit.debug.xcconfig new file mode 100644 index 00000000..ab3601b0 --- /dev/null +++ b/Pods/Target Support Files/Pods-SwiftGenKit/Pods-SwiftGenKit.debug.xcconfig @@ -0,0 +1,13 @@ +CODE_SIGN_IDENTITY = +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/Kanna" "$PODS_CONFIGURATION_BUILD_DIR/PathKit" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(SDKROOT)/usr/include/libxml2 +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/../Frameworks' '@loader_path/Frameworks' +OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/Kanna/Kanna.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/PathKit/PathKit.framework/Headers" +OTHER_LDFLAGS = $(inherited) -framework "Kanna" -framework "PathKit" +OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" +PODS_BUILD_DIR = $BUILD_DIR +PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. +PODS_ROOT = ${SRCROOT}/Pods +SWIFT_INCLUDE_PATHS = $(SRCROOT)/Kanna/Modules diff --git a/Pods/Target Support Files/Pods-SwiftGenKit/Pods-SwiftGenKit.modulemap b/Pods/Target Support Files/Pods-SwiftGenKit/Pods-SwiftGenKit.modulemap new file mode 100644 index 00000000..955ec906 --- /dev/null +++ b/Pods/Target Support Files/Pods-SwiftGenKit/Pods-SwiftGenKit.modulemap @@ -0,0 +1,6 @@ +framework module Pods_SwiftGenKit { + umbrella header "Pods-SwiftGenKit-umbrella.h" + + export * + module * { export * } +} diff --git a/Pods/Target Support Files/Pods-SwiftGenKit/Pods-SwiftGenKit.release.xcconfig b/Pods/Target Support Files/Pods-SwiftGenKit/Pods-SwiftGenKit.release.xcconfig new file mode 100644 index 00000000..ab3601b0 --- /dev/null +++ b/Pods/Target Support Files/Pods-SwiftGenKit/Pods-SwiftGenKit.release.xcconfig @@ -0,0 +1,13 @@ +CODE_SIGN_IDENTITY = +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/Kanna" "$PODS_CONFIGURATION_BUILD_DIR/PathKit" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(SDKROOT)/usr/include/libxml2 +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/../Frameworks' '@loader_path/Frameworks' +OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/Kanna/Kanna.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/PathKit/PathKit.framework/Headers" +OTHER_LDFLAGS = $(inherited) -framework "Kanna" -framework "PathKit" +OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" +PODS_BUILD_DIR = $BUILD_DIR +PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. +PODS_ROOT = ${SRCROOT}/Pods +SWIFT_INCLUDE_PATHS = $(SRCROOT)/Kanna/Modules diff --git a/Pods/Target Support Files/Pods-swiftgen/Pods-swiftgen-acknowledgements.markdown b/Pods/Target Support Files/Pods-swiftgen/Pods-swiftgen-acknowledgements.markdown index 09a1d65c..438ab579 100644 --- a/Pods/Target Support Files/Pods-swiftgen/Pods-swiftgen-acknowledgements.markdown +++ b/Pods/Target Support Files/Pods-swiftgen/Pods-swiftgen-acknowledgements.markdown @@ -32,30 +32,6 @@ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -## Kanna - -The MIT License (MIT) - -Copyright (c) 2014 - 2015 Atsushi Kiwaki (@_tid_) - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - ## PathKit Copyright (c) 2014, Kyle Fuller @@ -160,4 +136,28 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +## Kanna + +The MIT License (MIT) + +Copyright (c) 2014 - 2015 Atsushi Kiwaki (@_tid_) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. Generated by CocoaPods - https://cocoapods.org diff --git a/Pods/Target Support Files/Pods-swiftgen/Pods-swiftgen-acknowledgements.plist b/Pods/Target Support Files/Pods-swiftgen/Pods-swiftgen-acknowledgements.plist index f07afe29..7436e0cf 100644 --- a/Pods/Target Support Files/Pods-swiftgen/Pods-swiftgen-acknowledgements.plist +++ b/Pods/Target Support Files/Pods-swiftgen/Pods-swiftgen-acknowledgements.plist @@ -49,36 +49,6 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Type PSGroupSpecifier - - FooterText - The MIT License (MIT) - -Copyright (c) 2014 - 2015 Atsushi Kiwaki (@_tid_) - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - License - MIT - Title - Kanna - Type - PSGroupSpecifier - FooterText Copyright (c) 2014, Kyle Fuller @@ -208,6 +178,36 @@ SOFTWARE. Type PSGroupSpecifier + + FooterText + The MIT License (MIT) + +Copyright (c) 2014 - 2015 Atsushi Kiwaki (@_tid_) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + License + MIT + Title + Kanna + Type + PSGroupSpecifier + FooterText Generated by CocoaPods - https://cocoapods.org diff --git a/Pods/Target Support Files/Pods-swiftgen/Pods-swiftgen-frameworks.sh b/Pods/Target Support Files/Pods-swiftgen/Pods-swiftgen-frameworks.sh index 0ad7c2f3..95c191ab 100755 --- a/Pods/Target Support Files/Pods-swiftgen/Pods-swiftgen-frameworks.sh +++ b/Pods/Target Support Files/Pods-swiftgen/Pods-swiftgen-frameworks.sh @@ -103,21 +103,19 @@ strip_invalid_archs() { if [[ "$CONFIGURATION" == "Debug" ]]; then install_framework "${BUILT_PRODUCTS_DIR}/Commander/Commander.framework" - install_framework "${BUILT_PRODUCTS_DIR}/Kanna/Kanna.framework" install_framework "${BUILT_PRODUCTS_DIR}/PathKit/PathKit.framework" install_framework "${BUILT_PRODUCTS_DIR}/Stencil/Stencil.framework" install_framework "${BUILT_PRODUCTS_DIR}/StencilSwiftKit/StencilSwiftKit.framework" - install_framework "${BUILT_PRODUCTS_DIR}/SwiftGenKit/SwiftGenKit.framework" install_framework "${BUILT_PRODUCTS_DIR}/Yams/Yams.framework" + install_framework "${BUILT_PRODUCTS_DIR}/Kanna/Kanna.framework" fi if [[ "$CONFIGURATION" == "Release" ]]; then install_framework "${BUILT_PRODUCTS_DIR}/Commander/Commander.framework" - install_framework "${BUILT_PRODUCTS_DIR}/Kanna/Kanna.framework" install_framework "${BUILT_PRODUCTS_DIR}/PathKit/PathKit.framework" install_framework "${BUILT_PRODUCTS_DIR}/Stencil/Stencil.framework" install_framework "${BUILT_PRODUCTS_DIR}/StencilSwiftKit/StencilSwiftKit.framework" - install_framework "${BUILT_PRODUCTS_DIR}/SwiftGenKit/SwiftGenKit.framework" install_framework "${BUILT_PRODUCTS_DIR}/Yams/Yams.framework" + install_framework "${BUILT_PRODUCTS_DIR}/Kanna/Kanna.framework" fi if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then wait diff --git a/Pods/Target Support Files/Pods-swiftgen/Pods-swiftgen.debug.xcconfig b/Pods/Target Support Files/Pods-swiftgen/Pods-swiftgen.debug.xcconfig index 6fa5d3df..1d10b317 100644 --- a/Pods/Target Support Files/Pods-swiftgen/Pods-swiftgen.debug.xcconfig +++ b/Pods/Target Support Files/Pods-swiftgen/Pods-swiftgen.debug.xcconfig @@ -1,11 +1,11 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES CODE_SIGN_IDENTITY = -FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/Commander" "$PODS_CONFIGURATION_BUILD_DIR/Kanna" "$PODS_CONFIGURATION_BUILD_DIR/PathKit" "$PODS_CONFIGURATION_BUILD_DIR/Stencil" "$PODS_CONFIGURATION_BUILD_DIR/StencilSwiftKit" "$PODS_CONFIGURATION_BUILD_DIR/SwiftGenKit" "$PODS_CONFIGURATION_BUILD_DIR/Yams" +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/Commander" "$PODS_CONFIGURATION_BUILD_DIR/Kanna" "$PODS_CONFIGURATION_BUILD_DIR/PathKit" "$PODS_CONFIGURATION_BUILD_DIR/Stencil" "$PODS_CONFIGURATION_BUILD_DIR/StencilSwiftKit" "$PODS_CONFIGURATION_BUILD_DIR/Yams" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 HEADER_SEARCH_PATHS = $(SDKROOT)/usr/include/libxml2 LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/../Frameworks' '@loader_path/Frameworks' -OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/Commander/Commander.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Kanna/Kanna.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/PathKit/PathKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Stencil/Stencil.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/StencilSwiftKit/StencilSwiftKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SwiftGenKit/SwiftGenKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Yams/Yams.framework/Headers" -OTHER_LDFLAGS = $(inherited) -framework "Commander" -framework "Kanna" -framework "PathKit" -framework "Stencil" -framework "StencilSwiftKit" -framework "SwiftGenKit" -framework "Yams" +OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/Commander/Commander.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Kanna/Kanna.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/PathKit/PathKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Stencil/Stencil.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/StencilSwiftKit/StencilSwiftKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Yams/Yams.framework/Headers" +OTHER_LDFLAGS = $(inherited) -framework "Commander" -framework "Kanna" -framework "PathKit" -framework "Stencil" -framework "StencilSwiftKit" -framework "Yams" OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" PODS_BUILD_DIR = $BUILD_DIR PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/Pods/Target Support Files/Pods-swiftgen/Pods-swiftgen.release.xcconfig b/Pods/Target Support Files/Pods-swiftgen/Pods-swiftgen.release.xcconfig index 6fa5d3df..1d10b317 100644 --- a/Pods/Target Support Files/Pods-swiftgen/Pods-swiftgen.release.xcconfig +++ b/Pods/Target Support Files/Pods-swiftgen/Pods-swiftgen.release.xcconfig @@ -1,11 +1,11 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES CODE_SIGN_IDENTITY = -FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/Commander" "$PODS_CONFIGURATION_BUILD_DIR/Kanna" "$PODS_CONFIGURATION_BUILD_DIR/PathKit" "$PODS_CONFIGURATION_BUILD_DIR/Stencil" "$PODS_CONFIGURATION_BUILD_DIR/StencilSwiftKit" "$PODS_CONFIGURATION_BUILD_DIR/SwiftGenKit" "$PODS_CONFIGURATION_BUILD_DIR/Yams" +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/Commander" "$PODS_CONFIGURATION_BUILD_DIR/Kanna" "$PODS_CONFIGURATION_BUILD_DIR/PathKit" "$PODS_CONFIGURATION_BUILD_DIR/Stencil" "$PODS_CONFIGURATION_BUILD_DIR/StencilSwiftKit" "$PODS_CONFIGURATION_BUILD_DIR/Yams" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 HEADER_SEARCH_PATHS = $(SDKROOT)/usr/include/libxml2 LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/../Frameworks' '@loader_path/Frameworks' -OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/Commander/Commander.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Kanna/Kanna.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/PathKit/PathKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Stencil/Stencil.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/StencilSwiftKit/StencilSwiftKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/SwiftGenKit/SwiftGenKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Yams/Yams.framework/Headers" -OTHER_LDFLAGS = $(inherited) -framework "Commander" -framework "Kanna" -framework "PathKit" -framework "Stencil" -framework "StencilSwiftKit" -framework "SwiftGenKit" -framework "Yams" +OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/Commander/Commander.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Kanna/Kanna.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/PathKit/PathKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Stencil/Stencil.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/StencilSwiftKit/StencilSwiftKit.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Yams/Yams.framework/Headers" +OTHER_LDFLAGS = $(inherited) -framework "Commander" -framework "Kanna" -framework "PathKit" -framework "Stencil" -framework "StencilSwiftKit" -framework "Yams" OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" PODS_BUILD_DIR = $BUILD_DIR PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/Pods/Target Support Files/SwiftGenKit/SwiftGenKit-dummy.m b/Pods/Target Support Files/SwiftGenKit/SwiftGenKit-dummy.m deleted file mode 100644 index 165a1ec7..00000000 --- a/Pods/Target Support Files/SwiftGenKit/SwiftGenKit-dummy.m +++ /dev/null @@ -1,5 +0,0 @@ -#import -@interface PodsDummy_SwiftGenKit : NSObject -@end -@implementation PodsDummy_SwiftGenKit -@end diff --git a/Pods/Target Support Files/SwiftGenKit/SwiftGenKit-prefix.pch b/Pods/Target Support Files/SwiftGenKit/SwiftGenKit-prefix.pch deleted file mode 100644 index 082f8af2..00000000 --- a/Pods/Target Support Files/SwiftGenKit/SwiftGenKit-prefix.pch +++ /dev/null @@ -1,12 +0,0 @@ -#ifdef __OBJC__ -#import -#else -#ifndef FOUNDATION_EXPORT -#if defined(__cplusplus) -#define FOUNDATION_EXPORT extern "C" -#else -#define FOUNDATION_EXPORT extern -#endif -#endif -#endif - diff --git a/Pods/Target Support Files/SwiftGenKit/SwiftGenKit.modulemap b/Pods/Target Support Files/SwiftGenKit/SwiftGenKit.modulemap deleted file mode 100644 index be83cecd..00000000 --- a/Pods/Target Support Files/SwiftGenKit/SwiftGenKit.modulemap +++ /dev/null @@ -1,6 +0,0 @@ -framework module SwiftGenKit { - umbrella header "SwiftGenKit-umbrella.h" - - export * - module * { export * } -} diff --git a/Pods/Target Support Files/SwiftGenKit/SwiftGenKit.xcconfig b/Pods/Target Support Files/SwiftGenKit/SwiftGenKit.xcconfig deleted file mode 100644 index 116b3424..00000000 --- a/Pods/Target Support Files/SwiftGenKit/SwiftGenKit.xcconfig +++ /dev/null @@ -1,13 +0,0 @@ -CODE_SIGN_IDENTITY = -CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/SwiftGenKit -FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/Kanna" "$PODS_CONFIGURATION_BUILD_DIR/PathKit" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" -OTHER_LDFLAGS = -framework "Foundation" -OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" -PODS_BUILD_DIR = $BUILD_DIR -PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_ROOT = ${SRCROOT} -PODS_TARGET_SRCROOT = ${PODS_ROOT}/../SwiftGenKit -PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} -SKIP_INSTALL = YES diff --git a/Pods/Target Support Files/SwiftGenKit/Info.plist b/Sources/SwiftGenKit/Info.plist similarity index 100% rename from Pods/Target Support Files/SwiftGenKit/Info.plist rename to Sources/SwiftGenKit/Info.plist diff --git a/SwiftGenKit/Sources/Parsers/AssetsCatalogParser.swift b/Sources/SwiftGenKit/Parsers/AssetsCatalogParser.swift similarity index 100% rename from SwiftGenKit/Sources/Parsers/AssetsCatalogParser.swift rename to Sources/SwiftGenKit/Parsers/AssetsCatalogParser.swift diff --git a/SwiftGenKit/Sources/Parsers/ColorsFileParsers/ColorsCLRFileParser.swift b/Sources/SwiftGenKit/Parsers/ColorsFileParsers/ColorsCLRFileParser.swift similarity index 82% rename from SwiftGenKit/Sources/Parsers/ColorsFileParsers/ColorsCLRFileParser.swift rename to Sources/SwiftGenKit/Parsers/ColorsFileParsers/ColorsCLRFileParser.swift index 6bcdef44..9e389dc4 100644 --- a/SwiftGenKit/Sources/Parsers/ColorsFileParsers/ColorsCLRFileParser.swift +++ b/Sources/SwiftGenKit/Parsers/ColorsFileParsers/ColorsCLRFileParser.swift @@ -11,7 +11,7 @@ final class ColorsCLRFileParser: ColorsFileTypeParser { static let extensions = ["clr"] private enum Keys { - static let userColors = "UserColors" + static let userColors = NSColorList.Name("UserColors") } func parseFile(at path: Path) throws -> Palette { @@ -19,7 +19,7 @@ final class ColorsCLRFileParser: ColorsFileTypeParser { var colors = [String: UInt32]() for colorName in colorsList.allKeys { - colors[colorName] = colorsList.color(withKey: colorName)?.hexValue + colors[colorName.rawValue] = colorsList.color(withKey: colorName)?.hexValue } let name = path.lastComponentWithoutExtension diff --git a/SwiftGenKit/Sources/Parsers/ColorsFileParsers/ColorsJSONFileParser.swift b/Sources/SwiftGenKit/Parsers/ColorsFileParsers/ColorsJSONFileParser.swift similarity index 100% rename from SwiftGenKit/Sources/Parsers/ColorsFileParsers/ColorsJSONFileParser.swift rename to Sources/SwiftGenKit/Parsers/ColorsFileParsers/ColorsJSONFileParser.swift diff --git a/SwiftGenKit/Sources/Parsers/ColorsFileParsers/ColorsTXTFileParser.swift b/Sources/SwiftGenKit/Parsers/ColorsFileParsers/ColorsTXTFileParser.swift similarity index 100% rename from SwiftGenKit/Sources/Parsers/ColorsFileParsers/ColorsTXTFileParser.swift rename to Sources/SwiftGenKit/Parsers/ColorsFileParsers/ColorsTXTFileParser.swift diff --git a/SwiftGenKit/Sources/Parsers/ColorsFileParsers/ColorsXMLFileParser.swift b/Sources/SwiftGenKit/Parsers/ColorsFileParsers/ColorsXMLFileParser.swift similarity index 100% rename from SwiftGenKit/Sources/Parsers/ColorsFileParsers/ColorsXMLFileParser.swift rename to Sources/SwiftGenKit/Parsers/ColorsFileParsers/ColorsXMLFileParser.swift diff --git a/SwiftGenKit/Sources/Parsers/ColorsParser.swift b/Sources/SwiftGenKit/Parsers/ColorsParser.swift similarity index 98% rename from SwiftGenKit/Sources/Parsers/ColorsParser.swift rename to Sources/SwiftGenKit/Parsers/ColorsParser.swift index 92ac6e4d..5383346c 100644 --- a/SwiftGenKit/Sources/Parsers/ColorsParser.swift +++ b/Sources/SwiftGenKit/Parsers/ColorsParser.swift @@ -106,7 +106,7 @@ extension NSColor { var rgbColor: NSColor? { guard colorSpace.colorSpaceModel != .RGB else { return self } - return usingColorSpaceName(NSCalibratedRGBColorSpace) + return usingColorSpaceName(.calibratedRGB) } var hexValue: UInt32 { diff --git a/SwiftGenKit/Sources/Parsers/FontsParser.swift b/Sources/SwiftGenKit/Parsers/FontsParser.swift similarity index 100% rename from SwiftGenKit/Sources/Parsers/FontsParser.swift rename to Sources/SwiftGenKit/Parsers/FontsParser.swift diff --git a/SwiftGenKit/Sources/Parsers/Parser.swift b/Sources/SwiftGenKit/Parsers/Parser.swift similarity index 100% rename from SwiftGenKit/Sources/Parsers/Parser.swift rename to Sources/SwiftGenKit/Parsers/Parser.swift diff --git a/SwiftGenKit/Sources/Parsers/StoryboardParser.swift b/Sources/SwiftGenKit/Parsers/StoryboardParser.swift similarity index 100% rename from SwiftGenKit/Sources/Parsers/StoryboardParser.swift rename to Sources/SwiftGenKit/Parsers/StoryboardParser.swift diff --git a/SwiftGenKit/Sources/Parsers/StringsParser.swift b/Sources/SwiftGenKit/Parsers/StringsParser.swift similarity index 94% rename from SwiftGenKit/Sources/Parsers/StringsParser.swift rename to Sources/SwiftGenKit/Parsers/StringsParser.swift index 3683a70e..87a9aac3 100644 --- a/SwiftGenKit/Sources/Parsers/StringsParser.swift +++ b/Sources/SwiftGenKit/Parsers/StringsParser.swift @@ -68,7 +68,7 @@ public final class StringsParser: Parser { case unknown = "UnsafePointer<()>" init?(formatChar char: Character) { - guard let lcChar = String(char).lowercased().characters.first else { + guard let lcChar = String(char).lowercased().first else { return nil } switch lcChar { @@ -148,16 +148,16 @@ public final class StringsParser: Parser { let chars = formatTypesRegEx.matches(in: formatString, options: [], range: range) .map({ match -> (String, Int?) in let range: NSRange - if match.rangeAt(3).location != NSNotFound { + if match.range(at: 3).location != NSNotFound { // [dioux] are in range #3 because in #2 there may be length modifiers (like in "lld") - range = match.rangeAt(3) + range = match.range(at: 3) } else { // otherwise, no length modifier, the conversion specifier is in #2 - range = match.rangeAt(2) + range = match.range(at: 2) } let char = (formatString as NSString).substring(with: range) - let posRange = match.rangeAt(1) + let posRange = match.range(at: 1) if posRange.location == NSNotFound { // No positional specifier return (char, nil) @@ -174,7 +174,7 @@ public final class StringsParser: Parser { var list = [PlaceholderType]() var nextNonPositional = 1 for (str, pos) in chars { - if let char = str.characters.first, let p = PlaceholderType(formatChar: char) { + if let char = str.first, let p = PlaceholderType(formatChar: char) { let insertionPos: Int if let pos = pos { insertionPos = pos diff --git a/SwiftGenKit/Sources/Stencil/AssetsCatalogContext.swift b/Sources/SwiftGenKit/Stencil/AssetsCatalogContext.swift similarity index 100% rename from SwiftGenKit/Sources/Stencil/AssetsCatalogContext.swift rename to Sources/SwiftGenKit/Stencil/AssetsCatalogContext.swift diff --git a/SwiftGenKit/Sources/Stencil/ColorsContext.swift b/Sources/SwiftGenKit/Stencil/ColorsContext.swift similarity index 96% rename from SwiftGenKit/Sources/Stencil/ColorsContext.swift rename to Sources/SwiftGenKit/Stencil/ColorsContext.swift index 03ae87b0..898be292 100644 --- a/SwiftGenKit/Sources/Stencil/ColorsContext.swift +++ b/Sources/SwiftGenKit/Stencil/ColorsContext.swift @@ -39,7 +39,7 @@ extension ColorsParser { private func map(color name: String, value: UInt32) -> [String: String] { let name = name.trimmingCharacters(in: .whitespaces) let hex = "00000000" + String(value, radix: 16) - let hexChars = Array(hex.characters.suffix(8)) + let hexChars = Array(hex.suffix(8)) let comps = (0..<4).map { idx in String(hexChars[idx*2...idx*2+1]) } return [ diff --git a/SwiftGenKit/Sources/Stencil/FontsContext.swift b/Sources/SwiftGenKit/Stencil/FontsContext.swift similarity index 100% rename from SwiftGenKit/Sources/Stencil/FontsContext.swift rename to Sources/SwiftGenKit/Stencil/FontsContext.swift diff --git a/SwiftGenKit/Sources/Stencil/StoryboardsContext.swift b/Sources/SwiftGenKit/Stencil/StoryboardsContext.swift similarity index 100% rename from SwiftGenKit/Sources/Stencil/StoryboardsContext.swift rename to Sources/SwiftGenKit/Stencil/StoryboardsContext.swift diff --git a/SwiftGenKit/Sources/Stencil/StringsContext.swift b/Sources/SwiftGenKit/Stencil/StringsContext.swift similarity index 100% rename from SwiftGenKit/Sources/Stencil/StringsContext.swift rename to Sources/SwiftGenKit/Stencil/StringsContext.swift diff --git a/SwiftGen.xcodeproj/project.pbxproj b/SwiftGen.xcodeproj/project.pbxproj index 27a93b50..79f52e6c 100644 --- a/SwiftGen.xcodeproj/project.pbxproj +++ b/SwiftGen.xcodeproj/project.pbxproj @@ -41,6 +41,24 @@ 53241160829DC36474E9F505 /* Pods_Templates_UnitTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D1DA440B74FDF7492E436003 /* Pods_Templates_UnitTests.framework */; }; 7365C967EDB29CCF9A23D240 /* Pods_SwiftGen_UnitTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4C8B0E3902560E4CF6886907 /* Pods_SwiftGen_UnitTests.framework */; }; A99DC0C5A2CECABB34A121C8 /* Pods_swiftgen.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3F17C8613373A017F0B70B5C /* Pods_swiftgen.framework */; }; + AD6DB869251A7D5FBFDCCDEB /* Pods_SwiftGenKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EE27639274EB826C62E61517 /* Pods_SwiftGenKit.framework */; }; + DD428DFF1FC50F56001649D6 /* SwiftGenKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DD428DF81FC50F56001649D6 /* SwiftGenKit.framework */; }; + DD428E001FC50F56001649D6 /* SwiftGenKit.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = DD428DF81FC50F56001649D6 /* SwiftGenKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; + DD428E191FC50FBF001649D6 /* FontsParser.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD428E071FC50FBF001649D6 /* FontsParser.swift */; }; + DD428E1A1FC50FBF001649D6 /* ColorsCLRFileParser.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD428E091FC50FBF001649D6 /* ColorsCLRFileParser.swift */; }; + DD428E1B1FC50FBF001649D6 /* ColorsJSONFileParser.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD428E0A1FC50FBF001649D6 /* ColorsJSONFileParser.swift */; }; + DD428E1C1FC50FBF001649D6 /* ColorsTXTFileParser.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD428E0B1FC50FBF001649D6 /* ColorsTXTFileParser.swift */; }; + DD428E1D1FC50FBF001649D6 /* ColorsXMLFileParser.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD428E0C1FC50FBF001649D6 /* ColorsXMLFileParser.swift */; }; + DD428E1E1FC50FBF001649D6 /* AssetsCatalogParser.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD428E0D1FC50FBF001649D6 /* AssetsCatalogParser.swift */; }; + DD428E1F1FC50FBF001649D6 /* StoryboardParser.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD428E0E1FC50FBF001649D6 /* StoryboardParser.swift */; }; + DD428E201FC50FBF001649D6 /* Parser.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD428E0F1FC50FBF001649D6 /* Parser.swift */; }; + DD428E211FC50FBF001649D6 /* StringsParser.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD428E101FC50FBF001649D6 /* StringsParser.swift */; }; + DD428E221FC50FBF001649D6 /* ColorsParser.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD428E111FC50FBF001649D6 /* ColorsParser.swift */; }; + DD428E231FC50FBF001649D6 /* FontsContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD428E131FC50FBF001649D6 /* FontsContext.swift */; }; + DD428E241FC50FBF001649D6 /* ColorsContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD428E141FC50FBF001649D6 /* ColorsContext.swift */; }; + DD428E251FC50FBF001649D6 /* AssetsCatalogContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD428E151FC50FBF001649D6 /* AssetsCatalogContext.swift */; }; + DD428E261FC50FBF001649D6 /* StoryboardsContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD428E161FC50FBF001649D6 /* StoryboardsContext.swift */; }; + DD428E271FC50FBF001649D6 /* StringsContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD428E171FC50FBF001649D6 /* StringsContext.swift */; }; DD906FA81EE777C600C29B8A /* ParserCLICommands.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD906FA71EE777C600C29B8A /* ParserCLICommands.swift */; }; DDC09D021E1D199A005C6EE6 /* templates in Resources */ = {isa = PBXBuildFile; fileRef = DDC09D011E1D199A005C6EE6 /* templates */; }; DDDE51131FAF6AD4004203BE /* StringsTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDDE506D1FAF6AD4004203BE /* StringsTests.swift */; }; @@ -67,6 +85,7 @@ DDDE52751FAF81BA004203BE /* AssetCatalogTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDDE52201FAF81BA004203BE /* AssetCatalogTests.swift */; }; DDDE52781FAF81DB004203BE /* Contexts in Resources */ = {isa = PBXBuildFile; fileRef = DDDE52761FAF81DB004203BE /* Contexts */; }; DDDE52791FAF81DB004203BE /* Fixtures in Resources */ = {isa = PBXBuildFile; fileRef = DDDE52771FAF81DB004203BE /* Fixtures */; }; + DDFB05E21FC5170F0019E199 /* SwiftGenKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DD428DF81FC50F56001649D6 /* SwiftGenKit.framework */; }; E6EED7099D7FD4A86FE56D8D /* Pods_SwiftGenKit_UnitTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F8ECFEBCA1C3831123A7C752 /* Pods_SwiftGenKit_UnitTests.framework */; }; /* End PBXBuildFile section */ @@ -163,6 +182,37 @@ }; /* End PBXBuildRule section */ +/* Begin PBXContainerItemProxy section */ + DD428DFD1FC50F56001649D6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 09030B631B6D254200275BF5 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DD428DF71FC50F56001649D6; + remoteInfo = SwiftGenKit2; + }; + DDFB05E31FC517170019E199 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 09030B631B6D254200275BF5 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DD428DF71FC50F56001649D6; + remoteInfo = SwiftGenKit; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXCopyFilesBuildPhase section */ + DD428E041FC50F56001649D6 /* Embed Frameworks */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 10; + files = ( + DD428E001FC50F56001649D6 /* SwiftGenKit.framework in Embed Frameworks */, + ); + name = "Embed Frameworks"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + /* Begin PBXFileReference section */ 09030BC01B6D2A8F00275BF5 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 09030BD81B6D2E5900275BF5 /* ConfigReadTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ConfigReadTests.swift; sourceTree = ""; }; @@ -179,10 +229,11 @@ 09D009FE1F9BB3450026A755 /* ConfigEntry.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ConfigEntry.swift; sourceTree = ""; }; 09D00A021F9BBD9F0026A755 /* ConfigLintTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ConfigLintTests.swift; sourceTree = ""; }; 09E7146D1B6D55B4007FF3CF /* SwiftGen.playground */ = {isa = PBXFileReference; lastKnownFileType = file.playground; path = SwiftGen.playground; sourceTree = ""; }; + 11C767774E7B3E8C7192E4B3 /* Pods-SwiftGenKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SwiftGenKit.debug.xcconfig"; path = "Pods/Target Support Files/Pods-SwiftGenKit/Pods-SwiftGenKit.debug.xcconfig"; sourceTree = ""; }; 137AB91838D0C022566A139C /* Pods-SwiftGenKit UnitTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SwiftGenKit UnitTests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-SwiftGenKit UnitTests/Pods-SwiftGenKit UnitTests.debug.xcconfig"; sourceTree = ""; }; 1634E203F37E1AEB7AE01474 /* Pods-SwiftGenKit UnitTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SwiftGenKit UnitTests.release.xcconfig"; path = "Pods/Target Support Files/Pods-SwiftGenKit UnitTests/Pods-SwiftGenKit UnitTests.release.xcconfig"; sourceTree = ""; }; 234F7E6E1DEBD5C5001B3C10 /* swiftgen.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = swiftgen.app; sourceTree = BUILT_PRODUCTS_DIR; }; - 234F7E771DEBD5C5001B3C10 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = Info.plist; path = Sources/SwiftGen/Info.plist; sourceTree = ""; }; + 234F7E771DEBD5C5001B3C10 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 2853A35146981A2DAFC26007 /* Pods-SwiftGen UnitTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SwiftGen UnitTests.release.xcconfig"; path = "Pods/Target Support Files/Pods-SwiftGen UnitTests/Pods-SwiftGen UnitTests.release.xcconfig"; sourceTree = ""; }; 2BC3662493CCB001CA734B62 /* Pods-Templates UnitTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Templates UnitTests.release.xcconfig"; path = "Pods/Target Support Files/Pods-Templates UnitTests/Pods-Templates UnitTests.release.xcconfig"; sourceTree = ""; }; 2FECAA9B5A99ECF32BC7C59C /* Pods-swiftgen.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-swiftgen.debug.xcconfig"; path = "Pods/Target Support Files/Pods-swiftgen/Pods-swiftgen.debug.xcconfig"; sourceTree = ""; }; @@ -202,11 +253,29 @@ 3F17C8613373A017F0B70B5C /* Pods_swiftgen.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_swiftgen.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 4C8B0E3902560E4CF6886907 /* Pods_SwiftGen_UnitTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_SwiftGen_UnitTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 80C3A19C1BBD55A5644EDC18 /* Pods_UnitTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_UnitTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 823A44FF7DA835A3040D1987 /* Pods-SwiftGenKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SwiftGenKit.release.xcconfig"; path = "Pods/Target Support Files/Pods-SwiftGenKit/Pods-SwiftGenKit.release.xcconfig"; sourceTree = ""; }; 90843707F44D6F8153913604 /* Pods-UnitTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-UnitTests.release.xcconfig"; path = "Pods/Target Support Files/Pods-UnitTests/Pods-UnitTests.release.xcconfig"; sourceTree = ""; }; 920E71433B3570488CF5B052 /* Pods-UnitTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-UnitTests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-UnitTests/Pods-UnitTests.debug.xcconfig"; sourceTree = ""; }; CA8DF50C5FC85A82AE3731B0 /* Pods-Templates UnitTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Templates UnitTests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-Templates UnitTests/Pods-Templates UnitTests.debug.xcconfig"; sourceTree = ""; }; D1DA440B74FDF7492E436003 /* Pods_Templates_UnitTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Templates_UnitTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; D8AC6E8E60EADE4523EA68E9 /* Pods-swiftgen.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-swiftgen.release.xcconfig"; path = "Pods/Target Support Files/Pods-swiftgen/Pods-swiftgen.release.xcconfig"; sourceTree = ""; }; + DD428DF81FC50F56001649D6 /* SwiftGenKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SwiftGenKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + DD428E071FC50FBF001649D6 /* FontsParser.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FontsParser.swift; sourceTree = ""; }; + DD428E091FC50FBF001649D6 /* ColorsCLRFileParser.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ColorsCLRFileParser.swift; sourceTree = ""; }; + DD428E0A1FC50FBF001649D6 /* ColorsJSONFileParser.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ColorsJSONFileParser.swift; sourceTree = ""; }; + DD428E0B1FC50FBF001649D6 /* ColorsTXTFileParser.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ColorsTXTFileParser.swift; sourceTree = ""; }; + DD428E0C1FC50FBF001649D6 /* ColorsXMLFileParser.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ColorsXMLFileParser.swift; sourceTree = ""; }; + DD428E0D1FC50FBF001649D6 /* AssetsCatalogParser.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AssetsCatalogParser.swift; sourceTree = ""; }; + DD428E0E1FC50FBF001649D6 /* StoryboardParser.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StoryboardParser.swift; sourceTree = ""; }; + DD428E0F1FC50FBF001649D6 /* Parser.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Parser.swift; sourceTree = ""; }; + DD428E101FC50FBF001649D6 /* StringsParser.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StringsParser.swift; sourceTree = ""; }; + DD428E111FC50FBF001649D6 /* ColorsParser.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ColorsParser.swift; sourceTree = ""; }; + DD428E131FC50FBF001649D6 /* FontsContext.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FontsContext.swift; sourceTree = ""; }; + DD428E141FC50FBF001649D6 /* ColorsContext.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ColorsContext.swift; sourceTree = ""; }; + DD428E151FC50FBF001649D6 /* AssetsCatalogContext.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AssetsCatalogContext.swift; sourceTree = ""; }; + DD428E161FC50FBF001649D6 /* StoryboardsContext.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StoryboardsContext.swift; sourceTree = ""; }; + DD428E171FC50FBF001649D6 /* StringsContext.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StringsContext.swift; sourceTree = ""; }; + DD428E181FC50FBF001649D6 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; DD906FA71EE777C600C29B8A /* ParserCLICommands.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ParserCLICommands.swift; sourceTree = ""; }; DDC09D011E1D199A005C6EE6 /* templates */ = {isa = PBXFileReference; lastKnownFileType = folder; path = templates; sourceTree = ""; }; DDDE504B1FAF687A004203BE /* Templates UnitTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "Templates UnitTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -236,6 +305,7 @@ DDDE52201FAF81BA004203BE /* AssetCatalogTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AssetCatalogTests.swift; sourceTree = ""; }; DDDE52761FAF81DB004203BE /* Contexts */ = {isa = PBXFileReference; lastKnownFileType = folder; name = Contexts; path = ../Contexts; sourceTree = ""; }; DDDE52771FAF81DB004203BE /* Fixtures */ = {isa = PBXFileReference; lastKnownFileType = folder; name = Fixtures; path = ../Fixtures; sourceTree = ""; }; + EE27639274EB826C62E61517 /* Pods_SwiftGenKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_SwiftGenKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; F8A27646BEAEAA5505D59B99 /* Pods-SwiftGen UnitTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SwiftGen UnitTests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-SwiftGen UnitTests/Pods-SwiftGen UnitTests.debug.xcconfig"; sourceTree = ""; }; F8ECFEBCA1C3831123A7C752 /* Pods_SwiftGenKit_UnitTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_SwiftGenKit_UnitTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; /* End PBXFileReference section */ @@ -254,6 +324,15 @@ buildActionMask = 2147483647; files = ( A99DC0C5A2CECABB34A121C8 /* Pods_swiftgen.framework in Frameworks */, + DD428DFF1FC50F56001649D6 /* SwiftGenKit.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DD428DF41FC50F56001649D6 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + AD6DB869251A7D5FBFDCCDEB /* Pods_SwiftGenKit.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -269,6 +348,7 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + DDFB05E21FC5170F0019E199 /* SwiftGenKit.framework in Frameworks */, E6EED7099D7FD4A86FE56D8D /* Pods_SwiftGenKit_UnitTests.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; @@ -299,6 +379,7 @@ 234F7E6E1DEBD5C5001B3C10 /* swiftgen.app */, DDDE504B1FAF687A004203BE /* Templates UnitTests.xctest */, DDDE51B71FAF814A004203BE /* SwiftGenKit UnitTests.xctest */, + DD428DF81FC50F56001649D6 /* SwiftGenKit.framework */, ); name = Products; sourceTree = ""; @@ -347,6 +428,7 @@ isa = PBXGroup; children = ( DD428DF21FC50D34001649D6 /* SwiftGen */, + DD428E051FC50FBF001649D6 /* SwiftGenKit */, ); path = Sources; sourceTree = ""; @@ -380,6 +462,7 @@ 4C8B0E3902560E4CF6886907 /* Pods_SwiftGen_UnitTests.framework */, D1DA440B74FDF7492E436003 /* Pods_Templates_UnitTests.framework */, F8ECFEBCA1C3831123A7C752 /* Pods_SwiftGenKit_UnitTests.framework */, + EE27639274EB826C62E61517 /* Pods_SwiftGenKit.framework */, ); name = Frameworks; sourceTree = ""; @@ -398,10 +481,75 @@ path = SwiftGen; sourceTree = ""; }; - DDC09C7D1E1D193F005C6EE6 /* Resources */ = { + DD428E051FC50FBF001649D6 /* SwiftGenKit */ = { + isa = PBXGroup; + children = ( + DD428E061FC50FBF001649D6 /* Parsers */, + DD428E121FC50FBF001649D6 /* Stencil */, + ); + path = SwiftGenKit; + sourceTree = ""; + }; + DD428E061FC50FBF001649D6 /* Parsers */ = { + isa = PBXGroup; + children = ( + DD428E071FC50FBF001649D6 /* FontsParser.swift */, + DD428E081FC50FBF001649D6 /* ColorsFileParsers */, + DD428E0D1FC50FBF001649D6 /* AssetsCatalogParser.swift */, + DD428E0E1FC50FBF001649D6 /* StoryboardParser.swift */, + DD428E0F1FC50FBF001649D6 /* Parser.swift */, + DD428E101FC50FBF001649D6 /* StringsParser.swift */, + DD428E111FC50FBF001649D6 /* ColorsParser.swift */, + ); + path = Parsers; + sourceTree = ""; + }; + DD428E081FC50FBF001649D6 /* ColorsFileParsers */ = { + isa = PBXGroup; + children = ( + DD428E091FC50FBF001649D6 /* ColorsCLRFileParser.swift */, + DD428E0A1FC50FBF001649D6 /* ColorsJSONFileParser.swift */, + DD428E0B1FC50FBF001649D6 /* ColorsTXTFileParser.swift */, + DD428E0C1FC50FBF001649D6 /* ColorsXMLFileParser.swift */, + ); + path = ColorsFileParsers; + sourceTree = ""; + }; + DD428E121FC50FBF001649D6 /* Stencil */ = { + isa = PBXGroup; + children = ( + DD428E131FC50FBF001649D6 /* FontsContext.swift */, + DD428E141FC50FBF001649D6 /* ColorsContext.swift */, + DD428E151FC50FBF001649D6 /* AssetsCatalogContext.swift */, + DD428E161FC50FBF001649D6 /* StoryboardsContext.swift */, + DD428E171FC50FBF001649D6 /* StringsContext.swift */, + ); + path = Stencil; + sourceTree = ""; + }; + DD428E291FC50FED001649D6 /* SwiftGen */ = { isa = PBXGroup; children = ( 234F7E771DEBD5C5001B3C10 /* Info.plist */, + ); + name = SwiftGen; + path = Sources/SwiftGen; + sourceTree = ""; + }; + DD428E2A1FC50FF8001649D6 /* SwiftGenKit */ = { + isa = PBXGroup; + children = ( + DD428E181FC50FBF001649D6 /* Info.plist */, + ); + name = SwiftGenKit; + path = Sources/SwiftGenKit; + sourceTree = ""; + }; + DDC09C7D1E1D193F005C6EE6 /* Resources */ = { + isa = PBXGroup; + children = ( + DD428E291FC50FED001649D6 /* SwiftGen */, + DD428E2A1FC50FF8001649D6 /* SwiftGenKit */, DDC09D011E1D199A005C6EE6 /* templates */, ); name = Resources; @@ -459,12 +607,24 @@ 2BC3662493CCB001CA734B62 /* Pods-Templates UnitTests.release.xcconfig */, 137AB91838D0C022566A139C /* Pods-SwiftGenKit UnitTests.debug.xcconfig */, 1634E203F37E1AEB7AE01474 /* Pods-SwiftGenKit UnitTests.release.xcconfig */, + 11C767774E7B3E8C7192E4B3 /* Pods-SwiftGenKit.debug.xcconfig */, + 823A44FF7DA835A3040D1987 /* Pods-SwiftGenKit.release.xcconfig */, ); name = Pods; sourceTree = ""; }; /* End PBXGroup section */ +/* Begin PBXHeadersBuildPhase section */ + DD428DF51FC50F56001649D6 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXHeadersBuildPhase section */ + /* Begin PBXNativeTarget section */ 09A87B4F1BCCA2C600D9B9F5 /* SwiftGen UnitTests */ = { isa = PBXNativeTarget; @@ -500,16 +660,38 @@ 234F7E6C1DEBD5C5001B3C10 /* Resources */, E6B168DFED17C377CD98D29B /* [CP] Embed Pods Frameworks */, 4811547A0A30F3C9A2E79956 /* [CP] Copy Pods Resources */, + DD428E041FC50F56001649D6 /* Embed Frameworks */, ); buildRules = ( ); dependencies = ( + DD428DFE1FC50F56001649D6 /* PBXTargetDependency */, ); name = swiftgen; productName = swiftgen; productReference = 234F7E6E1DEBD5C5001B3C10 /* swiftgen.app */; productType = "com.apple.product-type.application"; }; + DD428DF71FC50F56001649D6 /* SwiftGenKit */ = { + isa = PBXNativeTarget; + buildConfigurationList = DD428E011FC50F56001649D6 /* Build configuration list for PBXNativeTarget "SwiftGenKit" */; + buildPhases = ( + F0A0CBF584EF7BC6F875353C /* [CP] Check Pods Manifest.lock */, + DD428DF31FC50F56001649D6 /* Sources */, + DD428DF41FC50F56001649D6 /* Frameworks */, + DD428DF51FC50F56001649D6 /* Headers */, + DD428DF61FC50F56001649D6 /* Resources */, + AC1A57B9D3373C88A7337E8D /* [CP] Copy Pods Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = SwiftGenKit; + productName = SwiftGenKit2; + productReference = DD428DF81FC50F56001649D6 /* SwiftGenKit.framework */; + productType = "com.apple.product-type.framework"; + }; DDDE50291FAF687A004203BE /* Templates UnitTests */ = { isa = PBXNativeTarget; buildConfigurationList = DDDE50481FAF687A004203BE /* Build configuration list for PBXNativeTarget "Templates UnitTests" */; @@ -550,6 +732,7 @@ DDDE51B31FAF814A004203BE /* PBXBuildRule */, ); dependencies = ( + DDFB05E41FC517170019E199 /* PBXTargetDependency */, ); name = "SwiftGenKit UnitTests"; productName = SwiftGenKitTests; @@ -575,6 +758,10 @@ LastSwiftMigration = 0900; ProvisioningStyle = Automatic; }; + DD428DF71FC50F56001649D6 = { + CreatedOnToolsVersion = 9.1; + ProvisioningStyle = Automatic; + }; }; }; buildConfigurationList = 09030B661B6D254200275BF5 /* Build configuration list for PBXProject "SwiftGen" */; @@ -591,6 +778,7 @@ projectRoot = ""; targets = ( 234F7E6D1DEBD5C5001B3C10 /* swiftgen */, + DD428DF71FC50F56001649D6 /* SwiftGenKit */, 09A87B4F1BCCA2C600D9B9F5 /* SwiftGen UnitTests */, DDDE519F1FAF814A004203BE /* SwiftGenKit UnitTests */, DDDE50291FAF687A004203BE /* Templates UnitTests */, @@ -625,6 +813,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + DD428DF61FC50F56001649D6 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; DDDE50371FAF687A004203BE /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; @@ -676,6 +871,21 @@ shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-swiftgen/Pods-swiftgen-resources.sh\"\n"; showEnvVarsInLog = 0; }; + AC1A57B9D3373C88A7337E8D /* [CP] Copy Pods Resources */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "[CP] Copy Pods Resources"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-SwiftGenKit/Pods-SwiftGenKit-resources.sh\"\n"; + showEnvVarsInLog = 0; + }; BE75D8128E36C265E04E39E6 /* [CP] Check Pods Manifest.lock */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -792,15 +1002,11 @@ ); inputPaths = ( "${SRCROOT}/Pods/Target Support Files/Pods-SwiftGenKit UnitTests/Pods-SwiftGenKit UnitTests-frameworks.sh", - "${BUILT_PRODUCTS_DIR}/Kanna/Kanna.framework", "${BUILT_PRODUCTS_DIR}/PathKit/PathKit.framework", - "${BUILT_PRODUCTS_DIR}/SwiftGenKit/SwiftGenKit.framework", ); name = "[CP] Embed Pods Frameworks"; outputPaths = ( - "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Kanna.framework", "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/PathKit.framework", - "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SwiftGenKit.framework", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; @@ -829,20 +1035,16 @@ ); inputPaths = ( "${SRCROOT}/Pods/Target Support Files/Pods-SwiftGen UnitTests/Pods-SwiftGen UnitTests-frameworks.sh", - "${BUILT_PRODUCTS_DIR}/Kanna/Kanna.framework", "${BUILT_PRODUCTS_DIR}/PathKit/PathKit.framework", "${BUILT_PRODUCTS_DIR}/Stencil/Stencil.framework", "${BUILT_PRODUCTS_DIR}/StencilSwiftKit/StencilSwiftKit.framework", - "${BUILT_PRODUCTS_DIR}/SwiftGenKit/SwiftGenKit.framework", "${BUILT_PRODUCTS_DIR}/Yams/Yams.framework", ); name = "[CP] Embed Pods Frameworks"; outputPaths = ( - "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Kanna.framework", "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/PathKit.framework", "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Stencil.framework", "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/StencilSwiftKit.framework", - "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SwiftGenKit.framework", "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Yams.framework", ); runOnlyForDeploymentPostprocessing = 0; @@ -858,22 +1060,20 @@ inputPaths = ( "${SRCROOT}/Pods/Target Support Files/Pods-swiftgen/Pods-swiftgen-frameworks.sh", "${BUILT_PRODUCTS_DIR}/Commander/Commander.framework", - "${BUILT_PRODUCTS_DIR}/Kanna/Kanna.framework", "${BUILT_PRODUCTS_DIR}/PathKit/PathKit.framework", "${BUILT_PRODUCTS_DIR}/Stencil/Stencil.framework", "${BUILT_PRODUCTS_DIR}/StencilSwiftKit/StencilSwiftKit.framework", - "${BUILT_PRODUCTS_DIR}/SwiftGenKit/SwiftGenKit.framework", "${BUILT_PRODUCTS_DIR}/Yams/Yams.framework", + "${BUILT_PRODUCTS_DIR}/Kanna/Kanna.framework", ); name = "[CP] Embed Pods Frameworks"; outputPaths = ( "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Commander.framework", - "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Kanna.framework", "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/PathKit.framework", "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Stencil.framework", "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/StencilSwiftKit.framework", - "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SwiftGenKit.framework", "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Yams.framework", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Kanna.framework", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; @@ -895,6 +1095,24 @@ shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-SwiftGen UnitTests/Pods-SwiftGen UnitTests-resources.sh\"\n"; showEnvVarsInLog = 0; }; + F0A0CBF584EF7BC6F875353C /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; + outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-SwiftGenKit-checkManifestLockResult.txt", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; + showEnvVarsInLog = 0; + }; /* End PBXShellScriptBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ @@ -933,6 +1151,28 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + DD428DF31FC50F56001649D6 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DD428E261FC50FBF001649D6 /* StoryboardsContext.swift in Sources */, + DD428E221FC50FBF001649D6 /* ColorsParser.swift in Sources */, + DD428E1B1FC50FBF001649D6 /* ColorsJSONFileParser.swift in Sources */, + DD428E1D1FC50FBF001649D6 /* ColorsXMLFileParser.swift in Sources */, + DD428E1F1FC50FBF001649D6 /* StoryboardParser.swift in Sources */, + DD428E251FC50FBF001649D6 /* AssetsCatalogContext.swift in Sources */, + DD428E1A1FC50FBF001649D6 /* ColorsCLRFileParser.swift in Sources */, + DD428E241FC50FBF001649D6 /* ColorsContext.swift in Sources */, + DD428E201FC50FBF001649D6 /* Parser.swift in Sources */, + DD428E1E1FC50FBF001649D6 /* AssetsCatalogParser.swift in Sources */, + DD428E271FC50FBF001649D6 /* StringsContext.swift in Sources */, + DD428E211FC50FBF001649D6 /* StringsParser.swift in Sources */, + DD428E231FC50FBF001649D6 /* FontsContext.swift in Sources */, + DD428E191FC50FBF001649D6 /* FontsParser.swift in Sources */, + DD428E1C1FC50FBF001649D6 /* ColorsTXTFileParser.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; DDDE502B1FAF687A004203BE /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -968,6 +1208,19 @@ }; /* End PBXSourcesBuildPhase section */ +/* Begin PBXTargetDependency section */ + DD428DFE1FC50F56001649D6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = DD428DF71FC50F56001649D6 /* SwiftGenKit */; + targetProxy = DD428DFD1FC50F56001649D6 /* PBXContainerItemProxy */; + }; + DDFB05E41FC517170019E199 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = DD428DF71FC50F56001649D6 /* SwiftGenKit */; + targetProxy = DDFB05E31FC517170019E199 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + /* Begin XCBuildConfiguration section */ 09030B701B6D254200275BF5 /* Debug */ = { isa = XCBuildConfiguration; @@ -1012,12 +1265,12 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.10; + MACOSX_DEPLOYMENT_TARGET = 10.11; MTL_ENABLE_DEBUG_INFO = YES; ONLY_ACTIVE_ARCH = YES; SDKROOT = macosx; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - SWIFT_VERSION = 3.0; + SWIFT_VERSION = 4.0; }; name = Debug; }; @@ -1058,11 +1311,11 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.10; + MACOSX_DEPLOYMENT_TARGET = 10.11; MTL_ENABLE_DEBUG_INFO = NO; SDKROOT = macosx; SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; - SWIFT_VERSION = 3.0; + SWIFT_VERSION = 4.0; }; name = Release; }; @@ -1106,7 +1359,6 @@ COMBINE_HIDPI_IMAGES = YES; INFOPLIST_FILE = Sources/SwiftGen/Info.plist; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 10.11; OTHER_LDFLAGS = ( "$(inherited)", "$(SWIFTGEN_OTHER_LDFLAGS)", @@ -1114,7 +1366,6 @@ PRODUCT_BUNDLE_IDENTIFIER = com.alisoftware.swiftgen; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; - SWIFT_VERSION = 4.0; }; name = Debug; }; @@ -1130,14 +1381,65 @@ COMBINE_HIDPI_IMAGES = YES; INFOPLIST_FILE = Sources/SwiftGen/Info.plist; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 10.11; OTHER_LDFLAGS = ( "$(inherited)", "$(SWIFTGEN_OTHER_LDFLAGS)", ); PRODUCT_BUNDLE_IDENTIFIER = com.alisoftware.swiftgen; PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_VERSION = 4.0; + }; + name = Release; + }; + DD428E021FC50F56001649D6 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 11C767774E7B3E8C7192E4B3 /* Pods-SwiftGenKit.debug.xcconfig */; + buildSettings = { + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CODE_SIGN_IDENTITY = "-"; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + FRAMEWORK_VERSION = A; + INFOPLIST_FILE = Sources/SwiftGenKit/Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; + PRODUCT_BUNDLE_IDENTIFIER = com.alisoftware.SwiftGenKit; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Debug; + }; + DD428E031FC50F56001649D6 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 823A44FF7DA835A3040D1987 /* Pods-SwiftGenKit.release.xcconfig */; + buildSettings = { + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CODE_SIGN_IDENTITY = "-"; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + FRAMEWORK_VERSION = A; + INFOPLIST_FILE = Sources/SwiftGenKit/Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; + PRODUCT_BUNDLE_IDENTIFIER = com.alisoftware.SwiftGenKit; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + VERSIONING_SYSTEM = "apple-generic"; }; name = Release; }; @@ -1227,6 +1529,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + DD428E011FC50F56001649D6 /* Build configuration list for PBXNativeTarget "SwiftGenKit" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DD428E021FC50F56001649D6 /* Debug */, + DD428E031FC50F56001649D6 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; DDDE50481FAF687A004203BE /* Build configuration list for PBXNativeTarget "Templates UnitTests" */ = { isa = XCConfigurationList; buildConfigurations = ( diff --git a/SwiftGenKit/SwiftGenKit.podspec b/SwiftGenKit.podspec similarity index 100% rename from SwiftGenKit/SwiftGenKit.podspec rename to SwiftGenKit.podspec diff --git a/SwiftGenKit/.swift-version b/SwiftGenKit/.swift-version deleted file mode 100644 index 9f55b2cc..00000000 --- a/SwiftGenKit/.swift-version +++ /dev/null @@ -1 +0,0 @@ -3.0 diff --git a/SwiftGenKit/README.md b/SwiftGenKit/README.md deleted file mode 100644 index 5173b4bd..00000000 --- a/SwiftGenKit/README.md +++ /dev/null @@ -1,32 +0,0 @@ -# SwiftGenKit - -[![CircleCI](https://circleci.com/gh/SwiftGen/SwiftGenKit/tree/master.svg?style=svg)](https://circleci.com/gh/SwiftGen/SwiftGenKit/tree/master) -[![CocoaPods Compatible](https://img.shields.io/cocoapods/v/SwiftGenKit.svg)](https://img.shields.io/cocoapods/v/SwiftGenKit.svg) -[![Platform](https://img.shields.io/cocoapods/p/SwiftGenKit.svg?style=flat)](http://cocoadocs.org/docsets/SwiftGenKit) -![Swift 3.0](https://img.shields.io/badge/Swift-3.0-orange.svg) - -This is the framework behind _SwiftGen_, responsible for parsing various resources and turning them into Stencil contexts. - -## Context - -This framework contains various resource parsers (especially parsers for images, Localizable strings files, fonts, color palettes, storyboards, …) which are responsible for providing a dictionary representation of those resources suitable to be used by a template engine like [Stencil](https://github.com/kylef/Stencil). - -The goal of this framework is to be used by Code Generation tools like SwiftGen to turn those resources into some internal representation that can then be used to generate custom code from it. - -## Documentation - -Each parser provided by this framework has a corresponding documentation file explaining the expected input and the format of the generated output, so you can know how to exploit it: - -* [Assets](Documentation/Assets.md) -* [Colors](Documentation/Colors.md) -* [Fonts](Documentation/Fonts.md) -* [Storyboards](Documentation/Storyboards.md) -* [Strings](Documentation/Strings.md) - -## Contributing - -Please check the [CONTRIBUTING file](https://github.com/SwiftGen/SwiftGen/blob/master/CONTRIBUTING.md) for guidelines on how to contribute to this repository. - -During development, should you make changes to the code generating context, you can re-generate all the context files instead of modifying them manually. Use either of these methods: -- In Xcode, select the "Generate Contexts" scheme and run the tests -- From Terminal, execute `rake generate_contexts`