gitextract_2gf25u8g/ ├── .gitignore ├── .swift-version ├── .travis.yml ├── Example/ │ ├── Example/ │ │ ├── Example/ │ │ │ ├── AddViewController.h │ │ │ ├── AddViewController.m │ │ │ ├── AddViewController.xib │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Images.xcassets/ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── green_light.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── red_light.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── ListViewController.h │ │ │ ├── ListViewController.m │ │ │ ├── ListViewController.xib │ │ │ ├── LoginViewController.h │ │ │ ├── LoginViewController.m │ │ │ ├── LoginViewController.xib │ │ │ ├── ViewController.h │ │ │ ├── ViewController.m │ │ │ ├── ViewController.xib │ │ │ ├── en.lproj/ │ │ │ │ └── InfoPlist.strings │ │ │ └── main.m │ │ ├── Example.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace/ │ │ │ └── contents.xcworkspacedata │ │ ├── Example.xcworkspace/ │ │ │ └── contents.xcworkspacedata │ │ ├── Podfile │ │ └── example.txt │ ├── swiftExample/ │ │ ├── Podfile │ │ ├── bridge.m │ │ ├── swiftddp/ │ │ │ ├── AddViewController.swift │ │ │ ├── AddViewController.xib │ │ │ ├── AppDelegate.swift │ │ │ ├── Example-Info.plist │ │ │ ├── Info.plist │ │ │ ├── ListViewController.swift │ │ │ ├── ListViewController.xib │ │ │ ├── LoginViewController.swift │ │ │ ├── LoginViewController.xib │ │ │ ├── ViewController.swift │ │ │ ├── ViewController.xib │ │ │ └── images.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ └── LaunchImage.launchimage/ │ │ │ └── Contents.json │ │ ├── swiftddp-Bridging-Header.h │ │ ├── swiftddp.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace/ │ │ │ └── contents.xcworkspacedata │ │ ├── swiftddp.xcworkspace/ │ │ │ └── contents.xcworkspacedata │ │ └── swiftddpTests/ │ │ ├── Info.plist │ │ └── swiftddpTests.swift │ └── todos/ │ ├── .meteor/ │ │ ├── .finished-upgraders │ │ ├── .gitignore │ │ ├── .id │ │ ├── packages │ │ ├── platforms │ │ ├── release │ │ └── versions │ ├── server.css │ ├── server.html │ └── server.js ├── LICENSE.txt ├── ObjectiveDDP/ │ ├── BSONIdGenerator.h │ ├── BSONIdGenerator.m │ ├── DependencyProvider.h │ ├── DependencyProvider.m │ ├── MeteorClient+Parsing.m │ ├── MeteorClient+Private.h │ ├── MeteorClient.h │ ├── MeteorClient.m │ ├── ObjectiveDDP-Prefix.pch │ ├── ObjectiveDDP.h │ └── ObjectiveDDP.m ├── ObjectiveDDP.podspec ├── ObjectiveDDP.xcodeproj/ │ ├── project.pbxproj │ └── project.xcworkspace/ │ └── contents.xcworkspacedata ├── ObjectiveDDP.xcworkspace/ │ └── contents.xcworkspacedata ├── Podfile ├── README.md ├── Rakefile ├── Specs/ │ ├── DDPSpecHelper.h │ ├── DDPSpecHelper.m │ ├── DependencyProvider+Spec.m │ ├── MeteorClientSpec.mm │ ├── Mocks/ │ │ ├── FakeDependencyProvider.h │ │ ├── FakeDependencyProvider.m │ │ ├── MockObjectiveDDPDelegate.h │ │ ├── MockObjectiveDDPDelegate.m │ │ ├── MockSRWebSocket.h │ │ └── MockSRWebSocket.m │ ├── NSObject+Spec.m │ ├── ObjectiveDDPSpec.mm │ ├── Specs-Info.plist │ ├── Specs-Prefix.pch │ ├── en.lproj/ │ │ └── InfoPlist.strings │ └── main.m └── thrust.yml