gitextract_bke45ep5/ ├── .gitignore ├── .travis.yml ├── Elissa/ │ ├── Assets/ │ │ ├── .gitkeep │ │ └── Elissa.xib │ ├── Classes/ │ │ ├── .gitkeep │ │ ├── Elissa.swift │ │ └── UIViewControllerExtension.swift │ ├── Elissa.h │ └── Info.plist ├── Elissa.podspec ├── Example/ │ ├── Elissa/ │ │ ├── AppDelegate.swift │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.xib │ │ │ └── Main.storyboard │ │ ├── Images.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── folder-item.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── heartIcon.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── paper-plane-item.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── text-align-item.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── viewer-item.imageset/ │ │ │ │ └── Contents.json │ │ │ └── wifi-item.imageset/ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── ViewController.swift │ ├── Elissa.xcodeproj/ │ │ ├── project.pbxproj │ │ ├── project.xcworkspace/ │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ └── Elissa-Example.xcscheme │ ├── Elissa.xcworkspace/ │ │ └── contents.xcworkspacedata │ ├── Podfile │ ├── Pods/ │ │ ├── Local Podspecs/ │ │ │ └── Elissa.podspec.json │ │ ├── Pods.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace/ │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── xcschemes/ │ │ │ └── Elissa.xcscheme │ │ └── Target Support Files/ │ │ ├── Elissa/ │ │ │ ├── Elissa-dummy.m │ │ │ ├── Elissa-prefix.pch │ │ │ ├── Elissa-umbrella.h │ │ │ ├── Elissa.modulemap │ │ │ ├── Elissa.xcconfig │ │ │ └── Info.plist │ │ ├── Pods-Elissa_Example/ │ │ │ ├── Info.plist │ │ │ ├── Pods-Elissa_Example-acknowledgements.markdown │ │ │ ├── Pods-Elissa_Example-acknowledgements.plist │ │ │ ├── Pods-Elissa_Example-dummy.m │ │ │ ├── Pods-Elissa_Example-frameworks.sh │ │ │ ├── Pods-Elissa_Example-resources.sh │ │ │ ├── Pods-Elissa_Example-umbrella.h │ │ │ ├── Pods-Elissa_Example.debug.xcconfig │ │ │ ├── Pods-Elissa_Example.modulemap │ │ │ └── Pods-Elissa_Example.release.xcconfig │ │ └── Pods-Elissa_Tests/ │ │ ├── Info.plist │ │ ├── Pods-Elissa_Tests-acknowledgements.markdown │ │ ├── Pods-Elissa_Tests-acknowledgements.plist │ │ ├── Pods-Elissa_Tests-dummy.m │ │ ├── Pods-Elissa_Tests-frameworks.sh │ │ ├── Pods-Elissa_Tests-resources.sh │ │ ├── Pods-Elissa_Tests-umbrella.h │ │ ├── Pods-Elissa_Tests.debug.xcconfig │ │ ├── Pods-Elissa_Tests.modulemap │ │ └── Pods-Elissa_Tests.release.xcconfig │ └── Tests/ │ ├── Info.plist │ └── Tests.swift ├── LICENSE └── README.md