gitextract_oa42pcn2/ ├── .github/ │ └── FUNDING.yml ├── .gitignore ├── .travis.yml ├── CardScanner/ │ ├── Assets/ │ │ └── .gitkeep │ └── Classes/ │ ├── .gitkeep │ └── CardScanner.swift ├── CardScanner.podspec ├── Example/ │ ├── CardScanner/ │ │ ├── AppDelegate.swift │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.xib │ │ │ └── Main.storyboard │ │ ├── Images.xcassets/ │ │ │ └── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── ViewController.swift │ ├── CardScanner.xcodeproj/ │ │ ├── project.pbxproj │ │ ├── project.xcworkspace/ │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ └── CardScanner-Example.xcscheme │ ├── CardScanner.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── IDEWorkspaceChecks.plist │ ├── Podfile │ ├── Pods/ │ │ ├── Local Podspecs/ │ │ │ └── CardScanner.podspec.json │ │ ├── Pods.xcodeproj/ │ │ │ └── project.pbxproj │ │ └── Target Support Files/ │ │ ├── CardScanner/ │ │ │ ├── CardScanner-Info.plist │ │ │ ├── CardScanner-dummy.m │ │ │ ├── CardScanner-prefix.pch │ │ │ ├── CardScanner-umbrella.h │ │ │ ├── CardScanner.debug.xcconfig │ │ │ ├── CardScanner.modulemap │ │ │ └── CardScanner.release.xcconfig │ │ ├── Pods-CardScanner_Example/ │ │ │ ├── Pods-CardScanner_Example-Info.plist │ │ │ ├── Pods-CardScanner_Example-acknowledgements.markdown │ │ │ ├── Pods-CardScanner_Example-acknowledgements.plist │ │ │ ├── Pods-CardScanner_Example-dummy.m │ │ │ ├── Pods-CardScanner_Example-frameworks.sh │ │ │ ├── Pods-CardScanner_Example-umbrella.h │ │ │ ├── Pods-CardScanner_Example.debug.xcconfig │ │ │ ├── Pods-CardScanner_Example.modulemap │ │ │ └── Pods-CardScanner_Example.release.xcconfig │ │ └── Pods-CardScanner_Tests/ │ │ ├── Pods-CardScanner_Tests-Info.plist │ │ ├── Pods-CardScanner_Tests-acknowledgements.markdown │ │ ├── Pods-CardScanner_Tests-acknowledgements.plist │ │ ├── Pods-CardScanner_Tests-dummy.m │ │ ├── Pods-CardScanner_Tests-umbrella.h │ │ ├── Pods-CardScanner_Tests.debug.xcconfig │ │ ├── Pods-CardScanner_Tests.modulemap │ │ └── Pods-CardScanner_Tests.release.xcconfig │ └── Tests/ │ ├── Info.plist │ └── Tests.swift ├── LICENSE └── README.md