├── .gitignore ├── .gitmodules ├── FayeObjC.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── FayeObjCFramework.xcscheme │ └── FayeObjCLibrary.xcscheme ├── FayeObjC.xcworkspace └── contents.xcworkspacedata ├── FayeObjCFramework ├── FayeObjCFramework-Info.plist ├── FayeObjCFramework-Prefix.pch └── en.lproj │ └── InfoPlist.strings ├── FayeObjCFrameworkTests ├── FayeObjCFrameworkTests-Info.plist ├── FayeObjCFrameworkTests-Prefix.pch └── en.lproj │ └── InfoPlist.strings ├── FayeObjCLibrary └── FayeObjCLibrary-Prefix.pch ├── FayeObjCLibraryTests ├── FayeObjCLibraryTests-Info.plist ├── FayeObjCLibraryTests-Prefix.pch └── en.lproj │ └── InfoPlist.strings ├── LICENSE ├── README.md ├── assets ├── fayeMac.png ├── fayeMac.pxm ├── fayeMac128.png ├── fayeMac16.png ├── fayeMac256.png └── fayeMac32.png ├── examples ├── OSX │ ├── English.lproj │ │ ├── InfoPlist.strings │ │ └── MainMenu.xib │ ├── Frameworks │ │ └── YAJL.framework │ │ │ ├── Headers │ │ │ ├── Resources │ │ │ ├── Versions │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ ├── NSBundle+YAJL.h │ │ │ │ │ ├── NSObject+YAJL.h │ │ │ │ │ ├── YAJL.h │ │ │ │ │ ├── YAJLDocument.h │ │ │ │ │ ├── YAJLGen.h │ │ │ │ │ ├── YAJLParser.h │ │ │ │ │ ├── yajl_common.h │ │ │ │ │ ├── yajl_gen.h │ │ │ │ │ ├── yajl_parse.h │ │ │ │ │ └── yajl_version.h │ │ │ │ ├── Resources │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ └── Info.plist │ │ │ │ └── YAJL │ │ │ └── Current │ │ │ └── YAJL │ ├── Mac Example App-Info.plist │ ├── Mac Example App.icns │ ├── Mac Example App.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Mac Example App.xcscheme │ ├── Mac Example App_Prefix.pch │ ├── MainController.h │ ├── MainController.m │ ├── fayeMacAppDelegate.h │ ├── fayeMacAppDelegate.m │ ├── images │ │ ├── green.png │ │ └── red.png │ └── main.m ├── iOS │ ├── Classes │ │ ├── fayeiPhoneAppDelegate.h │ │ ├── fayeiPhoneAppDelegate.m │ │ ├── fayeiPhoneViewController.h │ │ └── fayeiPhoneViewController.m │ ├── MainWindow.xib │ ├── fayeiPhoneViewController.xib │ ├── iOS Example App-Info.plist │ ├── iOS Example App.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── iOS Example App.xcscheme │ ├── iOS Example App_Prefix.pch │ └── main.m └── server │ ├── faye_server.js │ └── vendor │ ├── faye-node.js │ └── package.json ├── lib ├── NSDate+UTC │ ├── NSDate-UTC.h │ └── NSDate-UTC.m ├── NSObject+PropertySupport │ ├── NSObject+PropertySupport.h │ └── NSObject+PropertySupport.m ├── NSString+FayeInflectionSupport │ ├── NSString+FayeInflectionSupport.h │ └── NSString+FayeInflectionSupport.m ├── ObjectiveResourceDateFormatter │ ├── ObjectiveResourceDateFormatter.h │ └── ObjectiveResourceDateFormatter.m └── Serialize │ ├── NSData+Serialize.h │ ├── NSData+Serialize.m │ ├── NSDate+Serialize.h │ ├── NSDate+Serialize.m │ ├── NSDictionary+KeyTranslation.h │ ├── NSDictionary+KeyTranslation.m │ ├── NSObject+Serialize.h │ ├── NSObject+Serialize.m │ ├── NSString+Serialize.h │ └── NSString+Serialize.m └── src ├── FayeClient.h ├── FayeClient.m ├── FayeMessage.h └── FayeMessage.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/.gitmodules -------------------------------------------------------------------------------- /FayeObjC.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/FayeObjC.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FayeObjC.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/FayeObjC.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FayeObjC.xcodeproj/xcshareddata/xcschemes/FayeObjCFramework.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/FayeObjC.xcodeproj/xcshareddata/xcschemes/FayeObjCFramework.xcscheme -------------------------------------------------------------------------------- /FayeObjC.xcodeproj/xcshareddata/xcschemes/FayeObjCLibrary.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/FayeObjC.xcodeproj/xcshareddata/xcschemes/FayeObjCLibrary.xcscheme -------------------------------------------------------------------------------- /FayeObjC.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/FayeObjC.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FayeObjCFramework/FayeObjCFramework-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/FayeObjCFramework/FayeObjCFramework-Info.plist -------------------------------------------------------------------------------- /FayeObjCFramework/FayeObjCFramework-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/FayeObjCFramework/FayeObjCFramework-Prefix.pch -------------------------------------------------------------------------------- /FayeObjCFramework/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /FayeObjCFrameworkTests/FayeObjCFrameworkTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/FayeObjCFrameworkTests/FayeObjCFrameworkTests-Info.plist -------------------------------------------------------------------------------- /FayeObjCFrameworkTests/FayeObjCFrameworkTests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/FayeObjCFrameworkTests/FayeObjCFrameworkTests-Prefix.pch -------------------------------------------------------------------------------- /FayeObjCFrameworkTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /FayeObjCLibrary/FayeObjCLibrary-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/FayeObjCLibrary/FayeObjCLibrary-Prefix.pch -------------------------------------------------------------------------------- /FayeObjCLibraryTests/FayeObjCLibraryTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/FayeObjCLibraryTests/FayeObjCLibraryTests-Info.plist -------------------------------------------------------------------------------- /FayeObjCLibraryTests/FayeObjCLibraryTests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/FayeObjCLibraryTests/FayeObjCLibraryTests-Prefix.pch -------------------------------------------------------------------------------- /FayeObjCLibraryTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/README.md -------------------------------------------------------------------------------- /assets/fayeMac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/assets/fayeMac.png -------------------------------------------------------------------------------- /assets/fayeMac.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/assets/fayeMac.pxm -------------------------------------------------------------------------------- /assets/fayeMac128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/assets/fayeMac128.png -------------------------------------------------------------------------------- /assets/fayeMac16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/assets/fayeMac16.png -------------------------------------------------------------------------------- /assets/fayeMac256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/assets/fayeMac256.png -------------------------------------------------------------------------------- /assets/fayeMac32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/assets/fayeMac32.png -------------------------------------------------------------------------------- /examples/OSX/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /examples/OSX/English.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/examples/OSX/English.lproj/MainMenu.xib -------------------------------------------------------------------------------- /examples/OSX/Frameworks/YAJL.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /examples/OSX/Frameworks/YAJL.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /examples/OSX/Frameworks/YAJL.framework/Versions/A/Headers/NSBundle+YAJL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/examples/OSX/Frameworks/YAJL.framework/Versions/A/Headers/NSBundle+YAJL.h -------------------------------------------------------------------------------- /examples/OSX/Frameworks/YAJL.framework/Versions/A/Headers/NSObject+YAJL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/examples/OSX/Frameworks/YAJL.framework/Versions/A/Headers/NSObject+YAJL.h -------------------------------------------------------------------------------- /examples/OSX/Frameworks/YAJL.framework/Versions/A/Headers/YAJL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/examples/OSX/Frameworks/YAJL.framework/Versions/A/Headers/YAJL.h -------------------------------------------------------------------------------- /examples/OSX/Frameworks/YAJL.framework/Versions/A/Headers/YAJLDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/examples/OSX/Frameworks/YAJL.framework/Versions/A/Headers/YAJLDocument.h -------------------------------------------------------------------------------- /examples/OSX/Frameworks/YAJL.framework/Versions/A/Headers/YAJLGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/examples/OSX/Frameworks/YAJL.framework/Versions/A/Headers/YAJLGen.h -------------------------------------------------------------------------------- /examples/OSX/Frameworks/YAJL.framework/Versions/A/Headers/YAJLParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/examples/OSX/Frameworks/YAJL.framework/Versions/A/Headers/YAJLParser.h -------------------------------------------------------------------------------- /examples/OSX/Frameworks/YAJL.framework/Versions/A/Headers/yajl_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/examples/OSX/Frameworks/YAJL.framework/Versions/A/Headers/yajl_common.h -------------------------------------------------------------------------------- /examples/OSX/Frameworks/YAJL.framework/Versions/A/Headers/yajl_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/examples/OSX/Frameworks/YAJL.framework/Versions/A/Headers/yajl_gen.h -------------------------------------------------------------------------------- /examples/OSX/Frameworks/YAJL.framework/Versions/A/Headers/yajl_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/examples/OSX/Frameworks/YAJL.framework/Versions/A/Headers/yajl_parse.h -------------------------------------------------------------------------------- /examples/OSX/Frameworks/YAJL.framework/Versions/A/Headers/yajl_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/examples/OSX/Frameworks/YAJL.framework/Versions/A/Headers/yajl_version.h -------------------------------------------------------------------------------- /examples/OSX/Frameworks/YAJL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/examples/OSX/Frameworks/YAJL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /examples/OSX/Frameworks/YAJL.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/examples/OSX/Frameworks/YAJL.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /examples/OSX/Frameworks/YAJL.framework/Versions/A/YAJL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/examples/OSX/Frameworks/YAJL.framework/Versions/A/YAJL -------------------------------------------------------------------------------- /examples/OSX/Frameworks/YAJL.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /examples/OSX/Frameworks/YAJL.framework/YAJL: -------------------------------------------------------------------------------- 1 | Versions/Current/YAJL -------------------------------------------------------------------------------- /examples/OSX/Mac Example App-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/examples/OSX/Mac Example App-Info.plist -------------------------------------------------------------------------------- /examples/OSX/Mac Example App.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/examples/OSX/Mac Example App.icns -------------------------------------------------------------------------------- /examples/OSX/Mac Example App.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/examples/OSX/Mac Example App.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/OSX/Mac Example App.xcodeproj/xcshareddata/xcschemes/Mac Example App.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/examples/OSX/Mac Example App.xcodeproj/xcshareddata/xcschemes/Mac Example App.xcscheme -------------------------------------------------------------------------------- /examples/OSX/Mac Example App_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/examples/OSX/Mac Example App_Prefix.pch -------------------------------------------------------------------------------- /examples/OSX/MainController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/examples/OSX/MainController.h -------------------------------------------------------------------------------- /examples/OSX/MainController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/examples/OSX/MainController.m -------------------------------------------------------------------------------- /examples/OSX/fayeMacAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/examples/OSX/fayeMacAppDelegate.h -------------------------------------------------------------------------------- /examples/OSX/fayeMacAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/examples/OSX/fayeMacAppDelegate.m -------------------------------------------------------------------------------- /examples/OSX/images/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/examples/OSX/images/green.png -------------------------------------------------------------------------------- /examples/OSX/images/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/examples/OSX/images/red.png -------------------------------------------------------------------------------- /examples/OSX/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/examples/OSX/main.m -------------------------------------------------------------------------------- /examples/iOS/Classes/fayeiPhoneAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/examples/iOS/Classes/fayeiPhoneAppDelegate.h -------------------------------------------------------------------------------- /examples/iOS/Classes/fayeiPhoneAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/examples/iOS/Classes/fayeiPhoneAppDelegate.m -------------------------------------------------------------------------------- /examples/iOS/Classes/fayeiPhoneViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/examples/iOS/Classes/fayeiPhoneViewController.h -------------------------------------------------------------------------------- /examples/iOS/Classes/fayeiPhoneViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/examples/iOS/Classes/fayeiPhoneViewController.m -------------------------------------------------------------------------------- /examples/iOS/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/examples/iOS/MainWindow.xib -------------------------------------------------------------------------------- /examples/iOS/fayeiPhoneViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/examples/iOS/fayeiPhoneViewController.xib -------------------------------------------------------------------------------- /examples/iOS/iOS Example App-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/examples/iOS/iOS Example App-Info.plist -------------------------------------------------------------------------------- /examples/iOS/iOS Example App.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/examples/iOS/iOS Example App.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/iOS/iOS Example App.xcodeproj/xcshareddata/xcschemes/iOS Example App.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/examples/iOS/iOS Example App.xcodeproj/xcshareddata/xcschemes/iOS Example App.xcscheme -------------------------------------------------------------------------------- /examples/iOS/iOS Example App_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/examples/iOS/iOS Example App_Prefix.pch -------------------------------------------------------------------------------- /examples/iOS/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/examples/iOS/main.m -------------------------------------------------------------------------------- /examples/server/faye_server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/examples/server/faye_server.js -------------------------------------------------------------------------------- /examples/server/vendor/faye-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/examples/server/vendor/faye-node.js -------------------------------------------------------------------------------- /examples/server/vendor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/examples/server/vendor/package.json -------------------------------------------------------------------------------- /lib/NSDate+UTC/NSDate-UTC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/lib/NSDate+UTC/NSDate-UTC.h -------------------------------------------------------------------------------- /lib/NSDate+UTC/NSDate-UTC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/lib/NSDate+UTC/NSDate-UTC.m -------------------------------------------------------------------------------- /lib/NSObject+PropertySupport/NSObject+PropertySupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/lib/NSObject+PropertySupport/NSObject+PropertySupport.h -------------------------------------------------------------------------------- /lib/NSObject+PropertySupport/NSObject+PropertySupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/lib/NSObject+PropertySupport/NSObject+PropertySupport.m -------------------------------------------------------------------------------- /lib/NSString+FayeInflectionSupport/NSString+FayeInflectionSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/lib/NSString+FayeInflectionSupport/NSString+FayeInflectionSupport.h -------------------------------------------------------------------------------- /lib/NSString+FayeInflectionSupport/NSString+FayeInflectionSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/lib/NSString+FayeInflectionSupport/NSString+FayeInflectionSupport.m -------------------------------------------------------------------------------- /lib/ObjectiveResourceDateFormatter/ObjectiveResourceDateFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/lib/ObjectiveResourceDateFormatter/ObjectiveResourceDateFormatter.h -------------------------------------------------------------------------------- /lib/ObjectiveResourceDateFormatter/ObjectiveResourceDateFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/lib/ObjectiveResourceDateFormatter/ObjectiveResourceDateFormatter.m -------------------------------------------------------------------------------- /lib/Serialize/NSData+Serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/lib/Serialize/NSData+Serialize.h -------------------------------------------------------------------------------- /lib/Serialize/NSData+Serialize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/lib/Serialize/NSData+Serialize.m -------------------------------------------------------------------------------- /lib/Serialize/NSDate+Serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/lib/Serialize/NSDate+Serialize.h -------------------------------------------------------------------------------- /lib/Serialize/NSDate+Serialize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/lib/Serialize/NSDate+Serialize.m -------------------------------------------------------------------------------- /lib/Serialize/NSDictionary+KeyTranslation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/lib/Serialize/NSDictionary+KeyTranslation.h -------------------------------------------------------------------------------- /lib/Serialize/NSDictionary+KeyTranslation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/lib/Serialize/NSDictionary+KeyTranslation.m -------------------------------------------------------------------------------- /lib/Serialize/NSObject+Serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/lib/Serialize/NSObject+Serialize.h -------------------------------------------------------------------------------- /lib/Serialize/NSObject+Serialize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/lib/Serialize/NSObject+Serialize.m -------------------------------------------------------------------------------- /lib/Serialize/NSString+Serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/lib/Serialize/NSString+Serialize.h -------------------------------------------------------------------------------- /lib/Serialize/NSString+Serialize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/lib/Serialize/NSString+Serialize.m -------------------------------------------------------------------------------- /src/FayeClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/src/FayeClient.h -------------------------------------------------------------------------------- /src/FayeClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/src/FayeClient.m -------------------------------------------------------------------------------- /src/FayeMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/src/FayeMessage.h -------------------------------------------------------------------------------- /src/FayeMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/FayeObjC/HEAD/src/FayeMessage.m --------------------------------------------------------------------------------