├── .gitignore ├── CHANGELOG.md ├── Goya.podspec ├── LICENSE ├── README.md ├── goya.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── Manu.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── goya ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── ViewController.swift └── goya │ ├── inspectable │ └── UIResponder+Inspectable.swift │ └── lite │ ├── Styles.swift │ └── UIResponder+Styles.swift └── readme_imgs ├── goya_inspector.png └── goya_manually.png /.gitignore: -------------------------------------------------------------------------------- 1 | goya.xcodeproj/xcuserdata 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/Goya/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Goya.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/Goya/HEAD/Goya.podspec -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/Goya/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/Goya/HEAD/README.md -------------------------------------------------------------------------------- /goya.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/Goya/HEAD/goya.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /goya.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/Goya/HEAD/goya.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /goya.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/Goya/HEAD/goya.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /goya.xcodeproj/xcuserdata/Manu.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/Goya/HEAD/goya.xcodeproj/xcuserdata/Manu.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /goya/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/Goya/HEAD/goya/AppDelegate.swift -------------------------------------------------------------------------------- /goya/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/Goya/HEAD/goya/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /goya/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/Goya/HEAD/goya/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /goya/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/Goya/HEAD/goya/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /goya/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/Goya/HEAD/goya/Info.plist -------------------------------------------------------------------------------- /goya/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/Goya/HEAD/goya/ViewController.swift -------------------------------------------------------------------------------- /goya/goya/inspectable/UIResponder+Inspectable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/Goya/HEAD/goya/goya/inspectable/UIResponder+Inspectable.swift -------------------------------------------------------------------------------- /goya/goya/lite/Styles.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/Goya/HEAD/goya/goya/lite/Styles.swift -------------------------------------------------------------------------------- /goya/goya/lite/UIResponder+Styles.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/Goya/HEAD/goya/goya/lite/UIResponder+Styles.swift -------------------------------------------------------------------------------- /readme_imgs/goya_inspector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/Goya/HEAD/readme_imgs/goya_inspector.png -------------------------------------------------------------------------------- /readme_imgs/goya_manually.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/Goya/HEAD/readme_imgs/goya_manually.png --------------------------------------------------------------------------------