gitextract_06_t_g1y/ ├── .gitignore ├── .travis.yml ├── Example/ │ ├── AppDelegate.swift │ ├── Base.lproj/ │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── CustomButtons.swift │ ├── DesignableButton.swift │ ├── Images.xcassets/ │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── garten.imageset/ │ │ └── Contents.json │ ├── Info.plist │ ├── UIColorExtensions.swift │ └── ViewController.swift ├── Example.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata/ │ └── xcschemes/ │ ├── SimpleButton.xcscheme │ └── SimpleButtonTests.xcscheme ├── LICENSE ├── Package.swift ├── README.md ├── SimpleButton/ │ ├── Info.plist │ ├── SimpleButton.h │ ├── SimpleButton.swift │ ├── SimpleButtonControlState.swift │ └── SimpleButtonStateChangeValue.swift ├── SimpleButton.podspec ├── SimpleButtonTests/ │ ├── Info.plist │ └── SimpleButtonTests.swift └── docs/ ├── Classes/ │ └── SimpleButton.html ├── Classes.html ├── Structs/ │ └── SimpleButtonControlState.html ├── Structs.html ├── css/ │ ├── highlight.css │ └── jazzy.css ├── docsets/ │ ├── SimpleButton.docset/ │ │ └── Contents/ │ │ ├── Info.plist │ │ └── Resources/ │ │ ├── Documents/ │ │ │ ├── Classes/ │ │ │ │ └── SimpleButton.html │ │ │ ├── Classes.html │ │ │ ├── Structs/ │ │ │ │ └── SimpleButtonControlState.html │ │ │ ├── Structs.html │ │ │ ├── css/ │ │ │ │ ├── highlight.css │ │ │ │ └── jazzy.css │ │ │ ├── index.html │ │ │ ├── js/ │ │ │ │ └── jazzy.js │ │ │ ├── search.json │ │ │ └── swift_output/ │ │ │ ├── Classes/ │ │ │ │ └── SimpleButton.html │ │ │ ├── Classes.html │ │ │ ├── Structs/ │ │ │ │ └── SimpleButtonControlState.html │ │ │ ├── Structs.html │ │ │ ├── css/ │ │ │ │ ├── highlight.css │ │ │ │ └── jazzy.css │ │ │ ├── docsets/ │ │ │ │ ├── SimpleButton.docset/ │ │ │ │ │ └── Contents/ │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Resources/ │ │ │ │ │ ├── Documents/ │ │ │ │ │ │ ├── Classes/ │ │ │ │ │ │ │ └── SimpleButton.html │ │ │ │ │ │ ├── Classes.html │ │ │ │ │ │ ├── Structs/ │ │ │ │ │ │ │ └── SimpleButtonControlState.html │ │ │ │ │ │ ├── Structs.html │ │ │ │ │ │ ├── css/ │ │ │ │ │ │ │ ├── highlight.css │ │ │ │ │ │ │ └── jazzy.css │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── js/ │ │ │ │ │ │ │ └── jazzy.js │ │ │ │ │ │ └── search.json │ │ │ │ │ └── docSet.dsidx │ │ │ │ ├── SimpleButton.tgz │ │ │ │ └── SimpleButton.xml │ │ │ ├── index.html │ │ │ ├── js/ │ │ │ │ └── jazzy.js │ │ │ ├── search.json │ │ │ └── undocumented.json │ │ └── docSet.dsidx │ └── SimpleButton.tgz ├── index.html ├── js/ │ └── jazzy.js ├── search.json ├── swift_output/ │ ├── Classes/ │ │ └── SimpleButton.html │ ├── Classes.html │ ├── Structs/ │ │ └── SimpleButtonControlState.html │ ├── Structs.html │ ├── css/ │ │ ├── highlight.css │ │ └── jazzy.css │ ├── docsets/ │ │ ├── SimpleButton.docset/ │ │ │ └── Contents/ │ │ │ ├── Info.plist │ │ │ └── Resources/ │ │ │ ├── Documents/ │ │ │ │ ├── Classes/ │ │ │ │ │ └── SimpleButton.html │ │ │ │ ├── Classes.html │ │ │ │ ├── Structs/ │ │ │ │ │ └── SimpleButtonControlState.html │ │ │ │ ├── Structs.html │ │ │ │ ├── css/ │ │ │ │ │ ├── highlight.css │ │ │ │ │ └── jazzy.css │ │ │ │ ├── index.html │ │ │ │ ├── js/ │ │ │ │ │ └── jazzy.js │ │ │ │ └── search.json │ │ │ └── docSet.dsidx │ │ ├── SimpleButton.tgz │ │ └── SimpleButton.xml │ ├── index.html │ ├── js/ │ │ └── jazzy.js │ ├── search.json │ └── undocumented.json └── undocumented.json