├── .gitignore ├── .travis.yml ├── Example ├── Podfile ├── Podfile.lock ├── Tests │ ├── Info.plist │ └── Tests.swift ├── Yashin.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── Yashin-Example.xcscheme │ │ └── Yashin_Tests.xcscheme ├── Yashin.xcworkspace │ └── contents.xcworkspacedata └── Yashin │ ├── AppDelegate.swift │ ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard │ ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Info.plist │ └── ViewController.swift ├── LICENSE ├── Pod ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ └── Yashin.swift ├── README.md ├── Yashin.podspec ├── _Pods.xcodeproj └── screenshots ├── 1.png ├── 2.png └── 3.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ushisantoasobu/Yashin/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ushisantoasobu/Yashin/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ushisantoasobu/Yashin/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ushisantoasobu/Yashin/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ushisantoasobu/Yashin/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ushisantoasobu/Yashin/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /Example/Yashin.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ushisantoasobu/Yashin/HEAD/Example/Yashin.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Yashin.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ushisantoasobu/Yashin/HEAD/Example/Yashin.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Yashin.xcodeproj/xcshareddata/xcschemes/Yashin-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ushisantoasobu/Yashin/HEAD/Example/Yashin.xcodeproj/xcshareddata/xcschemes/Yashin-Example.xcscheme -------------------------------------------------------------------------------- /Example/Yashin.xcodeproj/xcshareddata/xcschemes/Yashin_Tests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ushisantoasobu/Yashin/HEAD/Example/Yashin.xcodeproj/xcshareddata/xcschemes/Yashin_Tests.xcscheme -------------------------------------------------------------------------------- /Example/Yashin.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ushisantoasobu/Yashin/HEAD/Example/Yashin.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Yashin/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ushisantoasobu/Yashin/HEAD/Example/Yashin/AppDelegate.swift -------------------------------------------------------------------------------- /Example/Yashin/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ushisantoasobu/Yashin/HEAD/Example/Yashin/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/Yashin/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ushisantoasobu/Yashin/HEAD/Example/Yashin/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/Yashin/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ushisantoasobu/Yashin/HEAD/Example/Yashin/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Yashin/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ushisantoasobu/Yashin/HEAD/Example/Yashin/Info.plist -------------------------------------------------------------------------------- /Example/Yashin/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ushisantoasobu/Yashin/HEAD/Example/Yashin/ViewController.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ushisantoasobu/Yashin/HEAD/LICENSE -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/Yashin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ushisantoasobu/Yashin/HEAD/Pod/Classes/Yashin.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ushisantoasobu/Yashin/HEAD/README.md -------------------------------------------------------------------------------- /Yashin.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ushisantoasobu/Yashin/HEAD/Yashin.podspec -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ushisantoasobu/Yashin/HEAD/screenshots/1.png -------------------------------------------------------------------------------- /screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ushisantoasobu/Yashin/HEAD/screenshots/2.png -------------------------------------------------------------------------------- /screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ushisantoasobu/Yashin/HEAD/screenshots/3.png --------------------------------------------------------------------------------