├── .gitattributes ├── .gitignore ├── .travis.yml ├── Gemfile ├── LICENSE ├── Podfile ├── Podfile.lock ├── Pods ├── Headers │ └── Public │ │ └── SupportKit │ │ ├── SKTConversation.h │ │ ├── SKTSettings.h │ │ ├── SKTUser.h │ │ └── SupportKit.h ├── Manifest.lock ├── Pods.xcodeproj │ └── project.pbxproj ├── SupportKit │ ├── SupportKit.bundle │ │ ├── Info.plist │ │ ├── bubble@2x.png │ │ ├── en.lproj │ │ │ └── SupportKitLocalizable.strings │ │ ├── fr.lproj │ │ │ └── SupportKitLocalizable.strings │ │ ├── hand.png │ │ ├── hand@2x.png │ │ ├── ios7-icon.ttf │ │ ├── recommendation_failed.png │ │ ├── recommendation_placeholder.png │ │ └── zh-Hant.lproj │ │ │ └── SupportKitLocalizable.strings │ ├── SupportKit.framework │ │ ├── Headers │ │ ├── SupportKit │ │ └── Versions │ │ │ ├── A │ │ │ ├── Headers │ │ │ │ ├── SKTConversation.h │ │ │ │ ├── SKTSettings.h │ │ │ │ ├── SKTUser.h │ │ │ │ └── SupportKit.h │ │ │ └── SupportKit │ │ │ └── Current │ └── readme.md └── Target Support Files │ ├── Pods-SupportKit │ ├── Pods-SupportKit-Private.xcconfig │ ├── Pods-SupportKit-dummy.m │ ├── Pods-SupportKit-prefix.pch │ └── Pods-SupportKit.xcconfig │ └── Pods │ ├── Pods-acknowledgements.markdown │ ├── Pods-acknowledgements.plist │ ├── Pods-dummy.m │ ├── Pods-environment.h │ ├── Pods-resources.sh │ ├── Pods.debug.xcconfig │ └── Pods.release.xcconfig ├── README.md ├── TextEthan.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ └── TextEthan.xcscheme ├── TextEthan.xcworkspace └── contents.xcworkspacedata ├── TextEthan ├── .gitkeep ├── Controllers │ ├── .gitkeep │ ├── AppDelegate.swift │ └── ViewController.swift ├── Extensions │ └── .gitkeep ├── Models │ └── .gitkeep ├── Protocols │ └── .gitkeep ├── Resources │ ├── .gitkeep │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Nibs │ │ ├── .gitkeep │ │ └── LaunchScreen.xib │ ├── Other-Sources │ │ ├── .gitkeep │ │ ├── AppToken.sample.plist │ │ ├── Info.plist │ │ └── TextEthan-Bridging-Header.h │ └── Storyboards │ │ ├── .gitkeep │ │ └── Main.storyboard ├── ViewModels │ └── .gitkeep └── Views │ └── .gitkeep ├── UnitTests ├── .gitkeep ├── Helpers │ └── .gitkeep ├── Resources │ └── .gitkeep └── Tests │ └── .gitkeep └── bin ├── setup └── test /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj merge=union 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Headers/Public/SupportKit/SKTConversation.h: -------------------------------------------------------------------------------- 1 | ../../../SupportKit/SupportKit.framework/Versions/A/Headers/SKTConversation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SupportKit/SKTSettings.h: -------------------------------------------------------------------------------- 1 | ../../../SupportKit/SupportKit.framework/Versions/A/Headers/SKTSettings.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SupportKit/SKTUser.h: -------------------------------------------------------------------------------- 1 | ../../../SupportKit/SupportKit.framework/Versions/A/Headers/SKTUser.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SupportKit/SupportKit.h: -------------------------------------------------------------------------------- 1 | ../../../SupportKit/SupportKit.framework/Versions/A/Headers/SupportKit.h -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/SupportKit/SupportKit.bundle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/Pods/SupportKit/SupportKit.bundle/Info.plist -------------------------------------------------------------------------------- /Pods/SupportKit/SupportKit.bundle/bubble@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/Pods/SupportKit/SupportKit.bundle/bubble@2x.png -------------------------------------------------------------------------------- /Pods/SupportKit/SupportKit.bundle/en.lproj/SupportKitLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/Pods/SupportKit/SupportKit.bundle/en.lproj/SupportKitLocalizable.strings -------------------------------------------------------------------------------- /Pods/SupportKit/SupportKit.bundle/fr.lproj/SupportKitLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/Pods/SupportKit/SupportKit.bundle/fr.lproj/SupportKitLocalizable.strings -------------------------------------------------------------------------------- /Pods/SupportKit/SupportKit.bundle/hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/Pods/SupportKit/SupportKit.bundle/hand.png -------------------------------------------------------------------------------- /Pods/SupportKit/SupportKit.bundle/hand@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/Pods/SupportKit/SupportKit.bundle/hand@2x.png -------------------------------------------------------------------------------- /Pods/SupportKit/SupportKit.bundle/ios7-icon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/Pods/SupportKit/SupportKit.bundle/ios7-icon.ttf -------------------------------------------------------------------------------- /Pods/SupportKit/SupportKit.bundle/recommendation_failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/Pods/SupportKit/SupportKit.bundle/recommendation_failed.png -------------------------------------------------------------------------------- /Pods/SupportKit/SupportKit.bundle/recommendation_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/Pods/SupportKit/SupportKit.bundle/recommendation_placeholder.png -------------------------------------------------------------------------------- /Pods/SupportKit/SupportKit.bundle/zh-Hant.lproj/SupportKitLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/Pods/SupportKit/SupportKit.bundle/zh-Hant.lproj/SupportKitLocalizable.strings -------------------------------------------------------------------------------- /Pods/SupportKit/SupportKit.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Pods/SupportKit/SupportKit.framework/SupportKit: -------------------------------------------------------------------------------- 1 | Versions/Current/SupportKit -------------------------------------------------------------------------------- /Pods/SupportKit/SupportKit.framework/Versions/A/Headers/SKTConversation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/Pods/SupportKit/SupportKit.framework/Versions/A/Headers/SKTConversation.h -------------------------------------------------------------------------------- /Pods/SupportKit/SupportKit.framework/Versions/A/Headers/SKTSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/Pods/SupportKit/SupportKit.framework/Versions/A/Headers/SKTSettings.h -------------------------------------------------------------------------------- /Pods/SupportKit/SupportKit.framework/Versions/A/Headers/SKTUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/Pods/SupportKit/SupportKit.framework/Versions/A/Headers/SKTUser.h -------------------------------------------------------------------------------- /Pods/SupportKit/SupportKit.framework/Versions/A/Headers/SupportKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/Pods/SupportKit/SupportKit.framework/Versions/A/Headers/SupportKit.h -------------------------------------------------------------------------------- /Pods/SupportKit/SupportKit.framework/Versions/A/SupportKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/Pods/SupportKit/SupportKit.framework/Versions/A/SupportKit -------------------------------------------------------------------------------- /Pods/SupportKit/SupportKit.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Pods/SupportKit/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/Pods/SupportKit/readme.md -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SupportKit/Pods-SupportKit-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/Pods/Target Support Files/Pods-SupportKit/Pods-SupportKit-Private.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SupportKit/Pods-SupportKit-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/Pods/Target Support Files/Pods-SupportKit/Pods-SupportKit-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SupportKit/Pods-SupportKit-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/Pods/Target Support Files/Pods-SupportKit/Pods-SupportKit-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SupportKit/Pods-SupportKit.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/Pods/Target Support Files/Pods-SupportKit/Pods-SupportKit.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/Pods/Target Support Files/Pods/Pods-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/Pods/Target Support Files/Pods/Pods-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/Pods/Target Support Files/Pods/Pods-environment.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/Pods/Target Support Files/Pods/Pods-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/Pods/Target Support Files/Pods/Pods.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/Pods/Target Support Files/Pods/Pods.release.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/README.md -------------------------------------------------------------------------------- /TextEthan.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/TextEthan.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TextEthan.xcodeproj/xcshareddata/xcschemes/TextEthan.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/TextEthan.xcodeproj/xcshareddata/xcschemes/TextEthan.xcscheme -------------------------------------------------------------------------------- /TextEthan.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/TextEthan.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TextEthan/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TextEthan/Controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TextEthan/Controllers/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/TextEthan/Controllers/AppDelegate.swift -------------------------------------------------------------------------------- /TextEthan/Controllers/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/TextEthan/Controllers/ViewController.swift -------------------------------------------------------------------------------- /TextEthan/Extensions/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TextEthan/Models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TextEthan/Protocols/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TextEthan/Resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TextEthan/Resources/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/TextEthan/Resources/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TextEthan/Resources/Nibs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TextEthan/Resources/Nibs/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/TextEthan/Resources/Nibs/LaunchScreen.xib -------------------------------------------------------------------------------- /TextEthan/Resources/Other-Sources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TextEthan/Resources/Other-Sources/AppToken.sample.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/TextEthan/Resources/Other-Sources/AppToken.sample.plist -------------------------------------------------------------------------------- /TextEthan/Resources/Other-Sources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/TextEthan/Resources/Other-Sources/Info.plist -------------------------------------------------------------------------------- /TextEthan/Resources/Other-Sources/TextEthan-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/TextEthan/Resources/Other-Sources/TextEthan-Bridging-Header.h -------------------------------------------------------------------------------- /TextEthan/Resources/Storyboards/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TextEthan/Resources/Storyboards/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/TextEthan/Resources/Storyboards/Main.storyboard -------------------------------------------------------------------------------- /TextEthan/ViewModels/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TextEthan/Views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnitTests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnitTests/Helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnitTests/Resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnitTests/Tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thii/TextEthan/HEAD/bin/test --------------------------------------------------------------------------------