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