gitextract_9es8icdz/ ├── .gitignore ├── .ruby-version ├── .travis.yml ├── Dangerfile ├── Gemfile ├── LICENSE ├── Marvel/ │ ├── AppDelegate/ │ │ └── AppDelegate.swift │ ├── ApperanceProxyHelper.swift │ ├── Cells/ │ │ ├── CharacterCollectionCell.swift │ │ ├── CharacterTableCell.swift │ │ └── Xibs/ │ │ ├── CharacterCollectionCell.xib │ │ └── CharacterTableCell.xib │ ├── Controllers/ │ │ ├── CharacterViewController.swift │ │ └── CharactersViewController.swift │ ├── Datasources/ │ │ ├── CharactersCollectionDatasource.swift │ │ ├── CharactersDatasource.swift │ │ ├── ItemsCollectionViewDatasource.swift │ │ └── ItemsTableViewDatasource.swift │ ├── Models/ │ │ ├── Character.swift │ │ └── ThumbImage.swift │ ├── Network/ │ │ ├── MarvelAPI.swift │ │ └── MarvelAPIManager.swift │ ├── Resources/ │ │ ├── Assets.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Grid Icon.imageset/ │ │ │ │ └── Contents.json │ │ │ └── List Icon.imageset/ │ │ │ └── Contents.json │ │ ├── ColorPalette.swift │ │ ├── Info.plist │ │ └── Storyboard.swift │ ├── Storyboards/ │ │ └── Base.lproj/ │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── UIImageView+Kingfisher.swift ├── Marvel.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ └── contents.xcworkspacedata │ └── xcshareddata/ │ └── xcschemes/ │ └── Marvel.xcscheme ├── MarvelTests/ │ ├── CharacterSpec.swift │ ├── CharacterViewControllerSpec.swift │ ├── CharactersCollectionDatasourceSpec.swift │ ├── CharactersCollectionDelegateSpec.swift │ ├── CharactersDatasourceSpec.swift │ ├── CharactersDelegateSpec.swift │ ├── CharactersViewControllerSpec.swift │ ├── Info.plist │ ├── MockLoader.swift │ ├── ThumbImageSpec.swift │ ├── character.json │ └── characters_response.json ├── Podfile ├── README.md ├── coverage/ │ ├── AppDelegate.swift.html │ ├── Character.swift.html │ ├── CharacterCollectionCell.swift.html │ ├── CharacterTableCell.swift.html │ ├── CharacterViewController.swift.html │ ├── CharactersCollectionDatasource.swift.html │ ├── CharactersDatasource.swift.html │ ├── CharactersViewController.swift.html │ ├── ItemsCollectionViewDatasource.swift.html │ ├── ItemsTableViewDatasource.swift.html │ ├── ThumbImage.swift.html │ ├── UIImageView+Kingfisher.swift.html │ ├── highlight.pack.js │ ├── index.html │ └── slather.css └── fastlane/ ├── Appfile ├── Fastfile └── README.md