├── .gitignore ├── R.swift.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── R.swift.xcscheme ├── R.swift ├── Info.plist ├── MainPlugin.swift ├── NSObject_Extension.swift ├── PluginHelper.swift ├── RContentGenerator.swift ├── R_template.txt ├── String_Extension.swift └── SwizzledMethods.swift ├── README.md └── screenshots ├── pic_assets.png └── sample.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurechen/R.swift-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /R.swift.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurechen/R.swift-plugin/HEAD/R.swift.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /R.swift.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurechen/R.swift-plugin/HEAD/R.swift.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /R.swift.xcodeproj/xcshareddata/xcschemes/R.swift.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurechen/R.swift-plugin/HEAD/R.swift.xcodeproj/xcshareddata/xcschemes/R.swift.xcscheme -------------------------------------------------------------------------------- /R.swift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurechen/R.swift-plugin/HEAD/R.swift/Info.plist -------------------------------------------------------------------------------- /R.swift/MainPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurechen/R.swift-plugin/HEAD/R.swift/MainPlugin.swift -------------------------------------------------------------------------------- /R.swift/NSObject_Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurechen/R.swift-plugin/HEAD/R.swift/NSObject_Extension.swift -------------------------------------------------------------------------------- /R.swift/PluginHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurechen/R.swift-plugin/HEAD/R.swift/PluginHelper.swift -------------------------------------------------------------------------------- /R.swift/RContentGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurechen/R.swift-plugin/HEAD/R.swift/RContentGenerator.swift -------------------------------------------------------------------------------- /R.swift/R_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurechen/R.swift-plugin/HEAD/R.swift/R_template.txt -------------------------------------------------------------------------------- /R.swift/String_Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurechen/R.swift-plugin/HEAD/R.swift/String_Extension.swift -------------------------------------------------------------------------------- /R.swift/SwizzledMethods.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurechen/R.swift-plugin/HEAD/R.swift/SwizzledMethods.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurechen/R.swift-plugin/HEAD/README.md -------------------------------------------------------------------------------- /screenshots/pic_assets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurechen/R.swift-plugin/HEAD/screenshots/pic_assets.png -------------------------------------------------------------------------------- /screenshots/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurechen/R.swift-plugin/HEAD/screenshots/sample.png --------------------------------------------------------------------------------