gitextract_98a7l1sm/ ├── .github/ │ └── workflows/ │ ├── checks.yml │ └── release.yml ├── .gitignore ├── Documentation/ │ ├── Contribute.md │ ├── Examples.md │ ├── Ignoring.md │ ├── Migration.md │ ├── QandA.md │ └── Readme.md ├── Examples/ │ ├── FileSystemSynchronized/ │ │ ├── FileSystemSynchronized.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── MainUI/ │ │ │ ├── Assets.xcassets/ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ └── hand.ignoreme.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj/ │ │ │ │ └── MyStoryboard.storyboard │ │ │ ├── ContentView.swift │ │ │ ├── Info.plist │ │ │ ├── MainUI.entitlements │ │ │ ├── MainUIApp.swift │ │ │ ├── Preview Content/ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ └── Contents.json │ │ │ ├── View.xib │ │ │ └── nl.lproj/ │ │ │ └── MyStoryboard.strings │ │ └── TheAppClip/ │ │ ├── ClipAssets.xcassets/ │ │ │ ├── Contents.json │ │ │ └── MyColor.colorset/ │ │ │ └── Contents.json │ │ ├── ContentView.swift │ │ ├── Group1/ │ │ │ ├── Base.lproj/ │ │ │ │ └── MySiriIntents.intentdefinition │ │ │ ├── Folder1/ │ │ │ │ └── .gitkeep │ │ │ └── nl.lproj/ │ │ │ └── MySiriIntents.strings │ │ ├── Info.plist │ │ ├── Preview Content/ │ │ │ └── Preview Assets.xcassets/ │ │ │ └── Contents.json │ │ ├── TheAppClip.entitlements │ │ ├── TheAppClipApp.swift │ │ ├── en.lproj/ │ │ │ └── Localizable.strings │ │ └── nl.lproj/ │ │ └── Localizable.strings │ ├── LocalizedStringApp/ │ │ ├── LocalizedStringApp/ │ │ │ ├── AppDelegate.swift │ │ │ ├── Base.lproj/ │ │ │ │ ├── eight.strings │ │ │ │ └── nine.strings │ │ │ ├── Info.plist │ │ │ ├── ca.lproj/ │ │ │ │ └── four.strings │ │ │ ├── en-GB.lproj/ │ │ │ │ └── five.strings │ │ │ ├── en.lproj/ │ │ │ │ ├── MyStoryboard.storyboard │ │ │ │ ├── five.strings │ │ │ │ ├── nine.strings │ │ │ │ ├── seven.strings │ │ │ │ ├── three.strings │ │ │ │ └── two.strings │ │ │ ├── fr-CA.lproj/ │ │ │ │ ├── five.strings │ │ │ │ └── six.strings │ │ │ ├── fr.lproj/ │ │ │ │ ├── eight.strings │ │ │ │ ├── five.strings │ │ │ │ ├── nine.strings │ │ │ │ ├── seven.strings │ │ │ │ ├── six.strings │ │ │ │ └── ten.stringsdict │ │ │ ├── nl.lproj/ │ │ │ │ ├── eight.strings │ │ │ │ ├── four.strings │ │ │ │ ├── nine.strings │ │ │ │ ├── seven.strings │ │ │ │ ├── ten.stringsdict │ │ │ │ └── three.strings │ │ │ └── one.strings │ │ ├── LocalizedStringApp.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── swiftpm/ │ │ │ │ └── Package.resolved │ │ │ └── xcshareddata/ │ │ │ └── xcschemes/ │ │ │ ├── LocalizedStringApp Dutch.xcscheme │ │ │ ├── LocalizedStringApp English (GB).xcscheme │ │ │ ├── LocalizedStringApp English.xcscheme │ │ │ ├── LocalizedStringApp French (Canada).xcscheme │ │ │ ├── LocalizedStringApp French.xcscheme │ │ │ ├── LocalizedStringApp Turkish.xcscheme │ │ │ └── LocalizedStringApp.xcscheme │ │ └── LocalizedStringAppTests/ │ │ ├── Info.plist │ │ └── LocalizedStringAppTests.swift │ ├── ResourceApp/ │ │ ├── .rswiftignore │ │ ├── Podfile │ │ ├── ResourceApp/ │ │ │ ├── AppDelegate.swift │ │ │ ├── Base.lproj/ │ │ │ │ ├── LaunchScreen.xib │ │ │ │ ├── Main.storyboard │ │ │ │ └── Secondary.storyboard │ │ │ ├── CellCollectionView.xib │ │ │ ├── CellView.xib │ │ │ ├── CustomSegue.swift │ │ │ ├── Duplicate/ │ │ │ │ ├── ADuplicateCellView.xib │ │ │ │ ├── duplicate.storyboard │ │ │ │ └── duplicate.xib │ │ │ ├── Duplicate.storyboard │ │ │ ├── Duplicate.xib │ │ │ ├── DuplicateCellView.xib │ │ │ ├── Files/ │ │ │ │ ├── #column │ │ │ │ ├── Duplicate.json │ │ │ │ ├── Some.json │ │ │ │ ├── __FILE__ │ │ │ │ ├── associatedtype │ │ │ │ └── duplicateJson │ │ │ ├── FirstViewController.swift │ │ │ ├── Images/ │ │ │ │ └── Sky.tiff │ │ │ ├── Images.xcassets/ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── My Red.colorset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Namespace/ │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Second.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── first.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Second.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Some Folder/ │ │ │ │ │ ├── A Nested Folder/ │ │ │ │ │ │ ├── first nested.imageset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── second nested.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── eerste.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── second.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── TheAppIcon.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── first.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── Images2.xcassets/ │ │ │ │ ├── Conflicting.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Namespace 1/ │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Inner/ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── Namespace 2/ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── Folder/ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── first.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Second.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── third.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Namespace-/ │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Inner/ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── Namespace/ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── Folder/ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── first.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Second.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── third.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── conflicting/ │ │ │ │ ├── Contents.json │ │ │ │ └── first.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── Localized/ │ │ │ │ ├── Base.lproj/ │ │ │ │ │ └── hello.txt │ │ │ │ ├── es.lproj/ │ │ │ │ │ └── hello.txt │ │ │ │ └── nl.lproj/ │ │ │ │ └── hello.txt │ │ │ ├── Media.xcassets/ │ │ │ │ ├── Contents.json │ │ │ │ ├── Folder/ │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── Not dupe.colorset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Keyboard Focus Indicator color.colorset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── My Red.colorset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Not dupe.colorset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Slightly transparant.colorset/ │ │ │ │ └── Contents.json │ │ │ ├── My View.xib │ │ │ ├── MyViewController.swift │ │ │ ├── References.storyboard │ │ │ ├── Relative To Project/ │ │ │ │ └── RelativeToProject.xib │ │ │ ├── SceneDelegate.swift │ │ │ ├── SecondViewController.swift │ │ │ ├── SegueIdentifiers.storyboard │ │ │ ├── Settings.bundle/ │ │ │ │ ├── Root.plist │ │ │ │ └── en.lproj/ │ │ │ │ └── Root.strings │ │ │ ├── Specials.storyboard │ │ │ ├── Strings/ │ │ │ │ ├── @@.strings │ │ │ │ ├── Base.lproj/ │ │ │ │ │ ├── Settings.strings │ │ │ │ │ └── Settings.stringsdict │ │ │ │ ├── Duplicate#.strings │ │ │ │ ├── Duplicate.strings │ │ │ │ ├── Generic.strings │ │ │ │ ├── Generic.stringsdict │ │ │ │ ├── en.lproj/ │ │ │ │ │ └── Localizable.strings │ │ │ │ ├── es.lproj/ │ │ │ │ │ └── Localizable.strings │ │ │ │ ├── ja.lproj/ │ │ │ │ │ └── Localizable.strings │ │ │ │ └── nl.lproj/ │ │ │ │ ├── Settings.strings │ │ │ │ └── Settings.stringsdict │ │ │ ├── SupplementaryElement.xib │ │ │ ├── TabBarItem.storyboard │ │ │ ├── WhitespaceReuseIdentifer.xib │ │ │ └── Xib with ViewController.xib │ │ ├── ResourceApp.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── swiftpm/ │ │ │ │ └── Package.resolved │ │ │ └── xcshareddata/ │ │ │ └── xcschemes/ │ │ │ └── ResourceApp.xcscheme │ │ ├── ResourceApp.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm/ │ │ │ └── Package.resolved │ │ └── ResourceAppTests/ │ │ ├── FilesTests.swift │ │ ├── FontsTests.swift │ │ ├── IgnoreTests.swift │ │ ├── Info.plist │ │ ├── InfoPlistTests.swift │ │ ├── NibTests.swift │ │ ├── ResourceAppTests.swift │ │ ├── SegueTests.swift │ │ ├── StoryboardTests.swift │ │ ├── StringsTests.swift │ │ └── ValidationTests.swift │ ├── RswiftAppWithStaticFrameworks/ │ │ ├── App/ │ │ │ ├── Info.plist │ │ │ ├── Resources/ │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ └── Base.lproj/ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ └── Sources/ │ │ │ ├── AppDelegate.swift │ │ │ ├── SceneDelegate.swift │ │ │ └── ViewController.swift │ │ ├── AppTests/ │ │ │ └── AppTests.swift │ │ ├── Bar/ │ │ │ ├── Info.plist │ │ │ └── Sources/ │ │ │ └── Bar.swift │ │ ├── Foo/ │ │ │ ├── Info.plist │ │ │ └── Sources/ │ │ │ └── Foo.swift │ │ ├── RswiftAppWithStaticFrameworks.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── swiftpm/ │ │ │ │ └── Package.resolved │ │ │ └── xcshareddata/ │ │ │ └── xcschemes/ │ │ │ ├── App.xcscheme │ │ │ ├── Bar.xcscheme │ │ │ └── Foo.xcscheme │ │ └── copy_bundles.sh │ ├── RswiftUI/ │ │ ├── RswiftUI/ │ │ │ ├── Assets.xcassets/ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ └── hand.ignoreme.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── ContentView.swift │ │ │ ├── Info.plist │ │ │ ├── Preview Content/ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ └── Contents.json │ │ │ └── RswiftUIApp.swift │ │ ├── RswiftUI.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm/ │ │ │ └── Package.resolved │ │ └── RswiftUIAppClip/ │ │ ├── ClipAssets.xcassets/ │ │ │ ├── Contents.json │ │ │ └── MyColor.colorset/ │ │ │ └── Contents.json │ │ ├── ContentView.swift │ │ ├── Info.plist │ │ ├── Preview Content/ │ │ │ └── Preview Assets.xcassets/ │ │ │ └── Contents.json │ │ ├── RswiftUIAppClip.entitlements │ │ └── RswiftUIAppClipApp.swift │ ├── RtvApp/ │ │ ├── .rswiftignore │ │ ├── ResourceApp-tvOS/ │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets/ │ │ │ │ ├── Brand Assets.brandassets/ │ │ │ │ │ ├── App Icon - Large.imagestack/ │ │ │ │ │ │ ├── Back.imagestacklayer/ │ │ │ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Front.imagestacklayer/ │ │ │ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Middle.imagestacklayer/ │ │ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── App Icon - Small.imagestack/ │ │ │ │ │ │ ├── Back.imagestacklayer/ │ │ │ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Front.imagestacklayer/ │ │ │ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Middle.imagestacklayer/ │ │ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Top Shelf Image Wide.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Top Shelf Image.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── BrightWhite.colorset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── ImageStackAsset.imagestack/ │ │ │ │ │ ├── Back.imagestacklayer/ │ │ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Front.imagestacklayer/ │ │ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Middle.imagestacklayer/ │ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ └── LaunchImage.launchimage/ │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj/ │ │ │ │ └── Main.storyboard │ │ │ └── Info.plist │ │ ├── ResourceAppTests-tvOS/ │ │ │ ├── ImageTests.swift │ │ │ ├── Info.plist │ │ │ └── ValidationTests.swift │ │ └── RtvApp.xcodeproj/ │ │ ├── project.pbxproj │ │ ├── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm/ │ │ │ └── Package.resolved │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ ├── ResourceApp-tvOS.xcscheme │ │ └── ResourceAppTests-tvOS.xcscheme │ └── RwatchApp/ │ ├── .rswiftignore │ ├── ResourceApp-watchOS/ │ │ ├── Assets.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Base.lproj/ │ │ │ └── Interface.storyboard │ │ └── Info.plist │ ├── ResourceApp-watchOS-Extension/ │ │ ├── Assets.xcassets/ │ │ │ ├── Complication.complicationset/ │ │ │ │ ├── Circular.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Extra Large.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Graphic Bezel.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Graphic Circular.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Graphic Corner.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Graphic Extra Large.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Graphic Large Rectangular.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Modular.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Utilitarian.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── MyColor.colorset/ │ │ │ │ └── Contents.json │ │ │ └── hand.ignoreme.imageset/ │ │ │ └── Contents.json │ │ ├── ExtensionDelegate.swift │ │ ├── Info.plist │ │ ├── InterfaceController.swift │ │ ├── NotificationController.swift │ │ ├── PushNotificationPayload.apns │ │ └── Strings/ │ │ ├── en.lproj/ │ │ │ └── Localizable.strings │ │ ├── es.lproj/ │ │ │ └── Localizable.strings │ │ └── ja.lproj/ │ │ └── Localizable.strings │ └── RwatchApp.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm/ │ │ └── Package.resolved │ └── xcshareddata/ │ └── xcschemes/ │ ├── ResourceApp-watchOS (Notification).xcscheme │ └── ResourceApp-watchOS.xcscheme ├── License ├── Package.resolved ├── Package.swift ├── Plugins/ │ ├── RswiftGenerateInternalResources/ │ │ └── RswiftGenerateInternalResources.swift │ ├── RswiftGeneratePublicResources/ │ │ └── RswiftGeneratePublicResources.swift │ ├── RswiftGenerateResourcesCommand/ │ │ └── RswiftGenerateResourcesCommand.swift │ └── RswiftModifyXcodePackages/ │ └── RswiftModifyXcodePackages.swift ├── R.swift.podspec ├── README.md ├── Sources/ │ ├── RswiftGenerators/ │ │ ├── AccessibilityIdentifier+Generator.swift │ │ ├── AssetCatalog+Generator.swift │ │ ├── Extensions/ │ │ │ ├── Array+Extensions.swift │ │ │ └── String+Extensions.swift │ │ ├── FileResource+Generator.swift │ │ ├── FontResource+Generator.swift │ │ ├── Nib+Generator.swift │ │ ├── PropertyListResource+Generator.swift │ │ ├── ReuseIdentifier+Generator.swift │ │ ├── Segue+Generator.swift │ │ ├── Shared/ │ │ │ ├── AssetCatalogMergedNamespaces.swift │ │ │ ├── LocaleReference+Generator.swift │ │ │ ├── SwiftIdentifier.swift │ │ │ └── TypeReference+Generator.swift │ │ ├── Storyboard+Generator.swift │ │ ├── StringsTable+Generator.swift │ │ ├── SwiftSyntax/ │ │ │ ├── Struct.swift │ │ │ └── StructMembersBuilder.swift │ │ └── XcodeProject+Generator.swift │ ├── RswiftParsers/ │ │ ├── ProjectResources.swift │ │ ├── Resources/ │ │ │ ├── AssetCatalog+Parser.swift │ │ │ ├── FileResource+Parser.swift │ │ │ ├── FontResource+Parser.swift │ │ │ ├── ImageResource+Parser.swift │ │ │ ├── Nib+Parser.swift │ │ │ ├── PropertyList+Parser.swift │ │ │ ├── Storyboard+Parser.swift │ │ │ └── StringsTable+Parser.swift │ │ └── Shared/ │ │ ├── Bundle+Extensions.swift │ │ ├── DeploymentTarget+Parser.swift │ │ ├── FormatPart+Extensions.swift │ │ ├── GeneratedId.swift │ │ ├── Glob.swift │ │ ├── IgnoreFile.swift │ │ ├── ResourceParsingError.swift │ │ ├── SourceTreeURLs.swift │ │ ├── SupportedExtensions.swift │ │ ├── TypeReference+Extensions.swift │ │ ├── URL+Extensions.swift │ │ └── Xcodeproj.swift │ ├── RswiftResources/ │ │ ├── AssetCatalog.swift │ │ ├── ColorResource.swift │ │ ├── DataResource.swift │ │ ├── FileResource.swift │ │ ├── FontResource.swift │ │ ├── ImageResource.swift │ │ ├── Integrations/ │ │ │ ├── Bundle+Extensions.swift │ │ │ ├── ColorResource+Integrations.swift │ │ │ ├── DataResource+Integrations.swift │ │ │ ├── FileResource+Integrations.swift │ │ │ ├── FontResource+Integrations.swift │ │ │ ├── ImageResource+Integrations.swift │ │ │ ├── NibReference+Integrations.swift │ │ │ ├── ReuseIdentifier+Integrations.swift │ │ │ ├── SegueIdentifier+Integrations.swift │ │ │ ├── StoryboardReference+Integrations.swift │ │ │ └── StringResource+Integrations.swift │ │ ├── NibResource.swift │ │ ├── PropertyListResource.swift │ │ ├── Shared/ │ │ │ ├── DeploymentTarget.swift │ │ │ ├── LocaleReference.swift │ │ │ ├── ModuleReference.swift │ │ │ ├── NameCatalog.swift │ │ │ ├── Reusable.swift │ │ │ ├── StoryboardReference.swift │ │ │ ├── StringParam+Extensions.swift │ │ │ ├── StringParam.swift │ │ │ ├── StringsTable.swift │ │ │ ├── TypeReference.swift │ │ │ ├── Unifiable.swift │ │ │ └── ValidationError.swift │ │ ├── StoryboardResource.swift │ │ └── StringResource.swift │ └── rswift/ │ ├── App.swift │ ├── Config.swift │ └── RswiftCore.swift └── Tests/ ├── RswiftGeneratorsTests/ │ └── MainTests.swift └── RswiftParsersTests/ ├── GlobTests.swift └── NibParserDelegateTests.swift