├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── CombineStorable.podspec ├── CombineStorable.xcodeproj ├── CombineStorableTests_Info.plist ├── CombineStorable_Info.plist ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── xcshareddata │ └── xcschemes │ └── CombineStorable-Package.xcscheme ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── CombineStorable │ ├── NSObject+Storable.swift │ ├── Publisher+Storable.swift │ └── Storable.swift └── Tests ├── CombineStorableTests ├── StorableTests.swift └── XCTestManifests.swift └── LinuxMain.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crane-hiromu/CombineStorable/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crane-hiromu/CombineStorable/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crane-hiromu/CombineStorable/HEAD/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /CombineStorable.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crane-hiromu/CombineStorable/HEAD/CombineStorable.podspec -------------------------------------------------------------------------------- /CombineStorable.xcodeproj/CombineStorableTests_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crane-hiromu/CombineStorable/HEAD/CombineStorable.xcodeproj/CombineStorableTests_Info.plist -------------------------------------------------------------------------------- /CombineStorable.xcodeproj/CombineStorable_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crane-hiromu/CombineStorable/HEAD/CombineStorable.xcodeproj/CombineStorable_Info.plist -------------------------------------------------------------------------------- /CombineStorable.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crane-hiromu/CombineStorable/HEAD/CombineStorable.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CombineStorable.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crane-hiromu/CombineStorable/HEAD/CombineStorable.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CombineStorable.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crane-hiromu/CombineStorable/HEAD/CombineStorable.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /CombineStorable.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crane-hiromu/CombineStorable/HEAD/CombineStorable.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /CombineStorable.xcodeproj/xcshareddata/xcschemes/CombineStorable-Package.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crane-hiromu/CombineStorable/HEAD/CombineStorable.xcodeproj/xcshareddata/xcschemes/CombineStorable-Package.xcscheme -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crane-hiromu/CombineStorable/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crane-hiromu/CombineStorable/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crane-hiromu/CombineStorable/HEAD/README.md -------------------------------------------------------------------------------- /Sources/CombineStorable/NSObject+Storable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crane-hiromu/CombineStorable/HEAD/Sources/CombineStorable/NSObject+Storable.swift -------------------------------------------------------------------------------- /Sources/CombineStorable/Publisher+Storable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crane-hiromu/CombineStorable/HEAD/Sources/CombineStorable/Publisher+Storable.swift -------------------------------------------------------------------------------- /Sources/CombineStorable/Storable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crane-hiromu/CombineStorable/HEAD/Sources/CombineStorable/Storable.swift -------------------------------------------------------------------------------- /Tests/CombineStorableTests/StorableTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crane-hiromu/CombineStorable/HEAD/Tests/CombineStorableTests/StorableTests.swift -------------------------------------------------------------------------------- /Tests/CombineStorableTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crane-hiromu/CombineStorable/HEAD/Tests/CombineStorableTests/XCTestManifests.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crane-hiromu/CombineStorable/HEAD/Tests/LinuxMain.swift --------------------------------------------------------------------------------