gitextract_nra9x05a/ ├── .gitattributes ├── .gitignore ├── .travis.yml ├── Example/ │ ├── JSONNeverDieExample/ │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets/ │ │ │ └── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── Model.json │ │ ├── Model.swift │ │ └── ViewController.swift │ └── JSONNeverDieExample.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata/ │ │ ├── JohnLui.xcuserdatad/ │ │ │ └── UserInterfaceState.xcuserstate │ │ └── leqicheng.xcuserdatad/ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata/ │ ├── JohnLui.xcuserdatad/ │ │ ├── xcdebugger/ │ │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes/ │ │ ├── JSONNeverDieExample.xcscheme │ │ └── xcschememanagement.plist │ └── leqicheng.xcuserdatad/ │ └── xcschemes/ │ ├── JSONNeverDieExample.xcscheme │ └── xcschememanagement.plist ├── JSONNeverDie/ │ ├── Info.plist │ └── JSONNeverDie.h ├── JSONNeverDie.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata/ │ │ ├── JohnLui.xcuserdatad/ │ │ │ └── UserInterfaceState.xcuserstate │ │ └── leqicheng.xcuserdatad/ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata/ │ │ └── xcschemes/ │ │ └── JSONNeverDie.xcscheme │ └── xcuserdata/ │ ├── JohnLui.xcuserdatad/ │ │ ├── xcdebugger/ │ │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes/ │ │ ├── JSONNeverDieTests.xcscheme │ │ └── xcschememanagement.plist │ └── leqicheng.xcuserdatad/ │ └── xcschemes/ │ └── xcschememanagement.plist ├── JSONNeverDieTests/ │ ├── ArrayTests.swift │ ├── ArrayWithObjectsTests.swift │ ├── ArrayWithValuesTests.swift │ ├── BaseTests.swift │ ├── BoolTests.swift │ ├── DoubleTests.swift │ ├── Info.plist │ ├── IntTests.swift │ ├── JSONInitTests.swift │ ├── JSONNDModelTests.swift │ ├── JSONValueTests.swift │ ├── ParseJSONTests.swift │ ├── StringTests.swift │ ├── TestModel.swift │ └── test.json ├── LICENSE ├── README.md └── Source/ ├── JSONND+ArrayLiteralConvertible.swift ├── JSONND+DictionaryLiteralConvertible.swift ├── JSONND.swift └── JSONNDModel.swift