gitextract_ozh3a0j9/ ├── .gitignore ├── .swift-version ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── Package.swift ├── RAMAnimatedTabBarController/ │ ├── Animations/ │ │ ├── BounceAnimation/ │ │ │ └── RAMBounceAnimation.swift │ │ ├── FrameAnimation/ │ │ │ └── RAMFrameItemAnimation.swift │ │ ├── FumeAnimation/ │ │ │ └── RAMFumeAnimation.swift │ │ ├── RotationAnimation/ │ │ │ └── RAMRotationAnimation.swift │ │ └── TransitionAniamtions/ │ │ └── RAMTransitionItemAnimations.swift │ ├── BottomLine/ │ │ └── RAMAnimatedTabBarController+BottomLine.swift │ ├── RAMAnimatedTabBarController.swift │ ├── RAMAnimatedTabBarItem.swift │ ├── RAMBadge/ │ │ └── RAMBadge.swift │ ├── RAMItemAnimationProtocol.swift │ └── Utilities/ │ └── Collection+Extensions.swift ├── RAMAnimatedTabBarController.podspec ├── RAMAnimatedTabBarDemo/ │ ├── AnimatedTabBarTests/ │ │ ├── AnimatedTabBarTests.swift │ │ ├── Info.plist │ │ └── RAMBadgeTests.swift │ ├── RAMAnimatedTabBarDemo/ │ │ ├── AppDelegate.swift │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.xib │ │ │ └── Main.storyboard │ │ ├── Images.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Settings_icon/ │ │ │ │ └── Settings.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── Tools/ │ │ │ │ ├── Tools_00028.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Tools_00029.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Tools_00030.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Tools_00031.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Tools_00032.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Tools_00033.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Tools_00034.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Tools_00035.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Tools_00036.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Tools_00037.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Tools_00038.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Tools_00039.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Tools_00040.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Tools_00041.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Tools_00042.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Tools_00043.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Tools_00044.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Tools_00045.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Tools_00046.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Tools_00047.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Tools_00048.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Tools_00049.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Tools_00050.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Tools_00051.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Tools_00052.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Tools_00053.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Tools_00054.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Tools_00055.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Tools_00056.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Tools_00057.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Tools_00058.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Tools_00059.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Tools_00060.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Tools_00061.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Tools_00062.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Tools_00063.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Tools_00064.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Tools_00065.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── drop/ │ │ │ │ └── drop.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── icon_pin.imageset/ │ │ │ │ └── Contents.json │ │ │ └── icon_user.imageset/ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── Resources/ │ │ │ └── ToolsAnimation.plist │ │ └── ViewController.swift │ ├── RAMAnimatedTabBarDemo.xcodeproj/ │ │ ├── project.pbxproj │ │ ├── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ └── RAMAnimatedTabBarController.xcscheme │ └── TabBarLib/ │ ├── Info.plist │ └── TabBarLib.h ├── README.md └── docs/ ├── Classes/ │ ├── RAMAnimatedTabBarController.html │ ├── RAMAnimatedTabBarItem.html │ ├── RAMBounceAnimation.html │ ├── RAMFrameItemAnimation.html │ ├── RAMFumeAnimation.html │ ├── RAMItemAnimation.html │ ├── RAMRotationAnimation.html │ └── RAMTransitionItemAnimations.html ├── Classes.html ├── css/ │ ├── highlight.css │ └── jazzy.css ├── docsets/ │ ├── RAMAnimatedTabBarDemo.docset/ │ │ └── Contents/ │ │ ├── Info.plist │ │ └── Resources/ │ │ ├── Documents/ │ │ │ ├── Classes/ │ │ │ │ ├── RAMAnimatedTabBarController.html │ │ │ │ ├── RAMAnimatedTabBarItem.html │ │ │ │ ├── RAMBounceAnimation.html │ │ │ │ ├── RAMFrameItemAnimation.html │ │ │ │ ├── RAMFumeAnimation.html │ │ │ │ ├── RAMItemAnimation.html │ │ │ │ ├── RAMRotationAnimation.html │ │ │ │ └── RAMTransitionItemAnimations.html │ │ │ ├── Classes.html │ │ │ ├── css/ │ │ │ │ ├── highlight.css │ │ │ │ └── jazzy.css │ │ │ ├── index.html │ │ │ ├── js/ │ │ │ │ └── jazzy.js │ │ │ └── undocumented.txt │ │ └── docSet.dsidx │ └── RAMAnimatedTabBarDemo.tgz ├── index.html ├── js/ │ └── jazzy.js └── undocumented.txt