├── .github └── workflows │ ├── checks.yml │ └── release.yml ├── .gitignore ├── Library ├── Core │ ├── ColorResource.swift │ ├── FileResource.swift │ ├── FontResource.swift │ ├── Identifier.swift │ ├── ImageResource.swift │ ├── NibResource.swift │ ├── ReuseIdentifierProtocol.swift │ ├── StoryboardResource.swift │ ├── StoryboardSegueIdentifierProtocol.swift │ ├── StoryboardViewControllerResource.swift │ ├── StringResource.swift │ └── Validatable.swift ├── Foundation │ ├── Bundle+FileResource.swift │ └── Data+FileResource.swift ├── Info.plist ├── Rswift.h └── UIKit │ ├── NibResource+UIKit.swift │ ├── StoryboardResourceWithInitialController+UIKit.swift │ ├── TypedStoryboardSegueInfo+UIStoryboardSegue.swift │ ├── UICollectionView+ReuseIdentifierProtocol.swift │ ├── UIColor+ColorResource.swift │ ├── UIFont+FontResource.swift │ ├── UIImage+ImageResource.swift │ ├── UINib+NibResource.swift │ ├── UIStoryboard+StoryboardResource.swift │ ├── UIStoryboard+StoryboardViewControllerResource.swift │ ├── UITableView+ReuseIdentifierProtocol.swift │ ├── UIViewController+NibResource.swift │ └── UIViewController+StoryboardSegueIdentifierProtocol.swift ├── LibraryTests ├── Info.plist └── RswiftTests.swift ├── License ├── Package.swift ├── R.swift.Library.podspec ├── R.swift.Library.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── R.swift.Library.xcscmblueprint └── xcshareddata │ └── xcschemes │ ├── Rswift-iOS.xcscheme │ ├── Rswift-tvOS.xcscheme │ └── Rswift-watchOS.xcscheme └── Readme.md /.github/workflows/checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-cain13/R.swift.Library/HEAD/.github/workflows/checks.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-cain13/R.swift.Library/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-cain13/R.swift.Library/HEAD/.gitignore -------------------------------------------------------------------------------- /Library/Core/ColorResource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-cain13/R.swift.Library/HEAD/Library/Core/ColorResource.swift -------------------------------------------------------------------------------- /Library/Core/FileResource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-cain13/R.swift.Library/HEAD/Library/Core/FileResource.swift -------------------------------------------------------------------------------- /Library/Core/FontResource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-cain13/R.swift.Library/HEAD/Library/Core/FontResource.swift -------------------------------------------------------------------------------- /Library/Core/Identifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-cain13/R.swift.Library/HEAD/Library/Core/Identifier.swift -------------------------------------------------------------------------------- /Library/Core/ImageResource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-cain13/R.swift.Library/HEAD/Library/Core/ImageResource.swift -------------------------------------------------------------------------------- /Library/Core/NibResource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-cain13/R.swift.Library/HEAD/Library/Core/NibResource.swift -------------------------------------------------------------------------------- /Library/Core/ReuseIdentifierProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-cain13/R.swift.Library/HEAD/Library/Core/ReuseIdentifierProtocol.swift -------------------------------------------------------------------------------- /Library/Core/StoryboardResource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-cain13/R.swift.Library/HEAD/Library/Core/StoryboardResource.swift -------------------------------------------------------------------------------- /Library/Core/StoryboardSegueIdentifierProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-cain13/R.swift.Library/HEAD/Library/Core/StoryboardSegueIdentifierProtocol.swift -------------------------------------------------------------------------------- /Library/Core/StoryboardViewControllerResource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-cain13/R.swift.Library/HEAD/Library/Core/StoryboardViewControllerResource.swift -------------------------------------------------------------------------------- /Library/Core/StringResource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-cain13/R.swift.Library/HEAD/Library/Core/StringResource.swift -------------------------------------------------------------------------------- /Library/Core/Validatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-cain13/R.swift.Library/HEAD/Library/Core/Validatable.swift -------------------------------------------------------------------------------- /Library/Foundation/Bundle+FileResource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-cain13/R.swift.Library/HEAD/Library/Foundation/Bundle+FileResource.swift -------------------------------------------------------------------------------- /Library/Foundation/Data+FileResource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-cain13/R.swift.Library/HEAD/Library/Foundation/Data+FileResource.swift -------------------------------------------------------------------------------- /Library/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-cain13/R.swift.Library/HEAD/Library/Info.plist -------------------------------------------------------------------------------- /Library/Rswift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-cain13/R.swift.Library/HEAD/Library/Rswift.h -------------------------------------------------------------------------------- /Library/UIKit/NibResource+UIKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-cain13/R.swift.Library/HEAD/Library/UIKit/NibResource+UIKit.swift -------------------------------------------------------------------------------- /Library/UIKit/StoryboardResourceWithInitialController+UIKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-cain13/R.swift.Library/HEAD/Library/UIKit/StoryboardResourceWithInitialController+UIKit.swift -------------------------------------------------------------------------------- /Library/UIKit/TypedStoryboardSegueInfo+UIStoryboardSegue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-cain13/R.swift.Library/HEAD/Library/UIKit/TypedStoryboardSegueInfo+UIStoryboardSegue.swift -------------------------------------------------------------------------------- /Library/UIKit/UICollectionView+ReuseIdentifierProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-cain13/R.swift.Library/HEAD/Library/UIKit/UICollectionView+ReuseIdentifierProtocol.swift -------------------------------------------------------------------------------- /Library/UIKit/UIColor+ColorResource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-cain13/R.swift.Library/HEAD/Library/UIKit/UIColor+ColorResource.swift -------------------------------------------------------------------------------- /Library/UIKit/UIFont+FontResource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-cain13/R.swift.Library/HEAD/Library/UIKit/UIFont+FontResource.swift -------------------------------------------------------------------------------- /Library/UIKit/UIImage+ImageResource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-cain13/R.swift.Library/HEAD/Library/UIKit/UIImage+ImageResource.swift -------------------------------------------------------------------------------- /Library/UIKit/UINib+NibResource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-cain13/R.swift.Library/HEAD/Library/UIKit/UINib+NibResource.swift -------------------------------------------------------------------------------- /Library/UIKit/UIStoryboard+StoryboardResource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-cain13/R.swift.Library/HEAD/Library/UIKit/UIStoryboard+StoryboardResource.swift -------------------------------------------------------------------------------- /Library/UIKit/UIStoryboard+StoryboardViewControllerResource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-cain13/R.swift.Library/HEAD/Library/UIKit/UIStoryboard+StoryboardViewControllerResource.swift -------------------------------------------------------------------------------- /Library/UIKit/UITableView+ReuseIdentifierProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-cain13/R.swift.Library/HEAD/Library/UIKit/UITableView+ReuseIdentifierProtocol.swift -------------------------------------------------------------------------------- /Library/UIKit/UIViewController+NibResource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-cain13/R.swift.Library/HEAD/Library/UIKit/UIViewController+NibResource.swift -------------------------------------------------------------------------------- /Library/UIKit/UIViewController+StoryboardSegueIdentifierProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-cain13/R.swift.Library/HEAD/Library/UIKit/UIViewController+StoryboardSegueIdentifierProtocol.swift -------------------------------------------------------------------------------- /LibraryTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-cain13/R.swift.Library/HEAD/LibraryTests/Info.plist -------------------------------------------------------------------------------- /LibraryTests/RswiftTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-cain13/R.swift.Library/HEAD/LibraryTests/RswiftTests.swift -------------------------------------------------------------------------------- /License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-cain13/R.swift.Library/HEAD/License -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-cain13/R.swift.Library/HEAD/Package.swift -------------------------------------------------------------------------------- /R.swift.Library.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-cain13/R.swift.Library/HEAD/R.swift.Library.podspec -------------------------------------------------------------------------------- /R.swift.Library.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-cain13/R.swift.Library/HEAD/R.swift.Library.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /R.swift.Library.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-cain13/R.swift.Library/HEAD/R.swift.Library.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /R.swift.Library.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-cain13/R.swift.Library/HEAD/R.swift.Library.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /R.swift.Library.xcodeproj/project.xcworkspace/xcshareddata/R.swift.Library.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-cain13/R.swift.Library/HEAD/R.swift.Library.xcodeproj/project.xcworkspace/xcshareddata/R.swift.Library.xcscmblueprint -------------------------------------------------------------------------------- /R.swift.Library.xcodeproj/xcshareddata/xcschemes/Rswift-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-cain13/R.swift.Library/HEAD/R.swift.Library.xcodeproj/xcshareddata/xcschemes/Rswift-iOS.xcscheme -------------------------------------------------------------------------------- /R.swift.Library.xcodeproj/xcshareddata/xcschemes/Rswift-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-cain13/R.swift.Library/HEAD/R.swift.Library.xcodeproj/xcshareddata/xcschemes/Rswift-tvOS.xcscheme -------------------------------------------------------------------------------- /R.swift.Library.xcodeproj/xcshareddata/xcschemes/Rswift-watchOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-cain13/R.swift.Library/HEAD/R.swift.Library.xcodeproj/xcshareddata/xcschemes/Rswift-watchOS.xcscheme -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac-cain13/R.swift.Library/HEAD/Readme.md --------------------------------------------------------------------------------