├── .gitignore ├── .travis.yml ├── Cartfile ├── Example ├── Podfile ├── Podfile.lock ├── RealmDefaults.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── RealmDefaults-Example.xcscheme ├── RealmDefaults.xcworkspace │ └── contents.xcworkspacedata ├── RealmDefaults_Demo │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift └── Tests │ ├── Archives.swift │ ├── Info.plist │ ├── MyAccount.swift │ ├── TestsArchives.swift │ └── TestsMyAccount.swift ├── LICENSE ├── Package.swift ├── Pod ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ └── RealmDefaults.swift ├── README.md ├── RealmDefaults.podspec └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muukii-archive/RealmDefaults/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muukii-archive/RealmDefaults/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muukii-archive/RealmDefaults/HEAD/Cartfile -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muukii-archive/RealmDefaults/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muukii-archive/RealmDefaults/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/RealmDefaults.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muukii-archive/RealmDefaults/HEAD/Example/RealmDefaults.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/RealmDefaults.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muukii-archive/RealmDefaults/HEAD/Example/RealmDefaults.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/RealmDefaults.xcodeproj/xcshareddata/xcschemes/RealmDefaults-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muukii-archive/RealmDefaults/HEAD/Example/RealmDefaults.xcodeproj/xcshareddata/xcschemes/RealmDefaults-Example.xcscheme -------------------------------------------------------------------------------- /Example/RealmDefaults.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muukii-archive/RealmDefaults/HEAD/Example/RealmDefaults.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/RealmDefaults_Demo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muukii-archive/RealmDefaults/HEAD/Example/RealmDefaults_Demo/AppDelegate.swift -------------------------------------------------------------------------------- /Example/RealmDefaults_Demo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muukii-archive/RealmDefaults/HEAD/Example/RealmDefaults_Demo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/RealmDefaults_Demo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muukii-archive/RealmDefaults/HEAD/Example/RealmDefaults_Demo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/RealmDefaults_Demo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muukii-archive/RealmDefaults/HEAD/Example/RealmDefaults_Demo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/RealmDefaults_Demo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muukii-archive/RealmDefaults/HEAD/Example/RealmDefaults_Demo/Info.plist -------------------------------------------------------------------------------- /Example/RealmDefaults_Demo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muukii-archive/RealmDefaults/HEAD/Example/RealmDefaults_Demo/ViewController.swift -------------------------------------------------------------------------------- /Example/Tests/Archives.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muukii-archive/RealmDefaults/HEAD/Example/Tests/Archives.swift -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muukii-archive/RealmDefaults/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/MyAccount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muukii-archive/RealmDefaults/HEAD/Example/Tests/MyAccount.swift -------------------------------------------------------------------------------- /Example/Tests/TestsArchives.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muukii-archive/RealmDefaults/HEAD/Example/Tests/TestsArchives.swift -------------------------------------------------------------------------------- /Example/Tests/TestsMyAccount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muukii-archive/RealmDefaults/HEAD/Example/Tests/TestsMyAccount.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muukii-archive/RealmDefaults/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muukii-archive/RealmDefaults/HEAD/Package.swift -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/RealmDefaults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muukii-archive/RealmDefaults/HEAD/Pod/Classes/RealmDefaults.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muukii-archive/RealmDefaults/HEAD/README.md -------------------------------------------------------------------------------- /RealmDefaults.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muukii-archive/RealmDefaults/HEAD/RealmDefaults.podspec -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------