├── .gitignore ├── Depot.podspec ├── Depot.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── Depot ├── Depot.h ├── Depot.swift ├── Info.plist ├── Mirror+Conversion.swift ├── PropertyListReadable.swift ├── Storehousable.swift ├── StorehouseWritable.swift └── UserDefaultStore.swift ├── DepotTests ├── DepotTests.swift ├── Info.plist └── TestStructTypes.swift ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSame7/Depot/HEAD/.gitignore -------------------------------------------------------------------------------- /Depot.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSame7/Depot/HEAD/Depot.podspec -------------------------------------------------------------------------------- /Depot.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSame7/Depot/HEAD/Depot.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Depot.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSame7/Depot/HEAD/Depot.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Depot/Depot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSame7/Depot/HEAD/Depot/Depot.h -------------------------------------------------------------------------------- /Depot/Depot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSame7/Depot/HEAD/Depot/Depot.swift -------------------------------------------------------------------------------- /Depot/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSame7/Depot/HEAD/Depot/Info.plist -------------------------------------------------------------------------------- /Depot/Mirror+Conversion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSame7/Depot/HEAD/Depot/Mirror+Conversion.swift -------------------------------------------------------------------------------- /Depot/PropertyListReadable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSame7/Depot/HEAD/Depot/PropertyListReadable.swift -------------------------------------------------------------------------------- /Depot/Storehousable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSame7/Depot/HEAD/Depot/Storehousable.swift -------------------------------------------------------------------------------- /Depot/StorehouseWritable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSame7/Depot/HEAD/Depot/StorehouseWritable.swift -------------------------------------------------------------------------------- /Depot/UserDefaultStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSame7/Depot/HEAD/Depot/UserDefaultStore.swift -------------------------------------------------------------------------------- /DepotTests/DepotTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSame7/Depot/HEAD/DepotTests/DepotTests.swift -------------------------------------------------------------------------------- /DepotTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSame7/Depot/HEAD/DepotTests/Info.plist -------------------------------------------------------------------------------- /DepotTests/TestStructTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSame7/Depot/HEAD/DepotTests/TestStructTypes.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSame7/Depot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSame7/Depot/HEAD/README.md --------------------------------------------------------------------------------