├── Demo ├── BinArchive.json ├── Demo.xcodeproj │ └── project.pbxproj ├── Demo.xcworkspace │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Demo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── Demo_test.podspec ├── Podfile └── Podfile_local ├── README.md ├── YYModel ├── .codecov.yml ├── .travis.yml ├── Benchmark │ ├── ModelBenchmark.xcodeproj │ │ └── project.pbxproj │ ├── ModelBenchmark │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── GithubUserModel │ │ │ ├── GitHubUser.h │ │ │ ├── GitHubUser.m │ │ │ ├── SwiftGithubUser.swift │ │ │ └── user.json │ │ ├── Info.plist │ │ ├── ModelBenchmark-Bridging-Header.h │ │ ├── SwiftModel.swift │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── WeiboModel │ │ │ ├── DateFormatter.h │ │ │ ├── DateFormatter.m │ │ │ ├── FEWeiboModel.h │ │ │ ├── FEWeiboModel.m │ │ │ ├── JSWeiboModel.h │ │ │ ├── JSWeiboModel.m │ │ │ ├── MJWeiboModel.h │ │ │ ├── MJWeiboModel.m │ │ │ ├── MTWeiboModel.h │ │ │ ├── MTWeiboModel.m │ │ │ ├── YYWeiboModel.h │ │ │ ├── YYWeiboModel.m │ │ │ └── weibo.json │ │ └── main.m │ ├── Podfile │ ├── Result.numbers │ └── Result.png ├── Framework │ ├── Info.plist │ └── YYModel.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ └── xcschemes │ │ └── YYModel.xcscheme ├── LICENSE ├── YYModel.podspec ├── YYModel │ ├── NSObject+YYModel.h │ ├── NSObject+YYModel.m │ ├── YYClassInfo.h │ ├── YYClassInfo.m │ └── YYModel.h └── YYModelTests │ ├── Info.plist │ ├── YYTestAutoTypeConvert.m │ ├── YYTestBlacklistWhitelist.m │ ├── YYTestClassInfo.m │ ├── YYTestCopyingAndCoding.m │ ├── YYTestCustomClass.m │ ├── YYTestCustomTransform.m │ ├── YYTestDescription.m │ ├── YYTestHelper.h │ ├── YYTestHelper.m │ ├── YYTestModelMapper.m │ ├── YYTestModelToJSON.m │ └── YYTestNestModel.m └── binary-server ├── LICENSE ├── app.js ├── package.json └── server ├── controllers └── frameworks.js ├── models └── component.js ├── routes.js └── utils └── dir.js /Demo/BinArchive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/Demo/BinArchive.json -------------------------------------------------------------------------------- /Demo/Demo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/Demo/Demo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/Demo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/Demo/Demo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Demo/Demo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/Demo/Demo/AppDelegate.h -------------------------------------------------------------------------------- /Demo/Demo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/Demo/Demo/AppDelegate.m -------------------------------------------------------------------------------- /Demo/Demo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/Demo/Demo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo/Demo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/Demo/Demo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Demo/Demo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/Demo/Demo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Demo/Demo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/Demo/Demo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Demo/Demo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/Demo/Demo/Info.plist -------------------------------------------------------------------------------- /Demo/Demo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/Demo/Demo/ViewController.h -------------------------------------------------------------------------------- /Demo/Demo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/Demo/Demo/ViewController.m -------------------------------------------------------------------------------- /Demo/Demo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/Demo/Demo/main.m -------------------------------------------------------------------------------- /Demo/Demo_test.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/Demo/Demo_test.podspec -------------------------------------------------------------------------------- /Demo/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/Demo/Podfile -------------------------------------------------------------------------------- /Demo/Podfile_local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/Demo/Podfile_local -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/README.md -------------------------------------------------------------------------------- /YYModel/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/.codecov.yml -------------------------------------------------------------------------------- /YYModel/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/.travis.yml -------------------------------------------------------------------------------- /YYModel/Benchmark/ModelBenchmark.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/Benchmark/ModelBenchmark.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /YYModel/Benchmark/ModelBenchmark/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/Benchmark/ModelBenchmark/AppDelegate.h -------------------------------------------------------------------------------- /YYModel/Benchmark/ModelBenchmark/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/Benchmark/ModelBenchmark/AppDelegate.m -------------------------------------------------------------------------------- /YYModel/Benchmark/ModelBenchmark/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/Benchmark/ModelBenchmark/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /YYModel/Benchmark/ModelBenchmark/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/Benchmark/ModelBenchmark/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /YYModel/Benchmark/ModelBenchmark/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/Benchmark/ModelBenchmark/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /YYModel/Benchmark/ModelBenchmark/GithubUserModel/GitHubUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/Benchmark/ModelBenchmark/GithubUserModel/GitHubUser.h -------------------------------------------------------------------------------- /YYModel/Benchmark/ModelBenchmark/GithubUserModel/GitHubUser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/Benchmark/ModelBenchmark/GithubUserModel/GitHubUser.m -------------------------------------------------------------------------------- /YYModel/Benchmark/ModelBenchmark/GithubUserModel/SwiftGithubUser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/Benchmark/ModelBenchmark/GithubUserModel/SwiftGithubUser.swift -------------------------------------------------------------------------------- /YYModel/Benchmark/ModelBenchmark/GithubUserModel/user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/Benchmark/ModelBenchmark/GithubUserModel/user.json -------------------------------------------------------------------------------- /YYModel/Benchmark/ModelBenchmark/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/Benchmark/ModelBenchmark/Info.plist -------------------------------------------------------------------------------- /YYModel/Benchmark/ModelBenchmark/ModelBenchmark-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/Benchmark/ModelBenchmark/ModelBenchmark-Bridging-Header.h -------------------------------------------------------------------------------- /YYModel/Benchmark/ModelBenchmark/SwiftModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/Benchmark/ModelBenchmark/SwiftModel.swift -------------------------------------------------------------------------------- /YYModel/Benchmark/ModelBenchmark/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/Benchmark/ModelBenchmark/ViewController.h -------------------------------------------------------------------------------- /YYModel/Benchmark/ModelBenchmark/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/Benchmark/ModelBenchmark/ViewController.m -------------------------------------------------------------------------------- /YYModel/Benchmark/ModelBenchmark/WeiboModel/DateFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/Benchmark/ModelBenchmark/WeiboModel/DateFormatter.h -------------------------------------------------------------------------------- /YYModel/Benchmark/ModelBenchmark/WeiboModel/DateFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/Benchmark/ModelBenchmark/WeiboModel/DateFormatter.m -------------------------------------------------------------------------------- /YYModel/Benchmark/ModelBenchmark/WeiboModel/FEWeiboModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/Benchmark/ModelBenchmark/WeiboModel/FEWeiboModel.h -------------------------------------------------------------------------------- /YYModel/Benchmark/ModelBenchmark/WeiboModel/FEWeiboModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/Benchmark/ModelBenchmark/WeiboModel/FEWeiboModel.m -------------------------------------------------------------------------------- /YYModel/Benchmark/ModelBenchmark/WeiboModel/JSWeiboModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/Benchmark/ModelBenchmark/WeiboModel/JSWeiboModel.h -------------------------------------------------------------------------------- /YYModel/Benchmark/ModelBenchmark/WeiboModel/JSWeiboModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/Benchmark/ModelBenchmark/WeiboModel/JSWeiboModel.m -------------------------------------------------------------------------------- /YYModel/Benchmark/ModelBenchmark/WeiboModel/MJWeiboModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/Benchmark/ModelBenchmark/WeiboModel/MJWeiboModel.h -------------------------------------------------------------------------------- /YYModel/Benchmark/ModelBenchmark/WeiboModel/MJWeiboModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/Benchmark/ModelBenchmark/WeiboModel/MJWeiboModel.m -------------------------------------------------------------------------------- /YYModel/Benchmark/ModelBenchmark/WeiboModel/MTWeiboModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/Benchmark/ModelBenchmark/WeiboModel/MTWeiboModel.h -------------------------------------------------------------------------------- /YYModel/Benchmark/ModelBenchmark/WeiboModel/MTWeiboModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/Benchmark/ModelBenchmark/WeiboModel/MTWeiboModel.m -------------------------------------------------------------------------------- /YYModel/Benchmark/ModelBenchmark/WeiboModel/YYWeiboModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/Benchmark/ModelBenchmark/WeiboModel/YYWeiboModel.h -------------------------------------------------------------------------------- /YYModel/Benchmark/ModelBenchmark/WeiboModel/YYWeiboModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/Benchmark/ModelBenchmark/WeiboModel/YYWeiboModel.m -------------------------------------------------------------------------------- /YYModel/Benchmark/ModelBenchmark/WeiboModel/weibo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/Benchmark/ModelBenchmark/WeiboModel/weibo.json -------------------------------------------------------------------------------- /YYModel/Benchmark/ModelBenchmark/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/Benchmark/ModelBenchmark/main.m -------------------------------------------------------------------------------- /YYModel/Benchmark/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/Benchmark/Podfile -------------------------------------------------------------------------------- /YYModel/Benchmark/Result.numbers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/Benchmark/Result.numbers -------------------------------------------------------------------------------- /YYModel/Benchmark/Result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/Benchmark/Result.png -------------------------------------------------------------------------------- /YYModel/Framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/Framework/Info.plist -------------------------------------------------------------------------------- /YYModel/Framework/YYModel.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/Framework/YYModel.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /YYModel/Framework/YYModel.xcodeproj/xcshareddata/xcschemes/YYModel.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/Framework/YYModel.xcodeproj/xcshareddata/xcschemes/YYModel.xcscheme -------------------------------------------------------------------------------- /YYModel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/LICENSE -------------------------------------------------------------------------------- /YYModel/YYModel.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/YYModel.podspec -------------------------------------------------------------------------------- /YYModel/YYModel/NSObject+YYModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/YYModel/NSObject+YYModel.h -------------------------------------------------------------------------------- /YYModel/YYModel/NSObject+YYModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/YYModel/NSObject+YYModel.m -------------------------------------------------------------------------------- /YYModel/YYModel/YYClassInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/YYModel/YYClassInfo.h -------------------------------------------------------------------------------- /YYModel/YYModel/YYClassInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/YYModel/YYClassInfo.m -------------------------------------------------------------------------------- /YYModel/YYModel/YYModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/YYModel/YYModel.h -------------------------------------------------------------------------------- /YYModel/YYModelTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/YYModelTests/Info.plist -------------------------------------------------------------------------------- /YYModel/YYModelTests/YYTestAutoTypeConvert.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/YYModelTests/YYTestAutoTypeConvert.m -------------------------------------------------------------------------------- /YYModel/YYModelTests/YYTestBlacklistWhitelist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/YYModelTests/YYTestBlacklistWhitelist.m -------------------------------------------------------------------------------- /YYModel/YYModelTests/YYTestClassInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/YYModelTests/YYTestClassInfo.m -------------------------------------------------------------------------------- /YYModel/YYModelTests/YYTestCopyingAndCoding.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/YYModelTests/YYTestCopyingAndCoding.m -------------------------------------------------------------------------------- /YYModel/YYModelTests/YYTestCustomClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/YYModelTests/YYTestCustomClass.m -------------------------------------------------------------------------------- /YYModel/YYModelTests/YYTestCustomTransform.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/YYModelTests/YYTestCustomTransform.m -------------------------------------------------------------------------------- /YYModel/YYModelTests/YYTestDescription.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/YYModelTests/YYTestDescription.m -------------------------------------------------------------------------------- /YYModel/YYModelTests/YYTestHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/YYModelTests/YYTestHelper.h -------------------------------------------------------------------------------- /YYModel/YYModelTests/YYTestHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/YYModelTests/YYTestHelper.m -------------------------------------------------------------------------------- /YYModel/YYModelTests/YYTestModelMapper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/YYModelTests/YYTestModelMapper.m -------------------------------------------------------------------------------- /YYModel/YYModelTests/YYTestModelToJSON.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/YYModelTests/YYTestModelToJSON.m -------------------------------------------------------------------------------- /YYModel/YYModelTests/YYTestNestModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/YYModel/YYModelTests/YYTestNestModel.m -------------------------------------------------------------------------------- /binary-server/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/binary-server/LICENSE -------------------------------------------------------------------------------- /binary-server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/binary-server/app.js -------------------------------------------------------------------------------- /binary-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/binary-server/package.json -------------------------------------------------------------------------------- /binary-server/server/controllers/frameworks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/binary-server/server/controllers/frameworks.js -------------------------------------------------------------------------------- /binary-server/server/models/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/binary-server/server/models/component.js -------------------------------------------------------------------------------- /binary-server/server/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/binary-server/server/routes.js -------------------------------------------------------------------------------- /binary-server/server/utils/dir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/su350380433/cocoapods-imy-bin-demo/HEAD/binary-server/server/utils/dir.js --------------------------------------------------------------------------------