gitextract_v6e27xxc/ ├── .gitignore ├── .slather.yml ├── .swift-version ├── .travis.yml ├── Cartfile ├── Cartfile.resolved ├── EasyRealm/ │ ├── Assets/ │ │ └── .gitkeep │ ├── Classes/ │ │ ├── .gitkeep │ │ ├── Delete.swift │ │ ├── EasyRealm.swift │ │ ├── EasyRealmList.swift │ │ ├── EasyRealmQueue.swift │ │ ├── Edit.swift │ │ ├── Error.swift │ │ ├── Query.swift │ │ ├── Save.swift │ │ └── Variable.swift │ ├── EasyRealm.h │ └── Info.plist ├── EasyRealm.podspec ├── EasyRealm.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata/ │ └── xcschemes/ │ └── EasyRealm.xcscheme ├── Example/ │ ├── EasyRealm/ │ │ ├── AppDelegate.swift │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.xib │ │ │ └── Main.storyboard │ │ ├── Images.xcassets/ │ │ │ └── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── ViewController.swift │ ├── EasyRealm.xcodeproj/ │ │ ├── project.pbxproj │ │ ├── project.xcworkspace/ │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ └── EasyRealm-Example.xcscheme │ ├── EasyRealm.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── IDEWorkspaceChecks.plist │ ├── Podfile │ └── Tests/ │ ├── Info.plist │ ├── Pokedex.swift │ ├── Pokemon.swift │ ├── PokemonHelp.swift │ ├── TestDelete.swift │ ├── TestEdit.swift │ ├── TestMeasure.swift │ ├── TestQuery.swift │ ├── TestSave.swift │ ├── TestUpdate.swift │ ├── TestVariable.swift │ └── Trainer.swift ├── LICENSE ├── README.md ├── Ressources/ │ └── easy_realm_logo.sketch └── scripts/ └── deploy.sh