├── .gitignore ├── Demo ├── FluentDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── FluentDemo.xcworkspace │ └── contents.xcworkspacedata ├── FluentDemo │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── Podfile └── Podfile.lock ├── Fluent.podspec ├── Fluent.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── Fluent.xcscheme ├── Fluent ├── Fluent.h ├── Fluent.swift └── Info.plist ├── LICENSE ├── README.md ├── logo.png └── logo@2x.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewcheok/Fluent/HEAD/.gitignore -------------------------------------------------------------------------------- /Demo/FluentDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewcheok/Fluent/HEAD/Demo/FluentDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/FluentDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewcheok/Fluent/HEAD/Demo/FluentDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demo/FluentDemo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewcheok/Fluent/HEAD/Demo/FluentDemo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demo/FluentDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewcheok/Fluent/HEAD/Demo/FluentDemo/AppDelegate.swift -------------------------------------------------------------------------------- /Demo/FluentDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewcheok/Fluent/HEAD/Demo/FluentDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo/FluentDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewcheok/Fluent/HEAD/Demo/FluentDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Demo/FluentDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewcheok/Fluent/HEAD/Demo/FluentDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Demo/FluentDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewcheok/Fluent/HEAD/Demo/FluentDemo/Info.plist -------------------------------------------------------------------------------- /Demo/FluentDemo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewcheok/Fluent/HEAD/Demo/FluentDemo/ViewController.swift -------------------------------------------------------------------------------- /Demo/Podfile: -------------------------------------------------------------------------------- 1 | platform :ios, '8.0' 2 | 3 | use_frameworks! 4 | pod 'Fluent', :path => '../' 5 | 6 | 7 | -------------------------------------------------------------------------------- /Demo/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewcheok/Fluent/HEAD/Demo/Podfile.lock -------------------------------------------------------------------------------- /Fluent.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewcheok/Fluent/HEAD/Fluent.podspec -------------------------------------------------------------------------------- /Fluent.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewcheok/Fluent/HEAD/Fluent.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Fluent.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewcheok/Fluent/HEAD/Fluent.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Fluent.xcodeproj/xcshareddata/xcschemes/Fluent.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewcheok/Fluent/HEAD/Fluent.xcodeproj/xcshareddata/xcschemes/Fluent.xcscheme -------------------------------------------------------------------------------- /Fluent/Fluent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewcheok/Fluent/HEAD/Fluent/Fluent.h -------------------------------------------------------------------------------- /Fluent/Fluent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewcheok/Fluent/HEAD/Fluent/Fluent.swift -------------------------------------------------------------------------------- /Fluent/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewcheok/Fluent/HEAD/Fluent/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewcheok/Fluent/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewcheok/Fluent/HEAD/README.md -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewcheok/Fluent/HEAD/logo.png -------------------------------------------------------------------------------- /logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewcheok/Fluent/HEAD/logo@2x.png --------------------------------------------------------------------------------