├── .gitignore ├── Code ├── Abstract │ ├── NoteManagedTableViewController.h │ └── NoteManagedTableViewController.m ├── AppDelegate │ ├── AppDelegate.h │ └── AppDelegate.m ├── Categories │ ├── NSDate+RailsDateFormat.h │ ├── NSDate+RailsDateFormat.m │ ├── NSManagedObject+Sortable.h │ ├── NSManagedObject+Sortable.m │ ├── UINavigationController+BarButtonItem.h │ ├── UINavigationController+BarButtonItem.m │ ├── UITableView+IndexPathFromView.h │ ├── UITableView+IndexPathFromView.m │ ├── UIViewController+FKFormModel.h │ └── UIViewController+FKFormModel.m ├── Cells │ ├── EditableCellView.h │ └── EditableCellView.m ├── Controllers │ ├── ListsNotesSplitViewController.h │ ├── ListsNotesSplitViewController.m │ ├── ListsTableViewController.h │ ├── ListsTableViewController.m │ ├── LoginViewController.h │ ├── LoginViewController.m │ ├── NoteViewController.h │ ├── NoteViewController.m │ ├── NotesTableViewController.h │ ├── NotesTableViewController.m │ ├── SettingsViewController.h │ ├── SettingsViewController.m │ ├── SplashViewController.h │ ├── SplashViewController.m │ └── SplashViewController.xib ├── Helpers │ ├── AttributeStringTextViewManipulation.h │ ├── AttributeStringTextViewManipulation.m │ ├── ExecuteEveryTime.h │ ├── ExecuteEveryTime.m │ ├── HttpClient.h │ ├── HttpClient.m │ ├── MarkdownTextViewManipulation.h │ ├── MarkdownTextViewManipulation.m │ ├── OAuth2Client.h │ ├── OAuth2Client.m │ ├── TextViewManipulation.h │ └── TextViewManipulation.m ├── Models │ ├── List.h │ ├── List.m │ ├── Note.h │ ├── Note.m │ ├── NoteModel.h │ ├── NoteModel.m │ ├── Settings.h │ ├── Settings.m │ ├── User.h │ └── User.m ├── Others │ └── Defines.h └── Views │ ├── CreateInPlaceView.h │ ├── CreateInPlaceView.m │ ├── ToolbarInputAccessoryView.h │ ├── ToolbarInputAccessoryView.m │ ├── UndoRedoView.h │ └── UndoRedoView.m ├── KiwiUnitTest ├── KiwiUnitTest-Info.plist ├── KiwiUnitTest-Prefix.pch ├── KiwiUnitTest.h ├── KiwiUnitTest.m └── en.lproj │ └── InfoPlist.strings ├── LICENSE ├── Notepad.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── cesar4.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── cesar4.xcuserdatad │ └── xcschemes │ ├── KiwiUnitTest.xcscheme │ ├── Notepad.xcscheme │ └── xcschememanagement.plist ├── Notepad.xcworkspace └── contents.xcworkspacedata ├── Notepad ├── Notepad-Info.plist ├── Notepad-Prefix.pch ├── Notepad.xcdatamodeld │ ├── .xccurrentversion │ └── Notepad.xcdatamodel │ │ └── contents ├── en.lproj │ └── InfoPlist.strings └── main.m ├── NotepadTests ├── MarkdownTextViewManipulationSpecs.m ├── NotepadTests-Info.plist ├── TextViewManipulationSpecs.m └── en.lproj │ └── InfoPlist.strings ├── Podfile ├── Podfile.lock ├── Pods ├── A2DynamicDelegate │ ├── A2BlockClosure.h │ ├── A2BlockClosure.m │ ├── A2BlockDelegate.h │ ├── A2BlockDelegate.m │ ├── A2DynamicDelegate.h │ ├── A2DynamicDelegate.m │ ├── A2DynamicDelegate.podspec │ └── README.md ├── AFNetworking │ ├── AFNetworking.podspec │ ├── AFNetworking │ │ ├── AFHTTPClient.h │ │ ├── AFHTTPClient.m │ │ ├── AFHTTPRequestOperation.h │ │ ├── AFHTTPRequestOperation.m │ │ ├── AFImageRequestOperation.h │ │ ├── AFImageRequestOperation.m │ │ ├── AFJSONRequestOperation.h │ │ ├── AFJSONRequestOperation.m │ │ ├── AFNetworkActivityIndicatorManager.h │ │ ├── AFNetworkActivityIndicatorManager.m │ │ ├── AFNetworking.h │ │ ├── AFPropertyListRequestOperation.h │ │ ├── AFPropertyListRequestOperation.m │ │ ├── AFURLConnectionOperation.h │ │ ├── AFURLConnectionOperation.m │ │ ├── AFXMLRequestOperation.h │ │ ├── AFXMLRequestOperation.m │ │ ├── UIImageView+AFNetworking.h │ │ └── UIImageView+AFNetworking.m │ ├── LICENSE │ └── README.md ├── ActionSheetPicker2 │ ├── ActionSheetPicker.h │ ├── LICENSE │ ├── Pickers │ │ ├── AbstractActionSheetPicker.h │ │ ├── AbstractActionSheetPicker.m │ │ ├── ActionSheetDatePicker.h │ │ ├── ActionSheetDatePicker.m │ │ ├── ActionSheetDistancePicker.h │ │ ├── ActionSheetDistancePicker.m │ │ ├── ActionSheetStringPicker.h │ │ ├── ActionSheetStringPicker.m │ │ ├── DistancePickerView.h │ │ └── DistancePickerView.m │ └── README.md ├── BWLongTextViewController │ ├── BWLongTextViewController │ │ ├── BWLongTextViewController.h │ │ └── BWLongTextViewController.m │ └── LICENSE ├── BlocksKit │ ├── BlocksKit.podspec │ ├── BlocksKit │ │ ├── A2BlockDelegate+BlocksKit.h │ │ ├── A2BlockDelegate+BlocksKit.m │ │ ├── BKGlobals.h │ │ ├── BKMacros.h │ │ ├── BlocksKit.h │ │ ├── MessageUI │ │ │ ├── MFMailComposeViewController+BlocksKit.h │ │ │ ├── MFMailComposeViewController+BlocksKit.m │ │ │ ├── MFMessageComposeViewController+BlocksKit.h │ │ │ └── MFMessageComposeViewController+BlocksKit.m │ │ ├── NSArray+BlocksKit.h │ │ ├── NSArray+BlocksKit.m │ │ ├── NSCache+BlocksKit.h │ │ ├── NSCache+BlocksKit.m │ │ ├── NSDictionary+BlocksKit.h │ │ ├── NSDictionary+BlocksKit.m │ │ ├── NSIndexSet+BlocksKit.h │ │ ├── NSIndexSet+BlocksKit.m │ │ ├── NSInvocation+BlocksKit.h │ │ ├── NSInvocation+BlocksKit.m │ │ ├── NSMutableArray+BlocksKit.h │ │ ├── NSMutableArray+BlocksKit.m │ │ ├── NSMutableDictionary+BlocksKit.h │ │ ├── NSMutableDictionary+BlocksKit.m │ │ ├── NSMutableIndexSet+BlocksKit.h │ │ ├── NSMutableIndexSet+BlocksKit.m │ │ ├── NSMutableSet+BlocksKit.h │ │ ├── NSMutableSet+BlocksKit.m │ │ ├── NSObject+AssociatedObjects.h │ │ ├── NSObject+AssociatedObjects.m │ │ ├── NSObject+BlockObservation.h │ │ ├── NSObject+BlockObservation.m │ │ ├── NSObject+BlocksKit.h │ │ ├── NSObject+BlocksKit.m │ │ ├── NSSet+BlocksKit.h │ │ ├── NSSet+BlocksKit.m │ │ ├── NSTimer+BlocksKit.h │ │ ├── NSTimer+BlocksKit.m │ │ ├── NSURLConnection+BlocksKit.h │ │ ├── NSURLConnection+BlocksKit.m │ │ └── UIKit │ │ │ ├── UIActionSheet+BlocksKit.h │ │ │ ├── UIActionSheet+BlocksKit.m │ │ │ ├── UIAlertView+BlocksKit.h │ │ │ ├── UIAlertView+BlocksKit.m │ │ │ ├── UIBarButtonItem+BlocksKit.h │ │ │ ├── UIBarButtonItem+BlocksKit.m │ │ │ ├── UIControl+BlocksKit.h │ │ │ ├── UIControl+BlocksKit.m │ │ │ ├── UIGestureRecognizer+BlocksKit.h │ │ │ ├── UIGestureRecognizer+BlocksKit.m │ │ │ ├── UIPopoverController+BlocksKit.h │ │ │ ├── UIPopoverController+BlocksKit.m │ │ │ ├── UIView+BlocksKit.h │ │ │ ├── UIView+BlocksKit.m │ │ │ ├── UIWebView+BlocksKit.h │ │ │ └── UIWebView+BlocksKit.m │ ├── LICENSE │ └── README.md ├── BuildHeaders │ ├── A2DynamicDelegate │ │ ├── A2BlockClosure.h │ │ ├── A2BlockDelegate.h │ │ └── A2DynamicDelegate.h │ ├── AFNetworking │ │ ├── AFHTTPClient.h │ │ ├── AFHTTPRequestOperation.h │ │ ├── AFImageRequestOperation.h │ │ ├── AFJSONRequestOperation.h │ │ ├── AFNetworkActivityIndicatorManager.h │ │ ├── AFNetworking.h │ │ ├── AFPropertyListRequestOperation.h │ │ ├── AFURLConnectionOperation.h │ │ ├── AFXMLRequestOperation.h │ │ └── UIImageView+AFNetworking.h │ ├── ActionSheetPicker2 │ │ ├── AbstractActionSheetPicker.h │ │ ├── ActionSheetDatePicker.h │ │ ├── ActionSheetDistancePicker.h │ │ ├── ActionSheetPicker.h │ │ ├── ActionSheetStringPicker.h │ │ └── DistancePickerView.h │ ├── BWLongTextViewController │ │ └── BWLongTextViewController.h │ ├── BlocksKit │ │ ├── A2BlockDelegate+BlocksKit.h │ │ ├── BKGlobals.h │ │ ├── BKMacros.h │ │ ├── BlocksKit.h │ │ ├── MFMailComposeViewController+BlocksKit.h │ │ ├── MFMessageComposeViewController+BlocksKit.h │ │ ├── NSArray+BlocksKit.h │ │ ├── NSCache+BlocksKit.h │ │ ├── NSDictionary+BlocksKit.h │ │ ├── NSIndexSet+BlocksKit.h │ │ ├── NSInvocation+BlocksKit.h │ │ ├── NSMutableArray+BlocksKit.h │ │ ├── NSMutableDictionary+BlocksKit.h │ │ ├── NSMutableIndexSet+BlocksKit.h │ │ ├── NSMutableSet+BlocksKit.h │ │ ├── NSObject+AssociatedObjects.h │ │ ├── NSObject+BlockObservation.h │ │ ├── NSObject+BlocksKit.h │ │ ├── NSSet+BlocksKit.h │ │ ├── NSTimer+BlocksKit.h │ │ ├── NSURLConnection+BlocksKit.h │ │ ├── UIActionSheet+BlocksKit.h │ │ ├── UIAlertView+BlocksKit.h │ │ ├── UIBarButtonItem+BlocksKit.h │ │ ├── UIControl+BlocksKit.h │ │ ├── UIGestureRecognizer+BlocksKit.h │ │ ├── UIPopoverController+BlocksKit.h │ │ ├── UIView+BlocksKit.h │ │ └── UIWebView+BlocksKit.h │ ├── CoreParse │ │ ├── CPEOFToken.h │ │ ├── CPErrorToken.h │ │ ├── CPGrammar.h │ │ ├── CPGrammarInternal.h │ │ ├── CPGrammarPrivate.h │ │ ├── CPGrammarSymbol.h │ │ ├── CPIdentifierRecogniser.h │ │ ├── CPIdentifierToken.h │ │ ├── CPItem.h │ │ ├── CPJSONParser.h │ │ ├── CPKeywordRecogniser.h │ │ ├── CPKeywordToken.h │ │ ├── CPLALR1Parser.h │ │ ├── CPLR1Item.h │ │ ├── CPLR1Parser.h │ │ ├── CPNumberRecogniser.h │ │ ├── CPNumberToken.h │ │ ├── CPParser.h │ │ ├── CPQuotedRecogniser.h │ │ ├── CPQuotedToken.h │ │ ├── CPRHSItem.h │ │ ├── CPRHSItemResult.h │ │ ├── CPRecoveryAction.h │ │ ├── CPRule.h │ │ ├── CPSLRParser.h │ │ ├── CPShiftReduceAction.h │ │ ├── CPShiftReduceActionTable.h │ │ ├── CPShiftReduceGotoTable.h │ │ ├── CPShiftReduceParser.h │ │ ├── CPShiftReduceParserProtectedMethods.h │ │ ├── CPShiftReduceState.h │ │ ├── CPSyntaxTree.h │ │ ├── CPToken.h │ │ ├── CPTokenRecogniser.h │ │ ├── CPTokenStream.h │ │ ├── CPTokeniser.h │ │ ├── CPWhiteSpaceRecogniser.h │ │ ├── CPWhiteSpaceToken.h │ │ ├── CoreParse.h │ │ └── NSSetFunctional.h │ ├── JSONKit │ │ └── JSONKit.h │ ├── KSReachability │ │ ├── ARCSafe_MemMgmt.h │ │ └── KSReachability.h │ ├── MagicalRecord │ │ ├── CoreData+MagicalRecord.h │ │ ├── MagicalImportFunctions.h │ │ ├── MagicalRecord+Actions.h │ │ ├── MagicalRecord+ErrorHandling.h │ │ ├── MagicalRecord+Options.h │ │ ├── MagicalRecord+Setup.h │ │ ├── MagicalRecord+ShorthandSupport.h │ │ ├── MagicalRecord+iCloud.h │ │ ├── MagicalRecord.h │ │ ├── MagicalRecordShorthand.h │ │ ├── NSAttributeDescription+MagicalDataImport.h │ │ ├── NSEntityDescription+MagicalDataImport.h │ │ ├── NSManagedObject+MagicalAggregation.h │ │ ├── NSManagedObject+MagicalDataImport.h │ │ ├── NSManagedObject+MagicalFinders.h │ │ ├── NSManagedObject+MagicalRecord.h │ │ ├── NSManagedObject+MagicalRequests.h │ │ ├── NSManagedObjectContext+MagicalObserving.h │ │ ├── NSManagedObjectContext+MagicalRecord.h │ │ ├── NSManagedObjectContext+MagicalSaves.h │ │ ├── NSManagedObjectContext+MagicalThreading.h │ │ ├── NSManagedObjectModel+MagicalRecord.h │ │ ├── NSNumber+MagicalDataImport.h │ │ ├── NSObject+MagicalDataImport.h │ │ ├── NSPersistentStore+MagicalRecord.h │ │ ├── NSPersistentStoreCoordinator+MagicalRecord.h │ │ ├── NSRelationshipDescription+MagicalDataImport.h │ │ └── NSString+MagicalDataImport.h │ ├── SOCKit │ │ └── SOCKit.h │ ├── SSKeychain │ │ └── SSKeychain.h │ ├── SSToolkit │ │ ├── NSArray+SSToolkitAdditions.h │ │ ├── NSBundle+SSToolkitAdditions.h │ │ ├── NSData+SSToolkitAdditions.h │ │ ├── NSDate+SSToolkitAdditions.h │ │ ├── NSDictionary+SSToolkitAdditions.h │ │ ├── NSNumber+SSToolkitAdditions.h │ │ ├── NSString+SSToolkitAdditions.h │ │ ├── NSURL+SSToolkitAdditions.h │ │ ├── SSAddressBarTextField.h │ │ ├── SSAddressBarTextFieldBackgroundView.h │ │ ├── SSAddressBarTextFieldBackgroundViewInnerView.h │ │ ├── SSAnimatedImageView.h │ │ ├── SSBadgeTableViewCell.h │ │ ├── SSBadgeView.h │ │ ├── SSBorderedView.h │ │ ├── SSButton.h │ │ ├── SSCategories.h │ │ ├── SSCollectionView.h │ │ ├── SSCollectionViewController.h │ │ ├── SSCollectionViewExtremityTableViewCell.h │ │ ├── SSCollectionViewInternal.h │ │ ├── SSCollectionViewItem.h │ │ ├── SSCollectionViewItemInternal.h │ │ ├── SSCollectionViewItemTableViewCell.h │ │ ├── SSCollectionViewTableView.h │ │ ├── SSConcurrentOperation.h │ │ ├── SSDrawingUtilities.h │ │ ├── SSGradientView.h │ │ ├── SSHUDView.h │ │ ├── SSHUDWindow.h │ │ ├── SSLabel.h │ │ ├── SSLineView.h │ │ ├── SSLoadingView.h │ │ ├── SSPickerViewController.h │ │ ├── SSPieProgressView.h │ │ ├── SSRateLimit.h │ │ ├── SSRatingPicker.h │ │ ├── SSRatingPickerScrollView.h │ │ ├── SSRatingPickerViewController.h │ │ ├── SSTextField.h │ │ ├── SSTextView.h │ │ ├── SSToolkit.h │ │ ├── SSToolkitDefines.h │ │ ├── SSWebView.h │ │ ├── UIApplication+SSToolkitAdditions.h │ │ ├── UIColor+SSToolkitAdditions.h │ │ ├── UIControl+SSToolkitAdditions.h │ │ ├── UIDevice+SSToolkitAdditions.h │ │ ├── UIImage+SSToolkitAdditions.h │ │ ├── UIScreen+SSToolkitAdditions.h │ │ ├── UIScrollView+SSToolkitAdditions.h │ │ ├── UIView+SSToolkitAdditions.h │ │ └── UIViewController+SSToolkitAdditions.h │ ├── Underscore.m │ │ ├── USArrayWrapper.h │ │ ├── USConstants.h │ │ ├── USDictionaryWrapper.h │ │ └── Underscore.h │ └── libffi │ │ ├── ffi.h │ │ ├── ffi_armv7.h │ │ ├── ffi_common.h │ │ ├── ffi_i386.h │ │ ├── fficonfig.h │ │ ├── fficonfig_armv7.h │ │ ├── fficonfig_i386.h │ │ ├── ffitarget.h │ │ ├── ffitarget_armv7.h │ │ └── ffitarget_i386.h ├── CoreParse │ ├── CoreParse │ │ ├── Built In Parsers │ │ │ ├── CPJSONParser.h │ │ │ └── CPJSONParser.m │ │ ├── CoreParse.h │ │ ├── Grammar │ │ │ ├── CPGrammar.h │ │ │ ├── CPGrammar.m │ │ │ ├── CPGrammarInternal.h │ │ │ ├── CPGrammarInternal.m │ │ │ ├── CPGrammarPrivate.h │ │ │ ├── CPGrammarPrivate.m │ │ │ ├── CPGrammarSymbol.h │ │ │ ├── CPGrammarSymbol.m │ │ │ ├── CPRHSItem.h │ │ │ ├── CPRHSItem.m │ │ │ ├── CPRHSItemResult.h │ │ │ ├── CPRHSItemResult.m │ │ │ ├── CPRule.h │ │ │ └── CPRule.m │ │ ├── NSSetFunctional.h │ │ ├── NSSetFunctional.m │ │ ├── Parsers │ │ │ ├── CPParser.h │ │ │ ├── CPParser.m │ │ │ ├── CPShiftReduceParser.h │ │ │ ├── CPShiftReduceParser.m │ │ │ ├── CPShiftReduceParsers │ │ │ │ ├── CPItem.h │ │ │ │ ├── CPItem.m │ │ │ │ ├── CPLALR1Parser.h │ │ │ │ ├── CPLALR1Parser.m │ │ │ │ ├── CPLR1Item.h │ │ │ │ ├── CPLR1Item.m │ │ │ │ ├── CPLR1Parser.h │ │ │ │ ├── CPLR1Parser.m │ │ │ │ ├── CPSLRParser.h │ │ │ │ ├── CPSLRParser.m │ │ │ │ ├── CPShiftReduceAction.h │ │ │ │ ├── CPShiftReduceAction.m │ │ │ │ ├── CPShiftReduceActionTable.h │ │ │ │ ├── CPShiftReduceActionTable.m │ │ │ │ ├── CPShiftReduceGotoTable.h │ │ │ │ ├── CPShiftReduceGotoTable.m │ │ │ │ ├── CPShiftReduceParserProtectedMethods.h │ │ │ │ ├── CPShiftReduceState.h │ │ │ │ └── CPShiftReduceState.m │ │ │ └── Error Recovery │ │ │ │ ├── CPRecoveryAction.h │ │ │ │ └── CPRecoveryAction.m │ │ ├── Syntax Tree │ │ │ ├── CPSyntaxTree.h │ │ │ └── CPSyntaxTree.m │ │ └── Tokenisation │ │ │ ├── CPTokenStream.h │ │ │ ├── CPTokenStream.m │ │ │ ├── CPTokeniser.h │ │ │ ├── CPTokeniser.m │ │ │ ├── Token Recognisers │ │ │ ├── CPIdentifierRecogniser.h │ │ │ ├── CPIdentifierRecogniser.m │ │ │ ├── CPKeywordRecogniser.h │ │ │ ├── CPKeywordRecogniser.m │ │ │ ├── CPNumberRecogniser.h │ │ │ ├── CPNumberRecogniser.m │ │ │ ├── CPQuotedRecogniser.h │ │ │ ├── CPQuotedRecogniser.m │ │ │ ├── CPTokenRecogniser.h │ │ │ ├── CPWhiteSpaceRecogniser.h │ │ │ └── CPWhiteSpaceRecogniser.m │ │ │ └── Token Types │ │ │ ├── CPEOFToken.h │ │ │ ├── CPEOFToken.m │ │ │ ├── CPErrorToken.h │ │ │ ├── CPErrorToken.m │ │ │ ├── CPIdentifierToken.h │ │ │ ├── CPIdentifierToken.m │ │ │ ├── CPKeywordToken.h │ │ │ ├── CPKeywordToken.m │ │ │ ├── CPNumberToken.h │ │ │ ├── CPNumberToken.m │ │ │ ├── CPQuotedToken.h │ │ │ ├── CPQuotedToken.m │ │ │ ├── CPToken.h │ │ │ ├── CPToken.m │ │ │ ├── CPWhiteSpaceToken.h │ │ │ └── CPWhiteSpaceToken.m │ ├── LICENSE │ └── README.md ├── Documentation │ ├── BlocksKit │ │ ├── docset-installed.txt │ │ ├── docset │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ ├── Documents │ │ │ │ ├── Categories │ │ │ │ │ ├── A2DynamicDelegate+A2BlockDelegate.html │ │ │ │ │ ├── MFMailComposeViewController+BlocksKit.html │ │ │ │ │ ├── MFMessageComposeViewController+BlocksKit.html │ │ │ │ │ ├── NSArray+BlocksKit.html │ │ │ │ │ ├── NSCache+BlocksKit.html │ │ │ │ │ ├── NSDictionary+BlocksKit.html │ │ │ │ │ ├── NSIndexSet+BlocksKit.html │ │ │ │ │ ├── NSInvocation+BlocksKit.html │ │ │ │ │ ├── NSMutableArray+BlocksKit.html │ │ │ │ │ ├── NSMutableDictionary+BlocksKit.html │ │ │ │ │ ├── NSMutableIndexSet+BlocksKit.html │ │ │ │ │ ├── NSMutableSet+BlocksKit.html │ │ │ │ │ ├── NSObject+A2BlockDelegateBlocksKit.html │ │ │ │ │ ├── NSObject+AssociatedObjects.html │ │ │ │ │ ├── NSObject+BlockObservation.html │ │ │ │ │ ├── NSObject+BlocksKit.html │ │ │ │ │ ├── NSSet+BlocksKit.html │ │ │ │ │ ├── NSTimer+BlocksKit.html │ │ │ │ │ ├── NSURLConnection+BlocksKit.html │ │ │ │ │ ├── UIActionSheet+BlocksKit.html │ │ │ │ │ ├── UIAlertView+BlocksKit.html │ │ │ │ │ ├── UIBarButtonItem+BlocksKit.html │ │ │ │ │ ├── UIControl+BlocksKit.html │ │ │ │ │ ├── UIGestureRecognizer+BlocksKit.html │ │ │ │ │ ├── UIPopoverController+BlocksKit.html │ │ │ │ │ ├── UIView+BlocksKit.html │ │ │ │ │ └── UIWebView+BlocksKit.html │ │ │ │ ├── Classes │ │ │ │ │ └── FORCELOAD_.html │ │ │ │ ├── css │ │ │ │ │ ├── styles.css │ │ │ │ │ └── stylesPrint.css │ │ │ │ ├── hierarchy.html │ │ │ │ ├── img │ │ │ │ │ ├── button_bar_background.png │ │ │ │ │ ├── disclosure.png │ │ │ │ │ ├── disclosure_open.png │ │ │ │ │ ├── library_background.png │ │ │ │ │ └── title_background.png │ │ │ │ └── index.html │ │ │ │ ├── Nodes.xml │ │ │ │ ├── Tokens1.xml │ │ │ │ ├── Tokens10.xml │ │ │ │ ├── Tokens11.xml │ │ │ │ ├── Tokens12.xml │ │ │ │ ├── Tokens13.xml │ │ │ │ ├── Tokens14.xml │ │ │ │ ├── Tokens15.xml │ │ │ │ ├── Tokens16.xml │ │ │ │ ├── Tokens17.xml │ │ │ │ ├── Tokens18.xml │ │ │ │ ├── Tokens19.xml │ │ │ │ ├── Tokens2.xml │ │ │ │ ├── Tokens20.xml │ │ │ │ ├── Tokens21.xml │ │ │ │ ├── Tokens22.xml │ │ │ │ ├── Tokens23.xml │ │ │ │ ├── Tokens24.xml │ │ │ │ ├── Tokens25.xml │ │ │ │ ├── Tokens26.xml │ │ │ │ ├── Tokens27.xml │ │ │ │ ├── Tokens28.xml │ │ │ │ ├── Tokens3.xml │ │ │ │ ├── Tokens4.xml │ │ │ │ ├── Tokens5.xml │ │ │ │ ├── Tokens6.xml │ │ │ │ ├── Tokens7.xml │ │ │ │ ├── Tokens8.xml │ │ │ │ ├── Tokens9.xml │ │ │ │ ├── docSet.dsidx │ │ │ │ ├── docSet.mom │ │ │ │ ├── docSet.skidx │ │ │ │ └── docSet.toc │ │ └── html │ │ │ ├── Categories │ │ │ ├── A2DynamicDelegate+A2BlockDelegate.html │ │ │ ├── MFMailComposeViewController+BlocksKit.html │ │ │ ├── MFMessageComposeViewController+BlocksKit.html │ │ │ ├── NSArray+BlocksKit.html │ │ │ ├── NSCache+BlocksKit.html │ │ │ ├── NSDictionary+BlocksKit.html │ │ │ ├── NSIndexSet+BlocksKit.html │ │ │ ├── NSInvocation+BlocksKit.html │ │ │ ├── NSMutableArray+BlocksKit.html │ │ │ ├── NSMutableDictionary+BlocksKit.html │ │ │ ├── NSMutableIndexSet+BlocksKit.html │ │ │ ├── NSMutableSet+BlocksKit.html │ │ │ ├── NSObject+A2BlockDelegateBlocksKit.html │ │ │ ├── NSObject+AssociatedObjects.html │ │ │ ├── NSObject+BlockObservation.html │ │ │ ├── NSObject+BlocksKit.html │ │ │ ├── NSSet+BlocksKit.html │ │ │ ├── NSTimer+BlocksKit.html │ │ │ ├── NSURLConnection+BlocksKit.html │ │ │ ├── UIActionSheet+BlocksKit.html │ │ │ ├── UIAlertView+BlocksKit.html │ │ │ ├── UIBarButtonItem+BlocksKit.html │ │ │ ├── UIControl+BlocksKit.html │ │ │ ├── UIGestureRecognizer+BlocksKit.html │ │ │ ├── UIPopoverController+BlocksKit.html │ │ │ ├── UIView+BlocksKit.html │ │ │ └── UIWebView+BlocksKit.html │ │ │ ├── Classes │ │ │ └── FORCELOAD_.html │ │ │ ├── css │ │ │ ├── styles.css │ │ │ └── stylesPrint.css │ │ │ ├── hierarchy.html │ │ │ ├── img │ │ │ ├── button_bar_background.png │ │ │ ├── disclosure.png │ │ │ ├── disclosure_open.png │ │ │ ├── library_background.png │ │ │ └── title_background.png │ │ │ └── index.html │ └── Kiwi │ │ ├── docset-installed.txt │ │ ├── docset │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ ├── Documents │ │ │ ├── Categories │ │ │ │ ├── NSArray+KiwiHamcrestAdditions.html │ │ │ │ ├── NSInvocation+KWExampleGroup.html │ │ │ │ ├── NSInvocation+KiwiAdditions.html │ │ │ │ ├── NSMethodSignature+KiwiAdditions.html │ │ │ │ ├── NSNumber+KiwiAdditions.html │ │ │ │ ├── NSObject+KWUserDefinedMatchersDefinitions.html │ │ │ │ ├── NSObject+KiwiHamcrestAdditions.html │ │ │ │ ├── NSObject+KiwiMockAdditions.html │ │ │ │ ├── NSObject+KiwiStubAdditions.html │ │ │ │ ├── NSObject+KiwiVerifierAdditions.html │ │ │ │ ├── NSOrderedSet+KiwiHamcrestAdditions.html │ │ │ │ ├── NSSet+KiwiHamcrestAdditions.html │ │ │ │ └── NSValue+KiwiAdditions.html │ │ │ ├── Classes │ │ │ │ ├── KWAfterAllNode.html │ │ │ │ ├── KWAfterEachNode.html │ │ │ │ ├── KWAny.html │ │ │ │ ├── KWAsyncMatcherProbe.html │ │ │ │ ├── KWAsyncVerifier.html │ │ │ │ ├── KWBeBetweenMatcher.html │ │ │ │ ├── KWBeEmptyMatcher.html │ │ │ │ ├── KWBeIdenticalToMatcher.html │ │ │ │ ├── KWBeKindOfClassMatcher.html │ │ │ │ ├── KWBeMemberOfClassMatcher.html │ │ │ │ ├── KWBeNilMatcher.html │ │ │ │ ├── KWBeNonNilMatcher.html │ │ │ │ ├── KWBeSubclassOfClassMatcher.html │ │ │ │ ├── KWBeTrueMatcher.html │ │ │ │ ├── KWBeWithinMatcher.html │ │ │ │ ├── KWBeZeroMatcher.html │ │ │ │ ├── KWBeforeAllNode.html │ │ │ │ ├── KWBeforeEachNode.html │ │ │ │ ├── KWBlock.html │ │ │ │ ├── KWBlockNode.html │ │ │ │ ├── KWBlockRaiseMatcher.html │ │ │ │ ├── KWCallSite.html │ │ │ │ ├── KWCaptureSpy.html │ │ │ │ ├── KWConformToProtocolMatcher.html │ │ │ │ ├── KWContainMatcher.html │ │ │ │ ├── KWContextNode.html │ │ │ │ ├── KWDeviceInfo.html │ │ │ │ ├── KWEqualMatcher.html │ │ │ │ ├── KWExample.html │ │ │ │ ├── KWExampleGroupBuilder.html │ │ │ │ ├── KWExampleSuite.html │ │ │ │ ├── KWExistVerifier.html │ │ │ │ ├── KWFailure.html │ │ │ │ ├── KWFormatter.html │ │ │ │ ├── KWFutureObject.html │ │ │ │ ├── KWHamcrestMatcher.html │ │ │ │ ├── KWHaveMatcher.html │ │ │ │ ├── KWHaveValueMatcher.html │ │ │ │ ├── KWInequalityMatcher.html │ │ │ │ ├── KWInvocationCapturer.html │ │ │ │ ├── KWItNode.html │ │ │ │ ├── KWMatchVerifier.html │ │ │ │ ├── KWMatcher.html │ │ │ │ ├── KWMatcherFactory.html │ │ │ │ ├── KWMatchers.html │ │ │ │ ├── KWMessagePattern.html │ │ │ │ ├── KWMessageTracker.html │ │ │ │ ├── KWMock.html │ │ │ │ ├── KWNull.html │ │ │ │ ├── KWPendingNode.html │ │ │ │ ├── KWProbePoller.html │ │ │ │ ├── KWRaiseMatcher.html │ │ │ │ ├── KWReceiveMatcher.html │ │ │ │ ├── KWRegisterMatchersNode.html │ │ │ │ ├── KWRespondToSelectorMatcher.html │ │ │ │ ├── KWSpec.html │ │ │ │ ├── KWStringContainsMatcher.html │ │ │ │ ├── KWStringPrefixMatcher.html │ │ │ │ ├── KWStub.html │ │ │ │ ├── KWTestCase.html │ │ │ │ ├── KWUserDefinedMatcher.html │ │ │ │ ├── KWUserDefinedMatcherBuilder.html │ │ │ │ ├── KWValue.html │ │ │ │ └── name.html │ │ │ ├── Protocols │ │ │ │ ├── HCMatcher.html │ │ │ │ ├── KWContainmentCountMatcherTerminals.html │ │ │ │ ├── KWExampleDelegate.html │ │ │ │ ├── KWExampleNode.html │ │ │ │ ├── KWExampleNodeVisitor.html │ │ │ │ ├── KWInvocationCapturerDelegate.html │ │ │ │ ├── KWMatching.html │ │ │ │ ├── KWMessageSpying.html │ │ │ │ ├── KWProbe.html │ │ │ │ ├── KWReporting.html │ │ │ │ └── KWVerifying.html │ │ │ ├── css │ │ │ │ ├── styles.css │ │ │ │ └── stylesPrint.css │ │ │ ├── hierarchy.html │ │ │ ├── img │ │ │ │ ├── button_bar_background.png │ │ │ │ ├── disclosure.png │ │ │ │ ├── disclosure_open.png │ │ │ │ ├── library_background.png │ │ │ │ └── title_background.png │ │ │ └── index.html │ │ │ ├── Nodes.xml │ │ │ ├── Tokens1.xml │ │ │ ├── Tokens10.xml │ │ │ ├── Tokens11.xml │ │ │ ├── Tokens12.xml │ │ │ ├── Tokens13.xml │ │ │ ├── Tokens14.xml │ │ │ ├── Tokens15.xml │ │ │ ├── Tokens16.xml │ │ │ ├── Tokens17.xml │ │ │ ├── Tokens18.xml │ │ │ ├── Tokens19.xml │ │ │ ├── Tokens2.xml │ │ │ ├── Tokens20.xml │ │ │ ├── Tokens21.xml │ │ │ ├── Tokens22.xml │ │ │ ├── Tokens23.xml │ │ │ ├── Tokens24.xml │ │ │ ├── Tokens25.xml │ │ │ ├── Tokens26.xml │ │ │ ├── Tokens27.xml │ │ │ ├── Tokens28.xml │ │ │ ├── Tokens29.xml │ │ │ ├── Tokens3.xml │ │ │ ├── Tokens30.xml │ │ │ ├── Tokens31.xml │ │ │ ├── Tokens32.xml │ │ │ ├── Tokens33.xml │ │ │ ├── Tokens34.xml │ │ │ ├── Tokens35.xml │ │ │ ├── Tokens36.xml │ │ │ ├── Tokens37.xml │ │ │ ├── Tokens38.xml │ │ │ ├── Tokens39.xml │ │ │ ├── Tokens4.xml │ │ │ ├── Tokens40.xml │ │ │ ├── Tokens41.xml │ │ │ ├── Tokens42.xml │ │ │ ├── Tokens43.xml │ │ │ ├── Tokens44.xml │ │ │ ├── Tokens45.xml │ │ │ ├── Tokens46.xml │ │ │ ├── Tokens47.xml │ │ │ ├── Tokens48.xml │ │ │ ├── Tokens49.xml │ │ │ ├── Tokens5.xml │ │ │ ├── Tokens50.xml │ │ │ ├── Tokens51.xml │ │ │ ├── Tokens52.xml │ │ │ ├── Tokens53.xml │ │ │ ├── Tokens54.xml │ │ │ ├── Tokens55.xml │ │ │ ├── Tokens56.xml │ │ │ ├── Tokens57.xml │ │ │ ├── Tokens58.xml │ │ │ ├── Tokens59.xml │ │ │ ├── Tokens6.xml │ │ │ ├── Tokens60.xml │ │ │ ├── Tokens61.xml │ │ │ ├── Tokens62.xml │ │ │ ├── Tokens63.xml │ │ │ ├── Tokens64.xml │ │ │ ├── Tokens65.xml │ │ │ ├── Tokens66.xml │ │ │ ├── Tokens67.xml │ │ │ ├── Tokens68.xml │ │ │ ├── Tokens69.xml │ │ │ ├── Tokens7.xml │ │ │ ├── Tokens70.xml │ │ │ ├── Tokens71.xml │ │ │ ├── Tokens72.xml │ │ │ ├── Tokens73.xml │ │ │ ├── Tokens74.xml │ │ │ ├── Tokens75.xml │ │ │ ├── Tokens76.xml │ │ │ ├── Tokens77.xml │ │ │ ├── Tokens78.xml │ │ │ ├── Tokens79.xml │ │ │ ├── Tokens8.xml │ │ │ ├── Tokens80.xml │ │ │ ├── Tokens81.xml │ │ │ ├── Tokens82.xml │ │ │ ├── Tokens83.xml │ │ │ ├── Tokens84.xml │ │ │ ├── Tokens85.xml │ │ │ ├── Tokens86.xml │ │ │ ├── Tokens87.xml │ │ │ ├── Tokens88.xml │ │ │ ├── Tokens9.xml │ │ │ ├── docSet.dsidx │ │ │ ├── docSet.mom │ │ │ ├── docSet.skidx │ │ │ └── docSet.toc │ │ └── html │ │ ├── Categories │ │ ├── NSArray+KiwiHamcrestAdditions.html │ │ ├── NSInvocation+KWExampleGroup.html │ │ ├── NSInvocation+KiwiAdditions.html │ │ ├── NSMethodSignature+KiwiAdditions.html │ │ ├── NSNumber+KiwiAdditions.html │ │ ├── NSObject+KWUserDefinedMatchersDefinitions.html │ │ ├── NSObject+KiwiHamcrestAdditions.html │ │ ├── NSObject+KiwiMockAdditions.html │ │ ├── NSObject+KiwiStubAdditions.html │ │ ├── NSObject+KiwiVerifierAdditions.html │ │ ├── NSOrderedSet+KiwiHamcrestAdditions.html │ │ ├── NSSet+KiwiHamcrestAdditions.html │ │ └── NSValue+KiwiAdditions.html │ │ ├── Classes │ │ ├── KWAfterAllNode.html │ │ ├── KWAfterEachNode.html │ │ ├── KWAny.html │ │ ├── KWAsyncMatcherProbe.html │ │ ├── KWAsyncVerifier.html │ │ ├── KWBeBetweenMatcher.html │ │ ├── KWBeEmptyMatcher.html │ │ ├── KWBeIdenticalToMatcher.html │ │ ├── KWBeKindOfClassMatcher.html │ │ ├── KWBeMemberOfClassMatcher.html │ │ ├── KWBeNilMatcher.html │ │ ├── KWBeNonNilMatcher.html │ │ ├── KWBeSubclassOfClassMatcher.html │ │ ├── KWBeTrueMatcher.html │ │ ├── KWBeWithinMatcher.html │ │ ├── KWBeZeroMatcher.html │ │ ├── KWBeforeAllNode.html │ │ ├── KWBeforeEachNode.html │ │ ├── KWBlock.html │ │ ├── KWBlockNode.html │ │ ├── KWBlockRaiseMatcher.html │ │ ├── KWCallSite.html │ │ ├── KWCaptureSpy.html │ │ ├── KWConformToProtocolMatcher.html │ │ ├── KWContainMatcher.html │ │ ├── KWContextNode.html │ │ ├── KWDeviceInfo.html │ │ ├── KWEqualMatcher.html │ │ ├── KWExample.html │ │ ├── KWExampleGroupBuilder.html │ │ ├── KWExampleSuite.html │ │ ├── KWExistVerifier.html │ │ ├── KWFailure.html │ │ ├── KWFormatter.html │ │ ├── KWFutureObject.html │ │ ├── KWHamcrestMatcher.html │ │ ├── KWHaveMatcher.html │ │ ├── KWHaveValueMatcher.html │ │ ├── KWInequalityMatcher.html │ │ ├── KWInvocationCapturer.html │ │ ├── KWItNode.html │ │ ├── KWMatchVerifier.html │ │ ├── KWMatcher.html │ │ ├── KWMatcherFactory.html │ │ ├── KWMatchers.html │ │ ├── KWMessagePattern.html │ │ ├── KWMessageTracker.html │ │ ├── KWMock.html │ │ ├── KWNull.html │ │ ├── KWPendingNode.html │ │ ├── KWProbePoller.html │ │ ├── KWRaiseMatcher.html │ │ ├── KWReceiveMatcher.html │ │ ├── KWRegisterMatchersNode.html │ │ ├── KWRespondToSelectorMatcher.html │ │ ├── KWSpec.html │ │ ├── KWStringContainsMatcher.html │ │ ├── KWStringPrefixMatcher.html │ │ ├── KWStub.html │ │ ├── KWTestCase.html │ │ ├── KWUserDefinedMatcher.html │ │ ├── KWUserDefinedMatcherBuilder.html │ │ ├── KWValue.html │ │ └── name.html │ │ ├── Protocols │ │ ├── HCMatcher.html │ │ ├── KWContainmentCountMatcherTerminals.html │ │ ├── KWExampleDelegate.html │ │ ├── KWExampleNode.html │ │ ├── KWExampleNodeVisitor.html │ │ ├── KWInvocationCapturerDelegate.html │ │ ├── KWMatching.html │ │ ├── KWMessageSpying.html │ │ ├── KWProbe.html │ │ ├── KWReporting.html │ │ └── KWVerifying.html │ │ ├── css │ │ ├── styles.css │ │ └── stylesPrint.css │ │ ├── hierarchy.html │ │ ├── img │ │ ├── button_bar_background.png │ │ ├── disclosure.png │ │ ├── disclosure_open.png │ │ ├── library_background.png │ │ └── title_background.png │ │ └── index.html ├── Headers │ ├── A2DynamicDelegate │ │ ├── A2BlockClosure.h │ │ ├── A2BlockDelegate.h │ │ └── A2DynamicDelegate.h │ ├── AFNetworking │ │ ├── AFHTTPClient.h │ │ ├── AFHTTPRequestOperation.h │ │ ├── AFImageRequestOperation.h │ │ ├── AFJSONRequestOperation.h │ │ ├── AFNetworkActivityIndicatorManager.h │ │ ├── AFNetworking.h │ │ ├── AFPropertyListRequestOperation.h │ │ ├── AFURLConnectionOperation.h │ │ ├── AFXMLRequestOperation.h │ │ └── UIImageView+AFNetworking.h │ ├── ActionSheetPicker2 │ │ ├── AbstractActionSheetPicker.h │ │ ├── ActionSheetDatePicker.h │ │ ├── ActionSheetDistancePicker.h │ │ ├── ActionSheetPicker.h │ │ ├── ActionSheetStringPicker.h │ │ └── DistancePickerView.h │ ├── BWLongTextViewController │ │ └── BWLongTextViewController.h │ ├── BlocksKit │ │ ├── A2BlockDelegate+BlocksKit.h │ │ ├── BKGlobals.h │ │ ├── BKMacros.h │ │ ├── BlocksKit.h │ │ ├── MFMailComposeViewController+BlocksKit.h │ │ ├── MFMessageComposeViewController+BlocksKit.h │ │ ├── NSArray+BlocksKit.h │ │ ├── NSCache+BlocksKit.h │ │ ├── NSDictionary+BlocksKit.h │ │ ├── NSIndexSet+BlocksKit.h │ │ ├── NSInvocation+BlocksKit.h │ │ ├── NSMutableArray+BlocksKit.h │ │ ├── NSMutableDictionary+BlocksKit.h │ │ ├── NSMutableIndexSet+BlocksKit.h │ │ ├── NSMutableSet+BlocksKit.h │ │ ├── NSObject+AssociatedObjects.h │ │ ├── NSObject+BlockObservation.h │ │ ├── NSObject+BlocksKit.h │ │ ├── NSSet+BlocksKit.h │ │ ├── NSTimer+BlocksKit.h │ │ ├── NSURLConnection+BlocksKit.h │ │ ├── UIActionSheet+BlocksKit.h │ │ ├── UIAlertView+BlocksKit.h │ │ ├── UIBarButtonItem+BlocksKit.h │ │ ├── UIControl+BlocksKit.h │ │ ├── UIGestureRecognizer+BlocksKit.h │ │ ├── UIPopoverController+BlocksKit.h │ │ ├── UIView+BlocksKit.h │ │ └── UIWebView+BlocksKit.h │ ├── CoreParse │ │ ├── CPEOFToken.h │ │ ├── CPErrorToken.h │ │ ├── CPGrammar.h │ │ ├── CPGrammarInternal.h │ │ ├── CPGrammarPrivate.h │ │ ├── CPGrammarSymbol.h │ │ ├── CPIdentifierRecogniser.h │ │ ├── CPIdentifierToken.h │ │ ├── CPItem.h │ │ ├── CPJSONParser.h │ │ ├── CPKeywordRecogniser.h │ │ ├── CPKeywordToken.h │ │ ├── CPLALR1Parser.h │ │ ├── CPLR1Item.h │ │ ├── CPLR1Parser.h │ │ ├── CPNumberRecogniser.h │ │ ├── CPNumberToken.h │ │ ├── CPParser.h │ │ ├── CPQuotedRecogniser.h │ │ ├── CPQuotedToken.h │ │ ├── CPRHSItem.h │ │ ├── CPRHSItemResult.h │ │ ├── CPRecoveryAction.h │ │ ├── CPRule.h │ │ ├── CPSLRParser.h │ │ ├── CPShiftReduceAction.h │ │ ├── CPShiftReduceActionTable.h │ │ ├── CPShiftReduceGotoTable.h │ │ ├── CPShiftReduceParser.h │ │ ├── CPShiftReduceParserProtectedMethods.h │ │ ├── CPShiftReduceState.h │ │ ├── CPSyntaxTree.h │ │ ├── CPToken.h │ │ ├── CPTokenRecogniser.h │ │ ├── CPTokenStream.h │ │ ├── CPTokeniser.h │ │ ├── CPWhiteSpaceRecogniser.h │ │ ├── CPWhiteSpaceToken.h │ │ ├── CoreParse.h │ │ └── NSSetFunctional.h │ ├── JSONKit │ │ └── JSONKit.h │ ├── KSReachability │ │ ├── ARCSafe_MemMgmt.h │ │ └── KSReachability.h │ ├── MagicalRecord │ │ ├── CoreData+MagicalRecord.h │ │ ├── MagicalImportFunctions.h │ │ ├── MagicalRecord+Actions.h │ │ ├── MagicalRecord+ErrorHandling.h │ │ ├── MagicalRecord+Options.h │ │ ├── MagicalRecord+Setup.h │ │ ├── MagicalRecord+ShorthandSupport.h │ │ ├── MagicalRecord+iCloud.h │ │ ├── MagicalRecord.h │ │ ├── MagicalRecordShorthand.h │ │ ├── NSAttributeDescription+MagicalDataImport.h │ │ ├── NSEntityDescription+MagicalDataImport.h │ │ ├── NSManagedObject+MagicalAggregation.h │ │ ├── NSManagedObject+MagicalDataImport.h │ │ ├── NSManagedObject+MagicalFinders.h │ │ ├── NSManagedObject+MagicalRecord.h │ │ ├── NSManagedObject+MagicalRequests.h │ │ ├── NSManagedObjectContext+MagicalObserving.h │ │ ├── NSManagedObjectContext+MagicalRecord.h │ │ ├── NSManagedObjectContext+MagicalSaves.h │ │ ├── NSManagedObjectContext+MagicalThreading.h │ │ ├── NSManagedObjectModel+MagicalRecord.h │ │ ├── NSNumber+MagicalDataImport.h │ │ ├── NSObject+MagicalDataImport.h │ │ ├── NSPersistentStore+MagicalRecord.h │ │ ├── NSPersistentStoreCoordinator+MagicalRecord.h │ │ ├── NSRelationshipDescription+MagicalDataImport.h │ │ └── NSString+MagicalDataImport.h │ ├── SOCKit │ │ └── SOCKit.h │ ├── SSKeychain │ │ └── SSKeychain.h │ ├── SSToolkit │ │ ├── NSArray+SSToolkitAdditions.h │ │ ├── NSBundle+SSToolkitAdditions.h │ │ ├── NSData+SSToolkitAdditions.h │ │ ├── NSDate+SSToolkitAdditions.h │ │ ├── NSDictionary+SSToolkitAdditions.h │ │ ├── NSNumber+SSToolkitAdditions.h │ │ ├── NSString+SSToolkitAdditions.h │ │ ├── NSURL+SSToolkitAdditions.h │ │ ├── SSAddressBarTextField.h │ │ ├── SSAddressBarTextFieldBackgroundView.h │ │ ├── SSAddressBarTextFieldBackgroundViewInnerView.h │ │ ├── SSAnimatedImageView.h │ │ ├── SSBadgeTableViewCell.h │ │ ├── SSBadgeView.h │ │ ├── SSBorderedView.h │ │ ├── SSButton.h │ │ ├── SSCategories.h │ │ ├── SSCollectionView.h │ │ ├── SSCollectionViewController.h │ │ ├── SSCollectionViewExtremityTableViewCell.h │ │ ├── SSCollectionViewInternal.h │ │ ├── SSCollectionViewItem.h │ │ ├── SSCollectionViewItemInternal.h │ │ ├── SSCollectionViewItemTableViewCell.h │ │ ├── SSCollectionViewTableView.h │ │ ├── SSConcurrentOperation.h │ │ ├── SSDrawingUtilities.h │ │ ├── SSGradientView.h │ │ ├── SSHUDView.h │ │ ├── SSHUDWindow.h │ │ ├── SSLabel.h │ │ ├── SSLineView.h │ │ ├── SSLoadingView.h │ │ ├── SSPickerViewController.h │ │ ├── SSPieProgressView.h │ │ ├── SSRateLimit.h │ │ ├── SSRatingPicker.h │ │ ├── SSRatingPickerScrollView.h │ │ ├── SSRatingPickerViewController.h │ │ ├── SSTextField.h │ │ ├── SSTextView.h │ │ ├── SSToolkit.h │ │ ├── SSToolkitDefines.h │ │ ├── SSWebView.h │ │ ├── UIApplication+SSToolkitAdditions.h │ │ ├── UIColor+SSToolkitAdditions.h │ │ ├── UIControl+SSToolkitAdditions.h │ │ ├── UIDevice+SSToolkitAdditions.h │ │ ├── UIImage+SSToolkitAdditions.h │ │ ├── UIScreen+SSToolkitAdditions.h │ │ ├── UIScrollView+SSToolkitAdditions.h │ │ ├── UIView+SSToolkitAdditions.h │ │ └── UIViewController+SSToolkitAdditions.h │ ├── Underscore.m │ │ ├── USArrayWrapper.h │ │ ├── USConstants.h │ │ ├── USDictionaryWrapper.h │ │ └── Underscore.h │ └── libffi │ │ ├── ffi.h │ │ ├── ffi_armv7.h │ │ ├── ffi_common.h │ │ ├── ffi_i386.h │ │ ├── fficonfig.h │ │ ├── fficonfig_armv7.h │ │ ├── fficonfig_i386.h │ │ ├── ffitarget.h │ │ ├── ffitarget_armv7.h │ │ └── ffitarget_i386.h ├── JSONKit │ ├── JSONKit.h │ ├── JSONKit.m │ └── README.md ├── KSReachability │ ├── ARCSafe_MemMgmt.h │ ├── KSReachability.h │ ├── KSReachability.m │ └── README.md ├── Local Podspecs │ ├── BWObjectRouter.podspec │ ├── BWObjectSerializer.podspec │ ├── BWSelectViewController.podspec │ └── FormKit.m.podspec ├── MagicalRecord │ ├── LICENSE │ ├── MagicalRecord.podspec │ ├── MagicalRecord │ │ ├── Categories │ │ │ ├── DataImport │ │ │ │ ├── MagicalImportFunctions.h │ │ │ │ ├── MagicalImportFunctions.m │ │ │ │ ├── NSAttributeDescription+MagicalDataImport.h │ │ │ │ ├── NSAttributeDescription+MagicalDataImport.m │ │ │ │ ├── NSEntityDescription+MagicalDataImport.h │ │ │ │ ├── NSEntityDescription+MagicalDataImport.m │ │ │ │ ├── NSNumber+MagicalDataImport.h │ │ │ │ ├── NSNumber+MagicalDataImport.m │ │ │ │ ├── NSObject+MagicalDataImport.h │ │ │ │ ├── NSObject+MagicalDataImport.m │ │ │ │ ├── NSRelationshipDescription+MagicalDataImport.h │ │ │ │ ├── NSRelationshipDescription+MagicalDataImport.m │ │ │ │ ├── NSString+MagicalDataImport.h │ │ │ │ └── NSString+MagicalDataImport.m │ │ │ ├── NSManagedObject │ │ │ │ ├── NSManagedObject+MagicalAggregation.h │ │ │ │ ├── NSManagedObject+MagicalAggregation.m │ │ │ │ ├── NSManagedObject+MagicalDataImport.h │ │ │ │ ├── NSManagedObject+MagicalDataImport.m │ │ │ │ ├── NSManagedObject+MagicalFinders.h │ │ │ │ ├── NSManagedObject+MagicalFinders.m │ │ │ │ ├── NSManagedObject+MagicalRecord.h │ │ │ │ ├── NSManagedObject+MagicalRecord.m │ │ │ │ ├── NSManagedObject+MagicalRequests.h │ │ │ │ └── NSManagedObject+MagicalRequests.m │ │ │ ├── NSManagedObjectContext │ │ │ │ ├── NSManagedObjectContext+MagicalObserving.h │ │ │ │ ├── NSManagedObjectContext+MagicalObserving.m │ │ │ │ ├── NSManagedObjectContext+MagicalRecord.h │ │ │ │ ├── NSManagedObjectContext+MagicalRecord.m │ │ │ │ ├── NSManagedObjectContext+MagicalSaves.h │ │ │ │ ├── NSManagedObjectContext+MagicalSaves.m │ │ │ │ ├── NSManagedObjectContext+MagicalThreading.h │ │ │ │ └── NSManagedObjectContext+MagicalThreading.m │ │ │ ├── NSManagedObjectModel+MagicalRecord.h │ │ │ ├── NSManagedObjectModel+MagicalRecord.m │ │ │ ├── NSPersistentStore+MagicalRecord.h │ │ │ ├── NSPersistentStore+MagicalRecord.m │ │ │ ├── NSPersistentStoreCoordinator+MagicalRecord.h │ │ │ └── NSPersistentStoreCoordinator+MagicalRecord.m │ │ ├── Core │ │ │ ├── MagicalRecord+Actions.h │ │ │ ├── MagicalRecord+Actions.m │ │ │ ├── MagicalRecord+ErrorHandling.h │ │ │ ├── MagicalRecord+ErrorHandling.m │ │ │ ├── MagicalRecord+Options.h │ │ │ ├── MagicalRecord+Options.m │ │ │ ├── MagicalRecord+Setup.h │ │ │ ├── MagicalRecord+Setup.m │ │ │ ├── MagicalRecord+ShorthandSupport.h │ │ │ ├── MagicalRecord+ShorthandSupport.m │ │ │ ├── MagicalRecord+iCloud.h │ │ │ ├── MagicalRecord+iCloud.m │ │ │ ├── MagicalRecord.h │ │ │ ├── MagicalRecord.m │ │ │ └── MagicalRecordShorthand.h │ │ └── CoreData+MagicalRecord.h │ └── README.md ├── Nimbus │ ├── LICENSE │ ├── NOTICE │ ├── README.mdown │ └── src │ │ ├── core │ │ └── src │ │ │ ├── NIBlocks.h │ │ │ ├── NICommonMetrics.h │ │ │ ├── NICommonMetrics.m │ │ │ ├── NIDataStructures.h │ │ │ ├── NIDataStructures.m │ │ │ ├── NIDebuggingTools.h │ │ │ ├── NIDebuggingTools.m │ │ │ ├── NIDeviceOrientation.h │ │ │ ├── NIDeviceOrientation.m │ │ │ ├── NIError.h │ │ │ ├── NIError.m │ │ │ ├── NIFoundationMethods.h │ │ │ ├── NIFoundationMethods.m │ │ │ ├── NIInMemoryCache.h │ │ │ ├── NIInMemoryCache.m │ │ │ ├── NINavigationAppearance.h │ │ │ ├── NINavigationAppearance.m │ │ │ ├── NINetworkActivity.h │ │ │ ├── NINetworkActivity.m │ │ │ ├── NINonEmptyCollectionTesting.h │ │ │ ├── NINonEmptyCollectionTesting.m │ │ │ ├── NINonRetainingCollections.h │ │ │ ├── NINonRetainingCollections.m │ │ │ ├── NIOperations+Subclassing.h │ │ │ ├── NIOperations.h │ │ │ ├── NIOperations.m │ │ │ ├── NIPaths.h │ │ │ ├── NIPaths.m │ │ │ ├── NIPreprocessorMacros.h │ │ │ ├── NIRuntimeClassModifications.h │ │ │ ├── NIRuntimeClassModifications.m │ │ │ ├── NISDKAvailability.h │ │ │ ├── NISDKAvailability.m │ │ │ ├── NIState.h │ │ │ ├── NIState.m │ │ │ ├── NIViewRecycler.h │ │ │ ├── NIViewRecycler.m │ │ │ ├── NSData+NimbusCore.h │ │ │ ├── NSData+NimbusCore.m │ │ │ ├── NSString+NimbusCore.h │ │ │ ├── NSString+NimbusCore.m │ │ │ ├── NimbusCore+Additions.h │ │ │ ├── NimbusCore+Namespace.h │ │ │ ├── NimbusCore.h │ │ │ ├── UIView+NimbusCore.h │ │ │ └── UIView+NimbusCore.m │ │ ├── interapp │ │ └── src │ │ │ ├── NIInterapp.h │ │ │ ├── NIInterapp.m │ │ │ ├── NimbusInterapp+Namespace.h │ │ │ └── NimbusInterapp.h │ │ └── webcontroller │ │ ├── resources │ │ └── NimbusWebController.bundle │ │ │ └── gfx │ │ │ ├── backIcon.png │ │ │ ├── backIcon@2x.png │ │ │ ├── forwardIcon.png │ │ │ └── forwardIcon@2x.png │ │ └── src │ │ ├── NIWebController.h │ │ ├── NIWebController.m │ │ ├── NimbusWebController+Namespace.h │ │ └── NimbusWebController.h ├── ParseKit │ ├── License.txt │ ├── README.textile │ ├── include │ │ └── ParseKit │ │ │ ├── PKAlternation.h │ │ │ ├── PKAny.h │ │ │ ├── PKAssembly.h │ │ │ ├── PKCaseInsensitiveLiteral.h │ │ │ ├── PKChar.h │ │ │ ├── PKCharacterAssembly.h │ │ │ ├── PKCollectionParser.h │ │ │ ├── PKComment.h │ │ │ ├── PKCommentState.h │ │ │ ├── PKDelimitState.h │ │ │ ├── PKDelimitedString.h │ │ │ ├── PKDifference.h │ │ │ ├── PKDigit.h │ │ │ ├── PKEmailState.h │ │ │ ├── PKEmpty.h │ │ │ ├── PKHashtagState.h │ │ │ ├── PKIntersection.h │ │ │ ├── PKLetter.h │ │ │ ├── PKLiteral.h │ │ │ ├── PKLowercaseWord.h │ │ │ ├── PKMultiLineCommentState.h │ │ │ ├── PKNegation.h │ │ │ ├── PKNumber.h │ │ │ ├── PKNumberState.h │ │ │ ├── PKParser.h │ │ │ ├── PKParserFactory.h │ │ │ ├── PKPattern.h │ │ │ ├── PKQuoteState.h │ │ │ ├── PKQuotedString.h │ │ │ ├── PKReader.h │ │ │ ├── PKRepetition.h │ │ │ ├── PKSequence.h │ │ │ ├── PKSingleLineCommentState.h │ │ │ ├── PKSpecificChar.h │ │ │ ├── PKSymbol.h │ │ │ ├── PKSymbolNode.h │ │ │ ├── PKSymbolRootNode.h │ │ │ ├── PKSymbolState.h │ │ │ ├── PKTerminal.h │ │ │ ├── PKToken.h │ │ │ ├── PKTokenArraySource.h │ │ │ ├── PKTokenAssembly.h │ │ │ ├── PKTokenizer.h │ │ │ ├── PKTokenizerState.h │ │ │ ├── PKTrack.h │ │ │ ├── PKTrackException.h │ │ │ ├── PKTwitterState.h │ │ │ ├── PKTypes.h │ │ │ ├── PKURLState.h │ │ │ ├── PKUppercaseWord.h │ │ │ ├── PKWhitespace.h │ │ │ ├── PKWhitespaceState.h │ │ │ ├── PKWord.h │ │ │ ├── PKWordState.h │ │ │ └── ParseKit.h │ └── src │ │ ├── NSArray+ParseKitAdditions.h │ │ ├── NSArray+ParseKitAdditions.m │ │ ├── NSString+ParseKitAdditions.h │ │ ├── NSString+ParseKitAdditions.m │ │ ├── PKAlternation.m │ │ ├── PKAny.m │ │ ├── PKAssembly.m │ │ ├── PKCaseInsensitiveLiteral.m │ │ ├── PKChar.m │ │ ├── PKCharacterAssembly.m │ │ ├── PKCollectionParser.m │ │ ├── PKComment.m │ │ ├── PKCommentState.m │ │ ├── PKDelimitState.m │ │ ├── PKDelimitedString.m │ │ ├── PKDifference.m │ │ ├── PKDigit.m │ │ ├── PKEmailState.m │ │ ├── PKEmpty.m │ │ ├── PKGrammarParser.h │ │ ├── PKGrammarParser.m │ │ ├── PKHashtagState.m │ │ ├── PKIntersection.m │ │ ├── PKLetter.m │ │ ├── PKLiteral.m │ │ ├── PKLowercaseWord.m │ │ ├── PKMultiLineCommentState.m │ │ ├── PKNegation.m │ │ ├── PKNumber.m │ │ ├── PKNumberState.m │ │ ├── PKParser.m │ │ ├── PKParserFactory.m │ │ ├── PKPattern.m │ │ ├── PKQuoteState.m │ │ ├── PKQuotedString.m │ │ ├── PKReader.m │ │ ├── PKRepetition.m │ │ ├── PKSequence.m │ │ ├── PKSingleLineCommentState.m │ │ ├── PKSpecificChar.m │ │ ├── PKSymbol.m │ │ ├── PKSymbolNode.m │ │ ├── PKSymbolRootNode.m │ │ ├── PKSymbolState.m │ │ ├── PKTerminal.m │ │ ├── PKToken.m │ │ ├── PKTokenArraySource.m │ │ ├── PKTokenAssembly.m │ │ ├── PKTokenizer.m │ │ ├── PKTokenizerState.m │ │ ├── PKTrack.m │ │ ├── PKTrackException.m │ │ ├── PKTwitterState.m │ │ ├── PKURLState.m │ │ ├── PKUppercaseWord.m │ │ ├── PKWhitespace.m │ │ ├── PKWhitespaceState.m │ │ ├── PKWord.m │ │ ├── PKWordState.m │ │ ├── RegexKitLite.h │ │ └── RegexKitLite.m ├── Pods-Acknowledgements.markdown ├── Pods-Acknowledgements.plist ├── Pods-NotepadTests-Acknowledgements.markdown ├── Pods-NotepadTests-Acknowledgements.plist ├── Pods-NotepadTests-prefix.pch ├── Pods-NotepadTests-resources.sh ├── Pods-NotepadTests.xcconfig ├── Pods-prefix.pch ├── Pods-resources.sh ├── Pods.xcconfig ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── cesar4.xcuserdatad │ │ └── xcschemes │ │ ├── Pods-NotepadTests.xcscheme │ │ ├── Pods.xcscheme │ │ └── xcschememanagement.plist ├── PodsDummy.m ├── PodsDummy_Pods.m ├── PodsDummy_Pods_NotepadTests.m ├── Reachability │ ├── README.md │ ├── Reachability.h │ ├── Reachability.m │ └── Reachability.podspec ├── SOCKit │ ├── LICENSE │ ├── NOTICE │ ├── README.mdown │ ├── SOCKit.h │ ├── SOCKit.m │ └── SOCKit.podspec ├── SSKeychain │ ├── LICENSE │ ├── SSKeychain.h │ └── SSKeychain.m ├── SSToolkit │ ├── Assets │ │ ├── Images │ │ │ ├── SSAddressBarTextFieldBackground.png │ │ │ ├── SSAddressBarTextFieldBackground@2x.png │ │ │ ├── SSAddressBarTextFieldReload.png │ │ │ ├── SSAddressBarTextFieldReload@2x.png │ │ │ ├── SSAddressBarTextFieldStop.png │ │ │ ├── SSAddressBarTextFieldStop@2x.png │ │ │ ├── SSVignetteiPad.png │ │ │ ├── SSVignetteiPhone.png │ │ │ ├── SSVignetteiPhone@2x.png │ │ │ ├── UISegmentBarButton.png │ │ │ ├── UISegmentBarButton@2x.png │ │ │ ├── UISegmentBarButtonHighlighted.png │ │ │ ├── UISegmentBarButtonHighlighted@2x.png │ │ │ ├── UISegmentBarDivider.png │ │ │ ├── UISegmentBarDivider@2x.png │ │ │ ├── UISegmentBarDividerHighlighted.png │ │ │ ├── UISegmentBarDividerHighlighted@2x.png │ │ │ ├── gray-star.png │ │ │ ├── gray-star@2x.png │ │ │ ├── hud-check.png │ │ │ ├── hud-check@2x.png │ │ │ ├── hud-x.png │ │ │ ├── hud-x@2x.png │ │ │ ├── orange-star.png │ │ │ └── orange-star@2x.png │ │ ├── SSToolkitResources-Info.plist │ │ ├── de.lproj │ │ │ └── SSToolkit.strings │ │ ├── en.lproj │ │ │ └── SSToolkit.strings │ │ ├── es.lproj │ │ │ └── SSToolkit.strings │ │ ├── fr.lproj │ │ │ └── SSToolkit.strings │ │ ├── id.lproj │ │ │ └── SSToolkit.strings │ │ ├── it.lproj │ │ │ └── SSToolkit.strings │ │ ├── ja.lproj │ │ │ └── SSToolkit.strings │ │ ├── ko.lproj │ │ │ └── SSToolkit.strings │ │ ├── ms.lproj │ │ │ └── SSToolkit.strings │ │ ├── nl.lproj │ │ │ └── SSToolkit.strings │ │ ├── pt.lproj │ │ │ └── SSToolkit.strings │ │ ├── pt_PT.lproj │ │ │ └── SSToolkit.strings │ │ ├── ru.lproj │ │ │ └── SSToolkit.strings │ │ ├── sv.lproj │ │ │ └── SSToolkit.strings │ │ ├── zh_Hans.lproj │ │ │ └── SSToolkit.strings │ │ └── zh_Hant.lproj │ │ │ └── SSToolkit.strings │ ├── LICENSE │ ├── Readme.markdown │ ├── SSToolkit.podspec │ └── SSToolkit │ │ ├── NSArray+SSToolkitAdditions.h │ │ ├── NSArray+SSToolkitAdditions.m │ │ ├── NSBundle+SSToolkitAdditions.h │ │ ├── NSBundle+SSToolkitAdditions.m │ │ ├── NSData+SSToolkitAdditions.h │ │ ├── NSData+SSToolkitAdditions.m │ │ ├── NSDate+SSToolkitAdditions.h │ │ ├── NSDate+SSToolkitAdditions.m │ │ ├── NSDictionary+SSToolkitAdditions.h │ │ ├── NSDictionary+SSToolkitAdditions.m │ │ ├── NSNumber+SSToolkitAdditions.h │ │ ├── NSNumber+SSToolkitAdditions.m │ │ ├── NSString+SSToolkitAdditions.h │ │ ├── NSString+SSToolkitAdditions.m │ │ ├── NSURL+SSToolkitAdditions.h │ │ ├── NSURL+SSToolkitAdditions.m │ │ ├── SSAddressBarTextField.h │ │ ├── SSAddressBarTextField.m │ │ ├── SSAddressBarTextFieldBackgroundView.h │ │ ├── SSAddressBarTextFieldBackgroundView.m │ │ ├── SSAddressBarTextFieldBackgroundViewInnerView.h │ │ ├── SSAddressBarTextFieldBackgroundViewInnerView.m │ │ ├── SSAnimatedImageView.h │ │ ├── SSAnimatedImageView.m │ │ ├── SSBadgeTableViewCell.h │ │ ├── SSBadgeTableViewCell.m │ │ ├── SSBadgeView.h │ │ ├── SSBadgeView.m │ │ ├── SSBorderedView.h │ │ ├── SSBorderedView.m │ │ ├── SSButton.h │ │ ├── SSButton.m │ │ ├── SSCategories.h │ │ ├── SSCollectionView.h │ │ ├── SSCollectionView.m │ │ ├── SSCollectionViewController.h │ │ ├── SSCollectionViewController.m │ │ ├── SSCollectionViewExtremityTableViewCell.h │ │ ├── SSCollectionViewExtremityTableViewCell.m │ │ ├── SSCollectionViewInternal.h │ │ ├── SSCollectionViewItem.h │ │ ├── SSCollectionViewItem.m │ │ ├── SSCollectionViewItemInternal.h │ │ ├── SSCollectionViewItemTableViewCell.h │ │ ├── SSCollectionViewItemTableViewCell.m │ │ ├── SSCollectionViewTableView.h │ │ ├── SSCollectionViewTableView.m │ │ ├── SSConcurrentOperation.h │ │ ├── SSConcurrentOperation.m │ │ ├── SSDrawingUtilities.h │ │ ├── SSDrawingUtilities.m │ │ ├── SSGradientView.h │ │ ├── SSGradientView.m │ │ ├── SSHUDView.h │ │ ├── SSHUDView.m │ │ ├── SSHUDWindow.h │ │ ├── SSHUDWindow.m │ │ ├── SSLabel.h │ │ ├── SSLabel.m │ │ ├── SSLineView.h │ │ ├── SSLineView.m │ │ ├── SSLoadingView.h │ │ ├── SSLoadingView.m │ │ ├── SSPickerViewController.h │ │ ├── SSPickerViewController.m │ │ ├── SSPieProgressView.h │ │ ├── SSPieProgressView.m │ │ ├── SSRateLimit.h │ │ ├── SSRateLimit.m │ │ ├── SSRatingPicker.h │ │ ├── SSRatingPicker.m │ │ ├── SSRatingPickerScrollView.h │ │ ├── SSRatingPickerScrollView.m │ │ ├── SSRatingPickerViewController.h │ │ ├── SSRatingPickerViewController.m │ │ ├── SSTextField.h │ │ ├── SSTextField.m │ │ ├── SSTextView.h │ │ ├── SSTextView.m │ │ ├── SSToolkit.h │ │ ├── SSToolkitDefines.h │ │ ├── SSToolkitDefines.m │ │ ├── SSWebView.h │ │ ├── SSWebView.m │ │ ├── UIApplication+SSToolkitAdditions.h │ │ ├── UIApplication+SSToolkitAdditions.m │ │ ├── UIColor+SSToolkitAdditions.h │ │ ├── UIColor+SSToolkitAdditions.m │ │ ├── UIControl+SSToolkitAdditions.h │ │ ├── UIControl+SSToolkitAdditions.m │ │ ├── UIDevice+SSToolkitAdditions.h │ │ ├── UIDevice+SSToolkitAdditions.m │ │ ├── UIImage+SSToolkitAdditions.h │ │ ├── UIImage+SSToolkitAdditions.m │ │ ├── UIScreen+SSToolkitAdditions.h │ │ ├── UIScreen+SSToolkitAdditions.m │ │ ├── UIScrollView+SSToolkitAdditions.h │ │ ├── UIScrollView+SSToolkitAdditions.m │ │ ├── UIView+SSToolkitAdditions.h │ │ ├── UIView+SSToolkitAdditions.m │ │ ├── UIViewController+SSToolkitAdditions.h │ │ └── UIViewController+SSToolkitAdditions.m ├── TestFlightSDK │ ├── README.txt │ ├── TestFlight.h │ └── libTestFlight.a ├── Underscore.m │ ├── LICENSE │ ├── README.md │ └── Underscore │ │ ├── USArrayWrapper.h │ │ ├── USArrayWrapper.m │ │ ├── USConstants.h │ │ ├── USDictionaryWrapper.h │ │ ├── USDictionaryWrapper.m │ │ ├── Underscore.h │ │ └── Underscore.m └── libffi │ ├── LICENSE │ ├── README │ ├── ios │ ├── include │ │ ├── ffi.h │ │ ├── ffi_armv7.h │ │ ├── ffi_common.h │ │ ├── ffi_i386.h │ │ ├── fficonfig.h │ │ ├── fficonfig_armv7.h │ │ ├── fficonfig_i386.h │ │ ├── ffitarget.h │ │ ├── ffitarget_armv7.h │ │ └── ffitarget_i386.h │ └── src │ │ ├── arm │ │ ├── ffi.c │ │ ├── sysv.S │ │ └── trampoline.S │ │ └── x86 │ │ ├── darwin.S │ │ └── ffi.c │ ├── libffi.podspec │ └── src │ ├── closures.c │ ├── dlmalloc.c │ ├── prep_cif.c │ ├── raw_api.c │ └── types.c ├── README.md ├── Resources ├── Images │ ├── Default-568h@2x.png │ ├── Default-Landscape~ipad.png │ ├── Default-Landscape~ipad@2x.png │ ├── Default-Portrait~ipad.png │ ├── Default-Portrait~ipad@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── Icon-72.png │ ├── Icon-72@2x.png │ ├── Icon-Small-50.png │ ├── Icon-Small.png │ ├── Icon-Small@2x.png │ ├── Icon.png │ ├── Icon@2x.png │ ├── bg-cell.png │ ├── bg-cell@2x.png │ ├── bg-textfield.png │ ├── bg-textfield@2x.png │ ├── bg-textview.png │ ├── bg-textview@2x.png │ ├── bg-toolbar.png │ ├── bg-toolbar@2x.png │ ├── big-logo-ipad.png │ ├── big-logo-ipad@2x.png │ ├── big-logo.png │ ├── big-logo@2x.png │ ├── btn-back.png │ ├── btn-back@2x.png │ ├── btn-nav-bar.png │ ├── btn-nav-bar@2x.png │ ├── btn-textfield-add.png │ ├── btn-textfield-add@2x.png │ ├── cell-accessory.png │ ├── cell-accessory@2x.png │ ├── cell-delete.png │ ├── cell-delete@2x.png │ ├── cell-sort.png │ ├── cell-sort@2x.png │ ├── hr-line.png │ ├── hr-line@2x.png │ ├── iTunesArtwork │ ├── nav-bar-logo.png │ ├── nav-bar-logo@2x.png │ ├── nav-bar.png │ ├── nav-bar@2x.png │ ├── splash-background-landscape-ipad@2x.png │ ├── splash-background-portrait-ipad@2x.png │ ├── splash-background-portrait@2x.png │ ├── tableview-footer.png │ ├── tableview-footer@2x.png │ ├── tableview-patern.png │ ├── tableview-patern@2x.png │ ├── toolbar-btn-dark.png │ ├── toolbar-btn-dark@2x.png │ ├── toolbar-btn-light.png │ └── toolbar-btn-light@2x.png ├── Others │ └── markdown.css └── Xibs │ └── WebViewController.xib ├── Screen ├── Screen.png ├── Screen2.png ├── Screen3.png ├── Screen4.png ├── Screen5.png ├── Screen6.png └── Screen7.png └── Vendor ├── AFOAuth2Client ├── AFOAuth2Client.h └── AFOAuth2Client.m ├── BWAFNetworking ├── BWAFNetworking.h ├── BWAFNetworking.m ├── BWAFOAuth2Client.h └── BWAFOAuth2Client.m ├── BWBackendObjectUpdate ├── BWBackendObjectUpdateManager.h ├── BWBackendObjectUpdateManager.m ├── NSManagedObject+BWBackendObjectUpdate.h └── NSManagedObject+BWBackendObjectUpdate.m ├── BWDataKit ├── BWManagedTableViewController.h ├── BWManagedTableViewController.m ├── BWManagedViewController.h ├── BWManagedViewController.m ├── BWModel.h ├── BWModel.m ├── BWRemoteModel.h ├── BWRemoteModel.m ├── BWViewController.h ├── BWViewController.m ├── NSManagedObject+Deletable.h ├── NSManagedObject+Deletable.m ├── NSManagedObject+FindOrCreate.h ├── NSManagedObject+FindOrCreate.m ├── NSManagedObject+LastUpdatedAt.h └── NSManagedObject+LastUpdatedAt.m ├── BWObjectMapping ├── BWObjectAttributeMapping.h ├── BWObjectAttributeMapping.m ├── BWObjectMapper.h ├── BWObjectMapper.m ├── BWObjectMapping.h ├── BWObjectMapping.m ├── BWObjectMappingBlocks.h ├── BWObjectValueMapper.h └── BWObjectValueMapper.m ├── BWObjectRouter ├── BWObjectRouter.h ├── BWObjectRouter.m ├── BWObjectRoutes.h └── BWObjectRoutes.m ├── BWObjectSerializer ├── BWObjectSerializer.h ├── BWObjectSerializer.m ├── BWObjectSerializerAttributeMapping.h ├── BWObjectSerializerAttributeMapping.m ├── BWObjectSerializerBlocks.h ├── BWObjectSerializerMapping.h └── BWObjectSerializerMapping.m ├── BWSelectViewController ├── BWSelectViewController.h └── BWSelectViewController.m ├── Core ├── BKBlocks.h ├── BKDeviceAvailability.h ├── BKDeviceAvailability.m ├── BKIteratingHelper.h ├── BKIteratingHelper.m ├── BKMacrosDefinitions.h ├── BKOperationHelper.h ├── BKOperationHelper.m ├── BKRunBlockAtDealloc.h ├── BKRunBlockAtDealloc.m ├── BKToogleValue.h ├── BKToogleValue.m ├── BKUtils.h ├── BKUtils.m ├── BaseKitCore.h ├── BaseKitCoreAdditions.h ├── NSArray+BaseKit.h ├── NSArray+BaseKit.m ├── NSDictionary+BaseKit.h ├── NSDictionary+BaseKit.m ├── NSMutableArray+BaseKit.h ├── NSMutableArray+BaseKit.m ├── NSMutableDictionary+BaseKit.h ├── NSMutableDictionary+BaseKit.m ├── NSOperationQueue+BaseKit.h ├── NSOperationQueue+BaseKit.m ├── NSSet+BaseKit.h ├── NSSet+BaseKit.m ├── NSString+BaseKit.h ├── NSString+BaseKit.m └── deps ├── CoreData ├── BaseKitCoreData.h ├── NSManagedObject+BaseKit.h └── NSManagedObject+BaseKit.m ├── DKPropertyList ├── DKPropertyList.h └── DKPropertyList.m ├── FormKit ├── FKBlocks.h ├── FKFormAttributeMapping.h ├── FKFormAttributeMapping.m ├── FKFormAttributeValidation.h ├── FKFormAttributeValidation.m ├── FKFormMapper.h ├── FKFormMapper.m ├── FKFormMapping.h ├── FKFormMapping.m ├── FKFormModel.h ├── FKFormModel.m ├── FKMacrosDefinitions.h ├── FKSectionObject.h ├── FKSectionObject.m ├── Fields │ ├── FKBadgeField.h │ ├── FKBadgeField.m │ ├── FKButtonField.h │ ├── FKButtonField.m │ ├── FKDisclosureIndicatorAccessoryField.h │ ├── FKDisclosureIndicatorAccessoryField.m │ ├── FKFieldErrorProtocol.h │ ├── FKFields.h │ ├── FKFieldsBlocks.h │ ├── FKFloatField.h │ ├── FKFloatField.m │ ├── FKImageField.h │ ├── FKImageField.m │ ├── FKIntegerField.h │ ├── FKIntegerField.m │ ├── FKLabelField.h │ ├── FKLabelField.m │ ├── FKPasswordTextField.h │ ├── FKPasswordTextField.m │ ├── FKSaveButtonField.h │ ├── FKSaveButtonField.m │ ├── FKSimpleField.h │ ├── FKSimpleField.m │ ├── FKSliderField.h │ ├── FKSliderField.m │ ├── FKSwitchField.h │ ├── FKSwitchField.m │ ├── FKTextField.h │ ├── FKTextField.m │ ├── FKTextViewField.h │ ├── FKTextViewField.m │ ├── FKValueViewField.h │ └── FKValueViewField.m ├── FormKit.h ├── NSObject+FKFormAttributeMapping.h ├── NSObject+FKFormAttributeMapping.m ├── UITableViewCell+FormKit.h ├── UITableViewCell+FormKit.m ├── UIView+FormKit.h └── UIView+FormKit.m ├── MarkdownParser ├── .gitignore ├── .gitmodules ├── App │ ├── BOAppDelegate.h │ ├── BOAppDelegate.m │ ├── BOViewController.h │ ├── BOViewController.m │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── MarkdownParser-Info.plist │ ├── en.lproj │ │ ├── BOViewController.xib │ │ └── InfoPlist.strings │ └── main.m ├── LICENSE.md ├── MarkdownParser.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── MarkdownParser.xcscheme │ │ └── MarkdownParserApp.xcscheme ├── README.md ├── Source │ ├── BOMarkdownParser.h │ ├── BOMarkdownParser.m │ ├── MarkdownParser-Prefix.pch │ ├── NSAttributedString+Markdown.h │ └── NSAttributedString+Markdown.m ├── Submodules │ └── libupskirt │ │ ├── BSDmakefile │ │ ├── GNUmakefile │ │ ├── LICENSE │ │ ├── README │ │ ├── array.c │ │ ├── array.h │ │ ├── benchmark.c │ │ ├── buffer.c │ │ ├── buffer.h │ │ ├── expanded_markdown.sh │ │ ├── kilt.c │ │ ├── lace.c │ │ ├── markdown.c │ │ ├── markdown.h │ │ ├── renderers.c │ │ └── renderers.h └── Tests │ ├── MarkdownParserTests-Info.plist │ ├── MarkdownParserTests.m │ └── en.lproj │ └── InfoPlist.strings ├── Nimbus ├── attributedlabel │ └── src │ │ ├── NIAttributedLabel.h │ │ ├── NIAttributedLabel.m │ │ ├── NSMutableAttributedString+NimbusAttributedLabel.h │ │ ├── NSMutableAttributedString+NimbusAttributedLabel.m │ │ ├── NimbusAttributedLabel+Namespace.h │ │ └── NimbusAttributedLabel.h └── core │ └── src │ ├── NICommonMetrics.h │ ├── NICommonMetrics.m │ ├── NIDataStructures.h │ ├── NIDataStructures.m │ ├── NIDebuggingTools.h │ ├── NIDebuggingTools.m │ ├── NIDeviceOrientation.h │ ├── NIDeviceOrientation.m │ ├── NIError.h │ ├── NIError.m │ ├── NIFoundationMethods.h │ ├── NIFoundationMethods.m │ ├── NIInMemoryCache.h │ ├── NIInMemoryCache.m │ ├── NINavigationAppearance.h │ ├── NINavigationAppearance.m │ ├── NINetworkActivity.h │ ├── NINetworkActivity.m │ ├── NINonEmptyCollectionTesting.h │ ├── NINonEmptyCollectionTesting.m │ ├── NINonRetainingCollections.h │ ├── NINonRetainingCollections.m │ ├── NIOperations+Subclassing.h │ ├── NIOperations.h │ ├── NIOperations.m │ ├── NIPaths.h │ ├── NIPaths.m │ ├── NIPreprocessorMacros.h │ ├── NIRuntimeClassModifications.h │ ├── NIRuntimeClassModifications.m │ ├── NISDKAvailability.h │ ├── NISDKAvailability.m │ ├── NISnapshotRotation.h │ ├── NISnapshotRotation.m │ ├── NIState.h │ ├── NIState.m │ ├── NIViewRecycler.h │ ├── NIViewRecycler.m │ ├── NSString+NimbusCore.h │ ├── NSString+NimbusCore.m │ ├── NimbusCore+Additions.h │ ├── NimbusCore+Namespace.h │ └── NimbusCore.h ├── SVProgressHUD ├── SVProgressHUD.bundle │ ├── error.png │ ├── error@2x.png │ ├── success.png │ └── success@2x.png ├── SVProgressHUD.h └── SVProgressHUD.m ├── TableKit ├── Private │ ├── TKCellMapper.h │ ├── TKCellMapper.m │ ├── TKTableModel+Private.h │ ├── UITableViewCell+TableKit.h │ └── UITableViewCell+TableKit.m ├── TKBlocks.h ├── TKCellAttributeMapping.h ├── TKCellAttributeMapping.m ├── TKCellMapping.h ├── TKCellMapping.m ├── TKDynamicCellMapping.h ├── TKDynamicCellMapping.m ├── TKListTableModel.h ├── TKListTableModel.m ├── TKManagedTableModel.h ├── TKManagedTableModel.m ├── TKSectionedTableModel.h ├── TKSectionedTableModel.m ├── TKTableModel.h ├── TKTableModel.m └── TableKit.h ├── TestFlightSDK1.0 ├── README.txt ├── TestFlight.h ├── libTestFlight.a └── release_notes.txt ├── UITableView+NXEmptyView ├── UITableView+NXEmptyView-Info.plist ├── UITableView+NXEmptyView-Prefix.pch ├── UITableView+NXEmptyView.h ├── UITableView+NXEmptyView.m └── en.lproj │ └── InfoPlist.strings ├── View ├── BKViewBlocks.h ├── BKViewControllerDelegate.h ├── BaseKitView.h ├── BaseKitViewAdditions.h ├── UIBarButtonItem+BaseKit.h ├── UIBarButtonItem+BaseKit.m ├── UINavigationController+BaseKit.h ├── UINavigationController+BaseKit.m ├── UITableView+BaseKit.h ├── UITableView+BaseKit.m ├── UITableViewCell+BaseKit.h ├── UITableViewCell+BaseKit.m ├── UIView+BaseKit.h ├── UIView+BaseKit.m ├── UIView+Debug.h ├── UIView+Debug.m ├── UIViewController+BaseKit.h ├── UIViewController+BaseKit.m └── deps └── libupskirt ├── BSDmakefile ├── GNUmakefile ├── LICENSE ├── README ├── array.c ├── array.h ├── benchmark.c ├── buffer.c ├── buffer.h ├── expanded_markdown.sh ├── kilt.c ├── lace.c ├── markdown.c ├── markdown.h ├── renderers.c └── renderers.h /.gitignore: -------------------------------------------------------------------------------- 1 | # Exclude the build directory 2 | build/* 3 | 4 | # Exclude temp nibs and swap files 5 | *~.nib 6 | *.swp 7 | 8 | # Exclude OS X folder attributes 9 | .DS_Store 10 | 11 | NotePad.xcworkspace/xcuserdata 12 | 13 | # Exclude user-specific XCode 3 and 4 files 14 | *.mode1 15 | *.mode1v3 16 | *.mode2v3 17 | *.perspective 18 | *.perspectivev3 19 | *.pbxuser 20 | *.xcworkspace 21 | xcuserdata 22 | -------------------------------------------------------------------------------- /Code/Helpers/HttpClient.h: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Bruno Wernimont on 2013 3 | // Copyright 2013 NoteIT 4 | // 5 | // Licensed under the Apache License, Version 2.0 (the "License"); 6 | // you may not use this file except in compliance with the License. 7 | // You may obtain a copy of the License at 8 | // 9 | // http://www.apache.org/licenses/LICENSE-2.0 10 | // 11 | // Unless required by applicable law or agreed to in writing, software 12 | // distributed under the License is distributed on an "AS IS" BASIS, 13 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | // See the License for the specific language governing permissions and 15 | // limitations under the License. 16 | // 17 | 18 | #import "BWAFNetworking.h" 19 | 20 | @interface HttpClient : BWAFNetworking 21 | 22 | @end 23 | -------------------------------------------------------------------------------- /KiwiUnitTest/KiwiUnitTest-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | brunow.${PRODUCT_NAME:rfc1034identifier} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundlePackageType 14 | BNDL 15 | CFBundleShortVersionString 16 | 1.0 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1 21 | 22 | 23 | -------------------------------------------------------------------------------- /KiwiUnitTest/KiwiUnitTest-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'KiwiUnitTest' target in the 'KiwiUnitTest' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /KiwiUnitTest/KiwiUnitTest.h: -------------------------------------------------------------------------------- 1 | // 2 | // KiwiUnitTest.h 3 | // KiwiUnitTest 4 | // 5 | // Created by cesar4 on 1/09/12. 6 | // 7 | // 8 | 9 | #import 10 | 11 | @interface KiwiUnitTest : SenTestCase 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /KiwiUnitTest/KiwiUnitTest.m: -------------------------------------------------------------------------------- 1 | // 2 | // KiwiUnitTest.m 3 | // KiwiUnitTest 4 | // 5 | // Created by cesar4 on 1/09/12. 6 | // 7 | // 8 | 9 | #import "KiwiUnitTest.h" 10 | 11 | @implementation KiwiUnitTest 12 | 13 | - (void)setUp 14 | { 15 | [super setUp]; 16 | 17 | // Set-up code here. 18 | } 19 | 20 | - (void)tearDown 21 | { 22 | // Tear-down code here. 23 | 24 | [super tearDown]; 25 | } 26 | 27 | - (void)testExample 28 | { 29 | STFail(@"Unit tests are not implemented yet in KiwiUnitTest"); 30 | } 31 | 32 | @end 33 | -------------------------------------------------------------------------------- /KiwiUnitTest/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Notepad.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Notepad.xcodeproj/project.xcworkspace/xcuserdata/cesar4.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Notepad.xcodeproj/project.xcworkspace/xcuserdata/cesar4.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Notepad.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Notepad/Notepad-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'Notepad' target in the 'Notepad' project 3 | // 4 | 5 | #import 6 | 7 | #ifndef __IPHONE_3_0 8 | #warning "This project uses features only available in iOS SDK 3.0 and later." 9 | #endif 10 | 11 | #ifdef __OBJC__ 12 | #define MR_SHORTHAND 13 | #define MR_ENABLE_ACTIVE_RECORD_LOGGING 0 14 | #import 15 | #import 16 | 17 | #import 18 | #import 19 | #import 20 | // #import "TestFlight.h" 21 | 22 | #import "BaseKitCoreAdditions.h" 23 | #import "BaseKitViewAdditions.h" 24 | 25 | #import "Defines.h" 26 | #endif 27 | -------------------------------------------------------------------------------- /Notepad/Notepad.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | _XCCurrentVersionName 6 | Notepad.xcdatamodel 7 | 8 | 9 | -------------------------------------------------------------------------------- /Notepad/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Notepad/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // Notepad 4 | // 5 | // Created by Bruno Wernimont on 24/06/12. 6 | // Copyright (c) 2012 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "AppDelegate.h" 12 | 13 | int main(int argc, char *argv[]) 14 | { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /NotepadTests/TextViewManipulationSpecs.m: -------------------------------------------------------------------------------- 1 | #import "Kiwi.h" 2 | 3 | #import "TextViewManipulation.h" 4 | 5 | SPEC_BEGIN(TextViewManipulationSpecs) 6 | 7 | describe(@"TextViewManipulationSpecs", ^{ 8 | }); 9 | 10 | SPEC_END -------------------------------------------------------------------------------- /NotepadTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- 1 | platform :ios, '6.0' 2 | pod 'A2DynamicDelegate', '~> 2.0.1' 3 | pod 'BlocksKit', '~> 1.5.1' 4 | pod 'AFNetworking', '~> 1.0.1' 5 | #pod 'SVProgressHUD', '~> 0.8' 6 | pod 'MagicalRecord', '~> 2.0.8' 7 | pod 'SSKeychain', '~> 0.1.2' 8 | pod 'JSONKit', '~> 1.4' 9 | pod 'BWLongTextViewController', '~> 1.0.0' 10 | pod 'ActionSheetPicker2', '~> 0.1' 11 | pod 'SSToolkit', '~> 1.0.2' 12 | pod 'SOCKit', '~> 1.1' 13 | pod 'Underscore.m', '~> 0.1.0' 14 | pod 'KSReachability', '~> 0.0.1' 15 | pod 'CoreParse', '~> 1.0.0' 16 | 17 | #target :NotepadTests, :exclusive => true do 18 | # pod 'Kiwi' 19 | #end -------------------------------------------------------------------------------- /Pods/A2DynamicDelegate/A2BlockClosure.h: -------------------------------------------------------------------------------- 1 | // 2 | // A2BlockClosure.h 3 | // A2DynamicDelegate 4 | // 5 | 6 | #import 7 | 8 | @interface A2BlockClosure : NSObject { 9 | @package 10 | NSMutableArray *_allocations; 11 | id _block; 12 | void *_methodCIF; 13 | void *_blockCIF; 14 | void *_closure; 15 | void *_functionPointer; 16 | } 17 | 18 | - (id)initWithBlock: (id) block methodSignature: (NSMethodSignature *) signature; 19 | 20 | @property (nonatomic, readonly) id block; 21 | @property (nonatomic, readonly) void *functionPointer; 22 | 23 | @end -------------------------------------------------------------------------------- /Pods/A2DynamicDelegate/A2DynamicDelegate.podspec: -------------------------------------------------------------------------------- 1 | Pod::Spec.new do |s| 2 | s.name = 'A2DynamicDelegate' 3 | s.version = '2.0.1' 4 | s.license = 'BSD' 5 | s.summary = 'Blocks are to functions as A2DynamicDelegate is to delegates.' 6 | s.homepage = 'https://github.com/pandamonia/A2DynamicDelegate' 7 | s.author = { 'Alexsander Akers' => 'a2@pandamonia.us', 8 | 'Zachary Waldowski' => 'zwaldowski@gmail.com' } 9 | s.source = { :git => 'https://github.com/pandamonia/A2DynamicDelegate.git', :tag => 'v2.0.1' } 10 | s.source_files = 'A2DynamicDelegate.{h,m}', 'A2BlockDelegate.{h,m}', 'A2BlockClosure.{h,m}' 11 | s.dependency 'libffi' 12 | end 13 | -------------------------------------------------------------------------------- /Pods/BuildHeaders/A2DynamicDelegate/A2BlockClosure.h: -------------------------------------------------------------------------------- 1 | ../../A2DynamicDelegate/A2BlockClosure.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/A2DynamicDelegate/A2BlockDelegate.h: -------------------------------------------------------------------------------- 1 | ../../A2DynamicDelegate/A2BlockDelegate.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/A2DynamicDelegate/A2DynamicDelegate.h: -------------------------------------------------------------------------------- 1 | ../../A2DynamicDelegate/A2DynamicDelegate.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/AFNetworking/AFHTTPClient.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFHTTPClient.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/AFNetworking/AFHTTPRequestOperation.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFHTTPRequestOperation.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/AFNetworking/AFImageRequestOperation.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFImageRequestOperation.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/AFNetworking/AFJSONRequestOperation.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFJSONRequestOperation.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/AFNetworking/AFPropertyListRequestOperation.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFPropertyListRequestOperation.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/AFNetworking/AFURLConnectionOperation.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFURLConnectionOperation.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/AFNetworking/AFXMLRequestOperation.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFXMLRequestOperation.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ActionSheetPicker2/AbstractActionSheetPicker.h: -------------------------------------------------------------------------------- 1 | ../../ActionSheetPicker2/Pickers/AbstractActionSheetPicker.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ActionSheetPicker2/ActionSheetDatePicker.h: -------------------------------------------------------------------------------- 1 | ../../ActionSheetPicker2/Pickers/ActionSheetDatePicker.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ActionSheetPicker2/ActionSheetDistancePicker.h: -------------------------------------------------------------------------------- 1 | ../../ActionSheetPicker2/Pickers/ActionSheetDistancePicker.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ActionSheetPicker2/ActionSheetPicker.h: -------------------------------------------------------------------------------- 1 | ../../ActionSheetPicker2/ActionSheetPicker.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ActionSheetPicker2/ActionSheetStringPicker.h: -------------------------------------------------------------------------------- 1 | ../../ActionSheetPicker2/Pickers/ActionSheetStringPicker.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/ActionSheetPicker2/DistancePickerView.h: -------------------------------------------------------------------------------- 1 | ../../ActionSheetPicker2/Pickers/DistancePickerView.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BWLongTextViewController/BWLongTextViewController.h: -------------------------------------------------------------------------------- 1 | ../../BWLongTextViewController/BWLongTextViewController/BWLongTextViewController.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/A2BlockDelegate+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/A2BlockDelegate+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/BKGlobals.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/BKGlobals.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/BKMacros.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/BKMacros.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/MFMailComposeViewController+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/MessageUI/MFMailComposeViewController+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/MFMessageComposeViewController+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/MessageUI/MFMessageComposeViewController+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/NSArray+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSArray+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/NSCache+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSCache+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/NSDictionary+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSDictionary+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/NSIndexSet+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSIndexSet+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/NSInvocation+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSInvocation+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/NSMutableArray+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSMutableArray+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/NSMutableDictionary+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSMutableDictionary+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/NSMutableIndexSet+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSMutableIndexSet+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/NSMutableSet+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSMutableSet+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/NSObject+AssociatedObjects.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSObject+AssociatedObjects.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/NSObject+BlockObservation.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSObject+BlockObservation.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/NSObject+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSObject+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/NSSet+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSSet+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/NSTimer+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSTimer+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/NSURLConnection+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSURLConnection+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/UIActionSheet+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/UIKit/UIActionSheet+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/UIAlertView+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/UIKit/UIAlertView+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/UIBarButtonItem+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/UIKit/UIBarButtonItem+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/UIControl+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/UIKit/UIControl+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/UIGestureRecognizer+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/UIKit/UIGestureRecognizer+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/UIPopoverController+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/UIKit/UIPopoverController+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/UIView+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/UIKit/UIView+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/BlocksKit/UIWebView+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/UIKit/UIWebView+BlocksKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPEOFToken.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Types/CPEOFToken.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPErrorToken.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Types/CPErrorToken.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPGrammar.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Grammar/CPGrammar.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPGrammarInternal.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Grammar/CPGrammarInternal.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPGrammarPrivate.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Grammar/CPGrammarPrivate.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPGrammarSymbol.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Grammar/CPGrammarSymbol.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPIdentifierRecogniser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Recognisers/CPIdentifierRecogniser.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPIdentifierToken.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Types/CPIdentifierToken.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPItem.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/CPShiftReduceParsers/CPItem.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPJSONParser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Built In Parsers/CPJSONParser.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPKeywordRecogniser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Recognisers/CPKeywordRecogniser.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPKeywordToken.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Types/CPKeywordToken.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPLALR1Parser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/CPShiftReduceParsers/CPLALR1Parser.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPLR1Item.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/CPShiftReduceParsers/CPLR1Item.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPLR1Parser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/CPShiftReduceParsers/CPLR1Parser.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPNumberRecogniser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Recognisers/CPNumberRecogniser.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPNumberToken.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Types/CPNumberToken.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPParser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/CPParser.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPQuotedRecogniser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Recognisers/CPQuotedRecogniser.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPQuotedToken.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Types/CPQuotedToken.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPRHSItem.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Grammar/CPRHSItem.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPRHSItemResult.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Grammar/CPRHSItemResult.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPRecoveryAction.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/Error Recovery/CPRecoveryAction.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPRule.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Grammar/CPRule.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPSLRParser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/CPShiftReduceParsers/CPSLRParser.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPShiftReduceAction.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/CPShiftReduceParsers/CPShiftReduceAction.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPShiftReduceActionTable.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/CPShiftReduceParsers/CPShiftReduceActionTable.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPShiftReduceGotoTable.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/CPShiftReduceParsers/CPShiftReduceGotoTable.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPShiftReduceParser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/CPShiftReduceParser.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPShiftReduceParserProtectedMethods.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/CPShiftReduceParsers/CPShiftReduceParserProtectedMethods.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPShiftReduceState.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/CPShiftReduceParsers/CPShiftReduceState.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPSyntaxTree.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Syntax Tree/CPSyntaxTree.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPToken.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Types/CPToken.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPTokenRecogniser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Recognisers/CPTokenRecogniser.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPTokenStream.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/CPTokenStream.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPTokeniser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/CPTokeniser.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPWhiteSpaceRecogniser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Recognisers/CPWhiteSpaceRecogniser.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CPWhiteSpaceToken.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Types/CPWhiteSpaceToken.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/CoreParse.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/CoreParse.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/CoreParse/NSSetFunctional.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/NSSetFunctional.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/JSONKit/JSONKit.h: -------------------------------------------------------------------------------- 1 | ../../JSONKit/JSONKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/KSReachability/ARCSafe_MemMgmt.h: -------------------------------------------------------------------------------- 1 | ../../KSReachability/ARCSafe_MemMgmt.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/KSReachability/KSReachability.h: -------------------------------------------------------------------------------- 1 | ../../KSReachability/KSReachability.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/MagicalRecord/CoreData+MagicalRecord.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/CoreData+MagicalRecord.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/MagicalRecord/MagicalImportFunctions.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Categories/DataImport/MagicalImportFunctions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/MagicalRecord/MagicalRecord+Actions.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Core/MagicalRecord+Actions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/MagicalRecord/MagicalRecord+ErrorHandling.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Core/MagicalRecord+ErrorHandling.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/MagicalRecord/MagicalRecord+Options.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Core/MagicalRecord+Options.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/MagicalRecord/MagicalRecord+Setup.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Core/MagicalRecord+Setup.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/MagicalRecord/MagicalRecord+ShorthandSupport.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Core/MagicalRecord+ShorthandSupport.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/MagicalRecord/MagicalRecord+iCloud.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Core/MagicalRecord+iCloud.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/MagicalRecord/MagicalRecord.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Core/MagicalRecord.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/MagicalRecord/MagicalRecordShorthand.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Core/MagicalRecordShorthand.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/MagicalRecord/NSAttributeDescription+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Categories/DataImport/NSAttributeDescription+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/MagicalRecord/NSEntityDescription+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Categories/DataImport/NSEntityDescription+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/MagicalRecord/NSManagedObject+MagicalAggregation.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalAggregation.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/MagicalRecord/NSManagedObject+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/MagicalRecord/NSManagedObject+MagicalFinders.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalFinders.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/MagicalRecord/NSManagedObject+MagicalRecord.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalRecord.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/MagicalRecord/NSManagedObject+MagicalRequests.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalRequests.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/MagicalRecord/NSManagedObjectContext+MagicalObserving.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalObserving.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/MagicalRecord/NSManagedObjectContext+MagicalRecord.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalRecord.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/MagicalRecord/NSManagedObjectContext+MagicalSaves.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalSaves.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/MagicalRecord/NSManagedObjectContext+MagicalThreading.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalThreading.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/MagicalRecord/NSManagedObjectModel+MagicalRecord.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Categories/NSManagedObjectModel+MagicalRecord.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/MagicalRecord/NSNumber+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Categories/DataImport/NSNumber+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/MagicalRecord/NSObject+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Categories/DataImport/NSObject+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/MagicalRecord/NSPersistentStore+MagicalRecord.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Categories/NSPersistentStore+MagicalRecord.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/MagicalRecord/NSPersistentStoreCoordinator+MagicalRecord.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Categories/NSPersistentStoreCoordinator+MagicalRecord.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/MagicalRecord/NSRelationshipDescription+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Categories/DataImport/NSRelationshipDescription+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/MagicalRecord/NSString+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Categories/DataImport/NSString+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SOCKit/SOCKit.h: -------------------------------------------------------------------------------- 1 | ../../SOCKit/SOCKit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSKeychain/SSKeychain.h: -------------------------------------------------------------------------------- 1 | ../../SSKeychain/SSKeychain.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/NSArray+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/NSArray+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/NSBundle+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/NSBundle+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/NSData+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/NSData+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/NSDate+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/NSDate+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/NSDictionary+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/NSDictionary+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/NSNumber+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/NSNumber+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/NSString+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/NSString+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/NSURL+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/NSURL+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSAddressBarTextField.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSAddressBarTextField.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSAddressBarTextFieldBackgroundView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSAddressBarTextFieldBackgroundView.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSAddressBarTextFieldBackgroundViewInnerView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSAddressBarTextFieldBackgroundViewInnerView.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSAnimatedImageView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSAnimatedImageView.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSBadgeTableViewCell.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSBadgeTableViewCell.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSBadgeView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSBadgeView.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSBorderedView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSBorderedView.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSButton.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSButton.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSCategories.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSCategories.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSCollectionView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSCollectionView.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSCollectionViewController.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSCollectionViewController.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSCollectionViewExtremityTableViewCell.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSCollectionViewExtremityTableViewCell.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSCollectionViewInternal.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSCollectionViewInternal.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSCollectionViewItem.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSCollectionViewItem.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSCollectionViewItemInternal.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSCollectionViewItemInternal.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSCollectionViewItemTableViewCell.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSCollectionViewItemTableViewCell.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSCollectionViewTableView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSCollectionViewTableView.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSConcurrentOperation.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSConcurrentOperation.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSDrawingUtilities.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSDrawingUtilities.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSGradientView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSGradientView.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSHUDView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSHUDView.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSHUDWindow.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSHUDWindow.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSLabel.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSLabel.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSLineView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSLineView.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSLoadingView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSLoadingView.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSPickerViewController.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSPickerViewController.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSPieProgressView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSPieProgressView.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSRateLimit.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSRateLimit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSRatingPicker.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSRatingPicker.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSRatingPickerScrollView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSRatingPickerScrollView.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSRatingPickerViewController.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSRatingPickerViewController.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSTextField.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSTextField.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSTextView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSTextView.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSToolkit.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSToolkit.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSToolkitDefines.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSToolkitDefines.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/SSWebView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSWebView.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/UIApplication+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/UIApplication+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/UIColor+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/UIColor+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/UIControl+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/UIControl+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/UIDevice+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/UIDevice+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/UIImage+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/UIImage+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/UIScreen+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/UIScreen+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/UIScrollView+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/UIScrollView+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/UIView+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/UIView+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/SSToolkit/UIViewController+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/UIViewController+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/Underscore.m/USArrayWrapper.h: -------------------------------------------------------------------------------- 1 | ../../Underscore.m/Underscore/USArrayWrapper.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/Underscore.m/USConstants.h: -------------------------------------------------------------------------------- 1 | ../../Underscore.m/Underscore/USConstants.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/Underscore.m/USDictionaryWrapper.h: -------------------------------------------------------------------------------- 1 | ../../Underscore.m/Underscore/USDictionaryWrapper.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/Underscore.m/Underscore.h: -------------------------------------------------------------------------------- 1 | ../../Underscore.m/Underscore/Underscore.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/libffi/ffi.h: -------------------------------------------------------------------------------- 1 | ../../libffi/ios/include/ffi.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/libffi/ffi_armv7.h: -------------------------------------------------------------------------------- 1 | ../../libffi/ios/include/ffi_armv7.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/libffi/ffi_common.h: -------------------------------------------------------------------------------- 1 | ../../libffi/ios/include/ffi_common.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/libffi/ffi_i386.h: -------------------------------------------------------------------------------- 1 | ../../libffi/ios/include/ffi_i386.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/libffi/fficonfig.h: -------------------------------------------------------------------------------- 1 | ../../libffi/ios/include/fficonfig.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/libffi/fficonfig_armv7.h: -------------------------------------------------------------------------------- 1 | ../../libffi/ios/include/fficonfig_armv7.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/libffi/fficonfig_i386.h: -------------------------------------------------------------------------------- 1 | ../../libffi/ios/include/fficonfig_i386.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/libffi/ffitarget.h: -------------------------------------------------------------------------------- 1 | ../../libffi/ios/include/ffitarget.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/libffi/ffitarget_armv7.h: -------------------------------------------------------------------------------- 1 | ../../libffi/ios/include/ffitarget_armv7.h -------------------------------------------------------------------------------- /Pods/BuildHeaders/libffi/ffitarget_i386.h: -------------------------------------------------------------------------------- 1 | ../../libffi/ios/include/ffitarget_i386.h -------------------------------------------------------------------------------- /Pods/CoreParse/CoreParse/Grammar/CPGrammarPrivate.h: -------------------------------------------------------------------------------- 1 | // 2 | // CPGrammarPrivate.h 3 | // CoreParse 4 | // 5 | // Created by Tom Davie on 04/06/2011. 6 | // Copyright 2011 In The Beginning... All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "CPGrammar.h" 12 | 13 | @interface CPGrammar (CPGrammarPrivate) 14 | 15 | @property (readwrite,copy ) NSArray *rules; 16 | 17 | @property (readwrite,retain) NSMutableDictionary *rulesByNonTerminal; 18 | @property (readwrite,retain) NSMutableDictionary *followCache; 19 | 20 | - (NSArray *)orderedRules; 21 | 22 | - (NSSet *)allSymbolNames; 23 | - (NSSet *)symbolNamesInRules:(NSArray *)rules; 24 | - (NSSet *)firstSymbol:(CPGrammarSymbol *)obj; 25 | 26 | @end 27 | -------------------------------------------------------------------------------- /Pods/CoreParse/CoreParse/Grammar/CPRHSItem.h: -------------------------------------------------------------------------------- 1 | // 2 | // CPRHSItem.h 3 | // CoreParse 4 | // 5 | // Created by Thomas Davie on 26/06/2011. 6 | // Copyright 2011 In The Beginning... All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface CPRHSItem : NSObject 12 | 13 | @property (readwrite,copy) NSArray *contents; 14 | 15 | @property (readwrite,assign) BOOL repeats; 16 | @property (readwrite,assign) BOOL mayNotExist; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /Pods/CoreParse/CoreParse/Grammar/CPRHSItemResult.h: -------------------------------------------------------------------------------- 1 | // 2 | // CPRHSItemResult.h 3 | // CoreParse 4 | // 5 | // Created by Thomas Davie on 23/10/2011. 6 | // Copyright (c) 2011 In The Beginning... All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "CPParser.h" 12 | 13 | @interface CPRHSItemResult : NSObject 14 | 15 | @property (readwrite, retain) NSMutableArray *contents; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /Pods/CoreParse/CoreParse/NSSetFunctional.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSSetFunctional.h 3 | // CoreParse 4 | // 5 | // Created by Tom Davie on 06/03/2011. 6 | // Copyright 2011 In The Beginning... All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | @interface NSSet(Functional) 13 | 14 | - (NSSet *)map:(id(^)(id obj))block; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Pods/CoreParse/CoreParse/NSSetFunctional.m: -------------------------------------------------------------------------------- 1 | // 2 | // NSSetFunctional.m 3 | // CoreParse 4 | // 5 | // Created by Tom Davie on 06/03/2011. 6 | // Copyright 2011 In The Beginning... All rights reserved. 7 | // 8 | 9 | #import "NSSetFunctional.h" 10 | 11 | 12 | @implementation NSSet(Functional) 13 | 14 | - (NSSet *)map:(id(^)(id obj))block 15 | { 16 | NSMutableSet *newSet = [NSMutableSet setWithCapacity:[self count]]; 17 | 18 | for (id obj in self) 19 | { 20 | id r = block(obj); 21 | if (nil != r) 22 | { 23 | [newSet addObject:r]; 24 | } 25 | } 26 | 27 | return [[newSet copy] autorelease]; 28 | } 29 | 30 | @end 31 | -------------------------------------------------------------------------------- /Pods/CoreParse/CoreParse/Parsers/CPShiftReduceParser.h: -------------------------------------------------------------------------------- 1 | // 2 | // CPLALR1Parser.h 3 | // CoreParse 4 | // 5 | // Created by Tom Davie on 05/03/2011. 6 | // Copyright 2011 In The Beginning... All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "CPParser.h" 12 | 13 | /** 14 | * The CPShiftReduceParser is a further abstract class based on CPParser. This implements the parts of a parser in common between all shift/reduce type parsers. 15 | * 16 | * @warning Note that to create a parser you should use one of CPShiftReduceParser's subclasses. 17 | */ 18 | @interface CPShiftReduceParser : CPParser 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /Pods/CoreParse/CoreParse/Parsers/CPShiftReduceParsers/CPItem.h: -------------------------------------------------------------------------------- 1 | // 2 | // CPItem.h 3 | // CoreParse 4 | // 5 | // Created by Tom Davie on 06/03/2011. 6 | // Copyright 2011 In The Beginning... All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "CPRule.h" 12 | #import "CPGrammarSymbol.h" 13 | 14 | @interface CPItem : NSObject 15 | {} 16 | 17 | @property (readonly,retain) CPRule *rule; 18 | @property (readonly,assign) NSUInteger position; 19 | 20 | + (id)itemWithRule:(CPRule *)rule position:(NSUInteger)position; 21 | - (id)initWithRule:(CPRule *)rule position:(NSUInteger)position; 22 | 23 | - (CPGrammarSymbol *)nextSymbol; 24 | - (NSArray *)followingSymbols; 25 | 26 | - (id)itemByMovingDotRight; 27 | 28 | @end 29 | -------------------------------------------------------------------------------- /Pods/CoreParse/CoreParse/Parsers/CPShiftReduceParsers/CPLALR1Parser.h: -------------------------------------------------------------------------------- 1 | // 2 | // CPLALR1Parser.h 3 | // CoreParse 4 | // 5 | // Created by Tom Davie on 03/04/2011. 6 | // Copyright 2011 In The Beginning... All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "CPLR1Parser.h" 12 | 13 | /** 14 | * The CPLALR1Parser class is a concrete implementation of CPParser based on the lookahead left-to-right parsing method with a one symbol lookahead. 15 | * 16 | * The LALR1 parser is almost as fast as the SLR parser and covers almost as many grammars as the LR1 parser. LALR1 parsers consume only as much memory as SLR parsers. 17 | */ 18 | @interface CPLALR1Parser : CPShiftReduceParser 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /Pods/CoreParse/CoreParse/Parsers/CPShiftReduceParsers/CPLR1Item.h: -------------------------------------------------------------------------------- 1 | // 2 | // CPLR1Item.h 3 | // CoreParse 4 | // 5 | // Created by Tom Davie on 12/03/2011. 6 | // Copyright 2011 In The Beginning... All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "CPItem.h" 12 | #import "CPGrammarSymbol.h" 13 | 14 | @interface CPLR1Item : CPItem 15 | {} 16 | 17 | @property (readonly,retain) CPGrammarSymbol *terminal; 18 | 19 | + (id)lr1ItemWithRule:(CPRule *)rule position:(NSUInteger)position terminal:(CPGrammarSymbol *)terminal; 20 | - (id)initWithRule:(CPRule *)rule position:(NSUInteger)position terminal:(CPGrammarSymbol *)terminal; 21 | 22 | @end 23 | -------------------------------------------------------------------------------- /Pods/CoreParse/CoreParse/Parsers/CPShiftReduceParsers/CPLR1Parser.h: -------------------------------------------------------------------------------- 1 | // 2 | // CPLR1Parser.h 3 | // CoreParse 4 | // 5 | // Created by Tom Davie on 12/03/2011. 6 | // Copyright 2011 In The Beginning... All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "CPShiftReduceParser.h" 12 | 13 | /** 14 | * The CPLR1Parser class is a concrete implementation of CPParser based on the left-to-right parsing method with a one symbol lookahead. 15 | * 16 | * The LR1 parser is the slowest parser type available in CoreParse, but covers the largest set of grammars. LR1 parsers may consume significant amounts of memory. 17 | */ 18 | @interface CPLR1Parser : CPShiftReduceParser 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /Pods/CoreParse/CoreParse/Parsers/CPShiftReduceParsers/CPSLRParser.h: -------------------------------------------------------------------------------- 1 | // 2 | // CPSLRParser.h 3 | // CoreParse 4 | // 5 | // Created by Tom Davie on 06/03/2011. 6 | // Copyright 2011 In The Beginning... All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "CPShiftReduceParser.h" 12 | 13 | /** 14 | * The CPSLRParser class is a concrete implementation of CPParser based on the simple left-to-right parsing method. 15 | * 16 | * The SLR parser is the fastest parser type available in CoreParse, but covers the smallest set of grammars. 17 | */ 18 | @interface CPSLRParser : CPShiftReduceParser 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /Pods/CoreParse/CoreParse/Parsers/CPShiftReduceParsers/CPShiftReduceGotoTable.h: -------------------------------------------------------------------------------- 1 | // 2 | // CPShiftReduceGotoTable.h 3 | // CoreParse 4 | // 5 | // Created by Tom Davie on 05/03/2011. 6 | // Copyright 2011 In The Beginning... All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class CPRule; 12 | 13 | @interface CPShiftReduceGotoTable : NSObject 14 | {} 15 | 16 | - (id)initWithCapacity:(NSUInteger)capacity; 17 | 18 | - (BOOL)setGoto:(NSUInteger)gotoIndex forState:(NSUInteger)state nonTerminalNamed:(NSString *)nonTerminalName; 19 | 20 | - (NSUInteger)gotoForState:(NSUInteger)state rule:(CPRule *)rule; 21 | 22 | @end 23 | -------------------------------------------------------------------------------- /Pods/CoreParse/CoreParse/Parsers/CPShiftReduceParsers/CPShiftReduceParserProtectedMethods.h: -------------------------------------------------------------------------------- 1 | // 2 | // CPShiftReduceParserProtectedMethods.h 3 | // CoreParse 4 | // 5 | // Created by Tom Davie on 06/03/2011. 6 | // Copyright 2011 In The Beginning... All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "CPShiftReduceParser.h" 12 | 13 | #import "CPShiftReduceActionTable.h" 14 | #import "CPShiftReduceGotoTable.h" 15 | 16 | @interface CPShiftReduceParser () 17 | 18 | @property (readwrite,retain) CPShiftReduceActionTable *actionTable; 19 | @property (readwrite,retain) CPShiftReduceGotoTable *gotoTable; 20 | 21 | - (BOOL)constructShiftReduceTables; 22 | 23 | @end 24 | -------------------------------------------------------------------------------- /Pods/CoreParse/CoreParse/Parsers/CPShiftReduceParsers/CPShiftReduceState.h: -------------------------------------------------------------------------------- 1 | // 2 | // CPShiftReduceState.h 3 | // CoreParse 4 | // 5 | // Created by Tom Davie on 05/03/2011. 6 | // Copyright 2011 In The Beginning... All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface CPShiftReduceState : NSObject 12 | {} 13 | 14 | @property (readonly,retain) NSObject *object; 15 | @property (readonly,assign) NSUInteger state; 16 | 17 | + (id)shiftReduceStateWithObject:(NSObject *)object state:(NSUInteger)state; 18 | - (id)initWithObject:(NSObject *)initObject state:(NSUInteger)initState; 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /Pods/CoreParse/CoreParse/Tokenisation/Token Types/CPEOFToken.h: -------------------------------------------------------------------------------- 1 | // 2 | // CPEOFToken.h 3 | // CoreParse 4 | // 5 | // Created by Tom Davie on 12/02/2011. 6 | // Copyright 2011 In The Beginning... All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "CPToken.h" 12 | 13 | /** 14 | * The CPEOFToken class reperesents the end of a token stream. 15 | * 16 | * These tokens return `@"EOF"` as their name. 17 | */ 18 | @interface CPEOFToken : CPToken 19 | 20 | /** 21 | * Creates an end of file token. 22 | * 23 | * @return A token representing the end of the input stream. 24 | */ 25 | + (id)eof; 26 | 27 | @end 28 | -------------------------------------------------------------------------------- /Pods/CoreParse/CoreParse/Tokenisation/Token Types/CPEOFToken.m: -------------------------------------------------------------------------------- 1 | // 2 | // CPEOFToken.m 3 | // CoreParse 4 | // 5 | // Created by Tom Davie on 12/02/2011. 6 | // Copyright 2011 In The Beginning... All rights reserved. 7 | // 8 | 9 | #import "CPEOFToken.h" 10 | 11 | 12 | @implementation CPEOFToken 13 | 14 | + (id)eof 15 | { 16 | return [[[CPEOFToken alloc] init] autorelease]; 17 | } 18 | 19 | - (NSString *)name 20 | { 21 | return @"EOF"; 22 | } 23 | 24 | - (NSUInteger)hash 25 | { 26 | return 0; 27 | } 28 | 29 | - (BOOL)isEqual:(id)object 30 | { 31 | return [object isKindOfClass:[CPEOFToken class]]; 32 | } 33 | 34 | @end 35 | -------------------------------------------------------------------------------- /Pods/Documentation/BlocksKit/docset-installed.txt: -------------------------------------------------------------------------------- 1 | Documentation set was installed to Xcode! 2 | 3 | Path: /Users/cesar4/Library/Developer/Shared/Documentation/DocSets/com.dizzytechnology.BlocksKit-1.5.0.docset 4 | Time: 2012-06-24 19:38:59 +0000 -------------------------------------------------------------------------------- /Pods/Documentation/BlocksKit/docset/Contents/Resources/Documents/css/stylesPrint.css: -------------------------------------------------------------------------------- 1 | 2 | header { 3 | display: none; 4 | } 5 | 6 | div.main-navigation, div.navigation-top { 7 | display: none; 8 | } 9 | 10 | div#overview_contents, div#contents.isShowingTOC, div#contents { 11 | overflow: visible; 12 | position: relative; 13 | top: 0px; 14 | border: none; 15 | left: 0; 16 | } 17 | #tocContainer.isShowingTOC { 18 | display: none; 19 | } 20 | nav { 21 | display: none; 22 | } -------------------------------------------------------------------------------- /Pods/Documentation/BlocksKit/docset/Contents/Resources/Documents/img/button_bar_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/Documentation/BlocksKit/docset/Contents/Resources/Documents/img/button_bar_background.png -------------------------------------------------------------------------------- /Pods/Documentation/BlocksKit/docset/Contents/Resources/Documents/img/disclosure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/Documentation/BlocksKit/docset/Contents/Resources/Documents/img/disclosure.png -------------------------------------------------------------------------------- /Pods/Documentation/BlocksKit/docset/Contents/Resources/Documents/img/disclosure_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/Documentation/BlocksKit/docset/Contents/Resources/Documents/img/disclosure_open.png -------------------------------------------------------------------------------- /Pods/Documentation/BlocksKit/docset/Contents/Resources/Documents/img/library_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/Documentation/BlocksKit/docset/Contents/Resources/Documents/img/library_background.png -------------------------------------------------------------------------------- /Pods/Documentation/BlocksKit/docset/Contents/Resources/Documents/img/title_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/Documentation/BlocksKit/docset/Contents/Resources/Documents/img/title_background.png -------------------------------------------------------------------------------- /Pods/Documentation/BlocksKit/docset/Contents/Resources/Tokens1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | //apple_ref/occ/cl/FORCELOAD_ 7 | 8 | BKGlobals.h 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Pods/Documentation/BlocksKit/docset/Contents/Resources/docSet.dsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/Documentation/BlocksKit/docset/Contents/Resources/docSet.dsidx -------------------------------------------------------------------------------- /Pods/Documentation/BlocksKit/docset/Contents/Resources/docSet.mom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/Documentation/BlocksKit/docset/Contents/Resources/docSet.mom -------------------------------------------------------------------------------- /Pods/Documentation/BlocksKit/docset/Contents/Resources/docSet.skidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/Documentation/BlocksKit/docset/Contents/Resources/docSet.skidx -------------------------------------------------------------------------------- /Pods/Documentation/BlocksKit/docset/Contents/Resources/docSet.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/Documentation/BlocksKit/docset/Contents/Resources/docSet.toc -------------------------------------------------------------------------------- /Pods/Documentation/BlocksKit/html/css/stylesPrint.css: -------------------------------------------------------------------------------- 1 | 2 | header { 3 | display: none; 4 | } 5 | 6 | div.main-navigation, div.navigation-top { 7 | display: none; 8 | } 9 | 10 | div#overview_contents, div#contents.isShowingTOC, div#contents { 11 | overflow: visible; 12 | position: relative; 13 | top: 0px; 14 | border: none; 15 | left: 0; 16 | } 17 | #tocContainer.isShowingTOC { 18 | display: none; 19 | } 20 | nav { 21 | display: none; 22 | } -------------------------------------------------------------------------------- /Pods/Documentation/BlocksKit/html/img/button_bar_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/Documentation/BlocksKit/html/img/button_bar_background.png -------------------------------------------------------------------------------- /Pods/Documentation/BlocksKit/html/img/disclosure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/Documentation/BlocksKit/html/img/disclosure.png -------------------------------------------------------------------------------- /Pods/Documentation/BlocksKit/html/img/disclosure_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/Documentation/BlocksKit/html/img/disclosure_open.png -------------------------------------------------------------------------------- /Pods/Documentation/BlocksKit/html/img/library_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/Documentation/BlocksKit/html/img/library_background.png -------------------------------------------------------------------------------- /Pods/Documentation/BlocksKit/html/img/title_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/Documentation/BlocksKit/html/img/title_background.png -------------------------------------------------------------------------------- /Pods/Documentation/Kiwi/docset-installed.txt: -------------------------------------------------------------------------------- 1 | Documentation set was installed to Xcode! 2 | 3 | Path: /Users/cesar4/Library/Developer/Shared/Documentation/DocSets/org.cocoapods.Kiwi-1.1.0.docset 4 | Time: 2012-09-01 13:06:02 +0000 -------------------------------------------------------------------------------- /Pods/Documentation/Kiwi/docset/Contents/Resources/Documents/css/stylesPrint.css: -------------------------------------------------------------------------------- 1 | 2 | header { 3 | display: none; 4 | } 5 | 6 | div.main-navigation, div.navigation-top { 7 | display: none; 8 | } 9 | 10 | div#overview_contents, div#contents.isShowingTOC, div#contents { 11 | overflow: visible; 12 | position: relative; 13 | top: 0px; 14 | border: none; 15 | left: 0; 16 | } 17 | #tocContainer.isShowingTOC { 18 | display: none; 19 | } 20 | nav { 21 | display: none; 22 | } -------------------------------------------------------------------------------- /Pods/Documentation/Kiwi/docset/Contents/Resources/Documents/img/button_bar_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/Documentation/Kiwi/docset/Contents/Resources/Documents/img/button_bar_background.png -------------------------------------------------------------------------------- /Pods/Documentation/Kiwi/docset/Contents/Resources/Documents/img/disclosure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/Documentation/Kiwi/docset/Contents/Resources/Documents/img/disclosure.png -------------------------------------------------------------------------------- /Pods/Documentation/Kiwi/docset/Contents/Resources/Documents/img/disclosure_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/Documentation/Kiwi/docset/Contents/Resources/Documents/img/disclosure_open.png -------------------------------------------------------------------------------- /Pods/Documentation/Kiwi/docset/Contents/Resources/Documents/img/library_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/Documentation/Kiwi/docset/Contents/Resources/Documents/img/library_background.png -------------------------------------------------------------------------------- /Pods/Documentation/Kiwi/docset/Contents/Resources/Documents/img/title_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/Documentation/Kiwi/docset/Contents/Resources/Documents/img/title_background.png -------------------------------------------------------------------------------- /Pods/Documentation/Kiwi/docset/Contents/Resources/Tokens11.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | //apple_ref/occ/cl/KWBeNilMatcher 7 | 8 | KWBeNilMatcher.h 9 | 10 | 11 | 12 | 13 | 14 | 15 | //apple_ref/occ/instm/KWBeNilMatcher/beNil 16 | 17 | KWBeNilMatcher.h 18 | 19 | - (void)beNil 20 | 21 | 22 | //api/name/beNil 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /Pods/Documentation/Kiwi/docset/Contents/Resources/Tokens12.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | //apple_ref/occ/cl/KWBeNonNilMatcher 7 | 8 | KWBeNonNilMatcher.h 9 | 10 | 11 | 12 | 13 | 14 | 15 | //apple_ref/occ/instm/KWBeNonNilMatcher/beNonNil 16 | 17 | KWBeNonNilMatcher.h 18 | 19 | - (void)beNonNil 20 | 21 | 22 | //api/name/beNonNil 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /Pods/Documentation/Kiwi/docset/Contents/Resources/Tokens16.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | //apple_ref/occ/cl/KWBeZeroMatcher 7 | 8 | KWBeZeroMatcher.h 9 | 10 | 11 | 12 | 13 | 14 | 15 | //apple_ref/occ/instm/KWBeZeroMatcher/beZero 16 | 17 | KWBeZeroMatcher.h 18 | 19 | - (void)beZero 20 | 21 | 22 | //api/name/beZero 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /Pods/Documentation/Kiwi/docset/Contents/Resources/Tokens28.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | //apple_ref/occ/cl/KWEqualMatcher 7 | 8 | KWEqualMatcher.h 9 | 10 | 11 | 12 | 13 | 14 | 15 | //apple_ref/occ/instm/KWEqualMatcher/equal: 16 | 17 | KWEqualMatcher.h 18 | 19 | - (void)equal:(id)anObject 20 | 21 | 22 | //api/name/equal: 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /Pods/Documentation/Kiwi/docset/Contents/Resources/Tokens3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | //apple_ref/occ/cl/KWAny 7 | 8 | KWAny.h 9 | 10 | 11 | 12 | 13 | 14 | 15 | //apple_ref/occ/clm/KWAny/any 16 | 17 | KWAny.h 18 | 19 | + (id)any 20 | 21 | 22 | //api/name/any 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /Pods/Documentation/Kiwi/docset/Contents/Resources/Tokens34.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | //apple_ref/occ/cl/KWFormatter 7 | 8 | KWFormatter.h 9 | 10 | 11 | 12 | 13 | 14 | 15 | //apple_ref/occ/clm/KWFormatter/formatObject: 16 | 17 | KWFormatter.h 18 | 19 | + (NSString *)formatObject:(id)anObject 20 | 21 | 22 | //api/name/formatObject: 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /Pods/Documentation/Kiwi/docset/Contents/Resources/Tokens49.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | //apple_ref/occ/cl/KWNull 7 | 8 | KWNull.h 9 | 10 | 11 | 12 | 13 | 14 | 15 | //apple_ref/occ/clm/KWNull/null 16 | 17 | KWNull.h 18 | 19 | + (id)null 20 | 21 | 22 | //api/name/null 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /Pods/Documentation/Kiwi/docset/Contents/Resources/Tokens64.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | //apple_ref/occ/cl/name 7 | 8 | KiwiMacros.h 9 | 10 | 11 | 12 | 13 | 14 | 15 | //apple_ref/occ/clm/name/buildExampleGroups 16 | 17 | KiwiMacros.h 18 | 19 | + (void)buildExampleGroups 20 | 21 | 22 | //api/name/buildExampleGroups 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /Pods/Documentation/Kiwi/docset/Contents/Resources/Tokens7.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | //apple_ref/occ/cl/KWBeEmptyMatcher 7 | 8 | KWBeEmptyMatcher.h 9 | 10 | 11 | 12 | 13 | 14 | 15 | //apple_ref/occ/instm/KWBeEmptyMatcher/beEmpty 16 | 17 | KWBeEmptyMatcher.h 18 | 19 | - (void)beEmpty 20 | 21 | 22 | //api/name/beEmpty 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /Pods/Documentation/Kiwi/docset/Contents/Resources/docSet.dsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/Documentation/Kiwi/docset/Contents/Resources/docSet.dsidx -------------------------------------------------------------------------------- /Pods/Documentation/Kiwi/docset/Contents/Resources/docSet.mom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/Documentation/Kiwi/docset/Contents/Resources/docSet.mom -------------------------------------------------------------------------------- /Pods/Documentation/Kiwi/docset/Contents/Resources/docSet.skidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/Documentation/Kiwi/docset/Contents/Resources/docSet.skidx -------------------------------------------------------------------------------- /Pods/Documentation/Kiwi/docset/Contents/Resources/docSet.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/Documentation/Kiwi/docset/Contents/Resources/docSet.toc -------------------------------------------------------------------------------- /Pods/Documentation/Kiwi/html/css/stylesPrint.css: -------------------------------------------------------------------------------- 1 | 2 | header { 3 | display: none; 4 | } 5 | 6 | div.main-navigation, div.navigation-top { 7 | display: none; 8 | } 9 | 10 | div#overview_contents, div#contents.isShowingTOC, div#contents { 11 | overflow: visible; 12 | position: relative; 13 | top: 0px; 14 | border: none; 15 | left: 0; 16 | } 17 | #tocContainer.isShowingTOC { 18 | display: none; 19 | } 20 | nav { 21 | display: none; 22 | } -------------------------------------------------------------------------------- /Pods/Documentation/Kiwi/html/img/button_bar_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/Documentation/Kiwi/html/img/button_bar_background.png -------------------------------------------------------------------------------- /Pods/Documentation/Kiwi/html/img/disclosure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/Documentation/Kiwi/html/img/disclosure.png -------------------------------------------------------------------------------- /Pods/Documentation/Kiwi/html/img/disclosure_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/Documentation/Kiwi/html/img/disclosure_open.png -------------------------------------------------------------------------------- /Pods/Documentation/Kiwi/html/img/library_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/Documentation/Kiwi/html/img/library_background.png -------------------------------------------------------------------------------- /Pods/Documentation/Kiwi/html/img/title_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/Documentation/Kiwi/html/img/title_background.png -------------------------------------------------------------------------------- /Pods/Headers/A2DynamicDelegate/A2BlockClosure.h: -------------------------------------------------------------------------------- 1 | ../../A2DynamicDelegate/A2BlockClosure.h -------------------------------------------------------------------------------- /Pods/Headers/A2DynamicDelegate/A2BlockDelegate.h: -------------------------------------------------------------------------------- 1 | ../../A2DynamicDelegate/A2BlockDelegate.h -------------------------------------------------------------------------------- /Pods/Headers/A2DynamicDelegate/A2DynamicDelegate.h: -------------------------------------------------------------------------------- 1 | ../../A2DynamicDelegate/A2DynamicDelegate.h -------------------------------------------------------------------------------- /Pods/Headers/AFNetworking/AFHTTPClient.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFHTTPClient.h -------------------------------------------------------------------------------- /Pods/Headers/AFNetworking/AFHTTPRequestOperation.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFHTTPRequestOperation.h -------------------------------------------------------------------------------- /Pods/Headers/AFNetworking/AFImageRequestOperation.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFImageRequestOperation.h -------------------------------------------------------------------------------- /Pods/Headers/AFNetworking/AFJSONRequestOperation.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFJSONRequestOperation.h -------------------------------------------------------------------------------- /Pods/Headers/AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /Pods/Headers/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/AFNetworking/AFPropertyListRequestOperation.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFPropertyListRequestOperation.h -------------------------------------------------------------------------------- /Pods/Headers/AFNetworking/AFURLConnectionOperation.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFURLConnectionOperation.h -------------------------------------------------------------------------------- /Pods/Headers/AFNetworking/AFXMLRequestOperation.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/AFXMLRequestOperation.h -------------------------------------------------------------------------------- /Pods/Headers/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../AFNetworking/AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/ActionSheetPicker2/AbstractActionSheetPicker.h: -------------------------------------------------------------------------------- 1 | ../../ActionSheetPicker2/Pickers/AbstractActionSheetPicker.h -------------------------------------------------------------------------------- /Pods/Headers/ActionSheetPicker2/ActionSheetDatePicker.h: -------------------------------------------------------------------------------- 1 | ../../ActionSheetPicker2/Pickers/ActionSheetDatePicker.h -------------------------------------------------------------------------------- /Pods/Headers/ActionSheetPicker2/ActionSheetDistancePicker.h: -------------------------------------------------------------------------------- 1 | ../../ActionSheetPicker2/Pickers/ActionSheetDistancePicker.h -------------------------------------------------------------------------------- /Pods/Headers/ActionSheetPicker2/ActionSheetPicker.h: -------------------------------------------------------------------------------- 1 | ../../ActionSheetPicker2/ActionSheetPicker.h -------------------------------------------------------------------------------- /Pods/Headers/ActionSheetPicker2/ActionSheetStringPicker.h: -------------------------------------------------------------------------------- 1 | ../../ActionSheetPicker2/Pickers/ActionSheetStringPicker.h -------------------------------------------------------------------------------- /Pods/Headers/ActionSheetPicker2/DistancePickerView.h: -------------------------------------------------------------------------------- 1 | ../../ActionSheetPicker2/Pickers/DistancePickerView.h -------------------------------------------------------------------------------- /Pods/Headers/BWLongTextViewController/BWLongTextViewController.h: -------------------------------------------------------------------------------- 1 | ../../BWLongTextViewController/BWLongTextViewController/BWLongTextViewController.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/A2BlockDelegate+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/A2BlockDelegate+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/BKGlobals.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/BKGlobals.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/BKMacros.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/BKMacros.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/MFMailComposeViewController+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/MessageUI/MFMailComposeViewController+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/MFMessageComposeViewController+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/MessageUI/MFMessageComposeViewController+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/NSArray+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSArray+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/NSCache+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSCache+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/NSDictionary+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSDictionary+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/NSIndexSet+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSIndexSet+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/NSInvocation+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSInvocation+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/NSMutableArray+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSMutableArray+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/NSMutableDictionary+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSMutableDictionary+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/NSMutableIndexSet+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSMutableIndexSet+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/NSMutableSet+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSMutableSet+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/NSObject+AssociatedObjects.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSObject+AssociatedObjects.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/NSObject+BlockObservation.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSObject+BlockObservation.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/NSObject+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSObject+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/NSSet+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSSet+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/NSTimer+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSTimer+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/NSURLConnection+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/NSURLConnection+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/UIActionSheet+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/UIKit/UIActionSheet+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/UIAlertView+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/UIKit/UIAlertView+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/UIBarButtonItem+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/UIKit/UIBarButtonItem+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/UIControl+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/UIKit/UIControl+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/UIGestureRecognizer+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/UIKit/UIGestureRecognizer+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/UIPopoverController+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/UIKit/UIPopoverController+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/UIView+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/UIKit/UIView+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/BlocksKit/UIWebView+BlocksKit.h: -------------------------------------------------------------------------------- 1 | ../../BlocksKit/BlocksKit/UIKit/UIWebView+BlocksKit.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPEOFToken.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Types/CPEOFToken.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPErrorToken.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Types/CPErrorToken.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPGrammar.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Grammar/CPGrammar.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPGrammarInternal.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Grammar/CPGrammarInternal.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPGrammarPrivate.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Grammar/CPGrammarPrivate.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPGrammarSymbol.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Grammar/CPGrammarSymbol.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPIdentifierRecogniser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Recognisers/CPIdentifierRecogniser.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPIdentifierToken.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Types/CPIdentifierToken.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPItem.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/CPShiftReduceParsers/CPItem.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPJSONParser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Built In Parsers/CPJSONParser.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPKeywordRecogniser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Recognisers/CPKeywordRecogniser.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPKeywordToken.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Types/CPKeywordToken.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPLALR1Parser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/CPShiftReduceParsers/CPLALR1Parser.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPLR1Item.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/CPShiftReduceParsers/CPLR1Item.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPLR1Parser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/CPShiftReduceParsers/CPLR1Parser.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPNumberRecogniser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Recognisers/CPNumberRecogniser.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPNumberToken.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Types/CPNumberToken.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPParser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/CPParser.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPQuotedRecogniser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Recognisers/CPQuotedRecogniser.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPQuotedToken.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Types/CPQuotedToken.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPRHSItem.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Grammar/CPRHSItem.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPRHSItemResult.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Grammar/CPRHSItemResult.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPRecoveryAction.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/Error Recovery/CPRecoveryAction.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPRule.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Grammar/CPRule.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPSLRParser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/CPShiftReduceParsers/CPSLRParser.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPShiftReduceAction.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/CPShiftReduceParsers/CPShiftReduceAction.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPShiftReduceActionTable.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/CPShiftReduceParsers/CPShiftReduceActionTable.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPShiftReduceGotoTable.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/CPShiftReduceParsers/CPShiftReduceGotoTable.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPShiftReduceParser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/CPShiftReduceParser.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPShiftReduceParserProtectedMethods.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/CPShiftReduceParsers/CPShiftReduceParserProtectedMethods.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPShiftReduceState.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Parsers/CPShiftReduceParsers/CPShiftReduceState.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPSyntaxTree.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Syntax Tree/CPSyntaxTree.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPToken.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Types/CPToken.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPTokenRecogniser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Recognisers/CPTokenRecogniser.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPTokenStream.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/CPTokenStream.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPTokeniser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/CPTokeniser.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPWhiteSpaceRecogniser.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Recognisers/CPWhiteSpaceRecogniser.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CPWhiteSpaceToken.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/Tokenisation/Token Types/CPWhiteSpaceToken.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/CoreParse.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/CoreParse.h -------------------------------------------------------------------------------- /Pods/Headers/CoreParse/NSSetFunctional.h: -------------------------------------------------------------------------------- 1 | ../../CoreParse/CoreParse/NSSetFunctional.h -------------------------------------------------------------------------------- /Pods/Headers/JSONKit/JSONKit.h: -------------------------------------------------------------------------------- 1 | ../../JSONKit/JSONKit.h -------------------------------------------------------------------------------- /Pods/Headers/KSReachability/ARCSafe_MemMgmt.h: -------------------------------------------------------------------------------- 1 | ../../KSReachability/ARCSafe_MemMgmt.h -------------------------------------------------------------------------------- /Pods/Headers/KSReachability/KSReachability.h: -------------------------------------------------------------------------------- 1 | ../../KSReachability/KSReachability.h -------------------------------------------------------------------------------- /Pods/Headers/MagicalRecord/CoreData+MagicalRecord.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/CoreData+MagicalRecord.h -------------------------------------------------------------------------------- /Pods/Headers/MagicalRecord/MagicalImportFunctions.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Categories/DataImport/MagicalImportFunctions.h -------------------------------------------------------------------------------- /Pods/Headers/MagicalRecord/MagicalRecord+Actions.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Core/MagicalRecord+Actions.h -------------------------------------------------------------------------------- /Pods/Headers/MagicalRecord/MagicalRecord+ErrorHandling.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Core/MagicalRecord+ErrorHandling.h -------------------------------------------------------------------------------- /Pods/Headers/MagicalRecord/MagicalRecord+Options.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Core/MagicalRecord+Options.h -------------------------------------------------------------------------------- /Pods/Headers/MagicalRecord/MagicalRecord+Setup.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Core/MagicalRecord+Setup.h -------------------------------------------------------------------------------- /Pods/Headers/MagicalRecord/MagicalRecord+ShorthandSupport.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Core/MagicalRecord+ShorthandSupport.h -------------------------------------------------------------------------------- /Pods/Headers/MagicalRecord/MagicalRecord+iCloud.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Core/MagicalRecord+iCloud.h -------------------------------------------------------------------------------- /Pods/Headers/MagicalRecord/MagicalRecord.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Core/MagicalRecord.h -------------------------------------------------------------------------------- /Pods/Headers/MagicalRecord/MagicalRecordShorthand.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Core/MagicalRecordShorthand.h -------------------------------------------------------------------------------- /Pods/Headers/MagicalRecord/NSAttributeDescription+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Categories/DataImport/NSAttributeDescription+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/Headers/MagicalRecord/NSEntityDescription+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Categories/DataImport/NSEntityDescription+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/Headers/MagicalRecord/NSManagedObject+MagicalAggregation.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalAggregation.h -------------------------------------------------------------------------------- /Pods/Headers/MagicalRecord/NSManagedObject+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/Headers/MagicalRecord/NSManagedObject+MagicalFinders.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalFinders.h -------------------------------------------------------------------------------- /Pods/Headers/MagicalRecord/NSManagedObject+MagicalRecord.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalRecord.h -------------------------------------------------------------------------------- /Pods/Headers/MagicalRecord/NSManagedObject+MagicalRequests.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalRequests.h -------------------------------------------------------------------------------- /Pods/Headers/MagicalRecord/NSManagedObjectContext+MagicalObserving.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalObserving.h -------------------------------------------------------------------------------- /Pods/Headers/MagicalRecord/NSManagedObjectContext+MagicalRecord.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalRecord.h -------------------------------------------------------------------------------- /Pods/Headers/MagicalRecord/NSManagedObjectContext+MagicalSaves.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalSaves.h -------------------------------------------------------------------------------- /Pods/Headers/MagicalRecord/NSManagedObjectContext+MagicalThreading.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalThreading.h -------------------------------------------------------------------------------- /Pods/Headers/MagicalRecord/NSManagedObjectModel+MagicalRecord.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Categories/NSManagedObjectModel+MagicalRecord.h -------------------------------------------------------------------------------- /Pods/Headers/MagicalRecord/NSNumber+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Categories/DataImport/NSNumber+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/Headers/MagicalRecord/NSObject+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Categories/DataImport/NSObject+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/Headers/MagicalRecord/NSPersistentStore+MagicalRecord.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Categories/NSPersistentStore+MagicalRecord.h -------------------------------------------------------------------------------- /Pods/Headers/MagicalRecord/NSPersistentStoreCoordinator+MagicalRecord.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Categories/NSPersistentStoreCoordinator+MagicalRecord.h -------------------------------------------------------------------------------- /Pods/Headers/MagicalRecord/NSRelationshipDescription+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Categories/DataImport/NSRelationshipDescription+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/Headers/MagicalRecord/NSString+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | ../../MagicalRecord/MagicalRecord/Categories/DataImport/NSString+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/Headers/SOCKit/SOCKit.h: -------------------------------------------------------------------------------- 1 | ../../SOCKit/SOCKit.h -------------------------------------------------------------------------------- /Pods/Headers/SSKeychain/SSKeychain.h: -------------------------------------------------------------------------------- 1 | ../../SSKeychain/SSKeychain.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/NSArray+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/NSArray+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/NSBundle+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/NSBundle+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/NSData+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/NSData+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/NSDate+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/NSDate+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/NSDictionary+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/NSDictionary+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/NSNumber+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/NSNumber+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/NSString+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/NSString+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/NSURL+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/NSURL+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSAddressBarTextField.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSAddressBarTextField.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSAddressBarTextFieldBackgroundView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSAddressBarTextFieldBackgroundView.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSAddressBarTextFieldBackgroundViewInnerView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSAddressBarTextFieldBackgroundViewInnerView.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSAnimatedImageView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSAnimatedImageView.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSBadgeTableViewCell.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSBadgeTableViewCell.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSBadgeView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSBadgeView.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSBorderedView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSBorderedView.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSButton.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSButton.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSCategories.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSCategories.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSCollectionView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSCollectionView.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSCollectionViewController.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSCollectionViewController.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSCollectionViewExtremityTableViewCell.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSCollectionViewExtremityTableViewCell.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSCollectionViewInternal.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSCollectionViewInternal.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSCollectionViewItem.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSCollectionViewItem.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSCollectionViewItemInternal.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSCollectionViewItemInternal.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSCollectionViewItemTableViewCell.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSCollectionViewItemTableViewCell.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSCollectionViewTableView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSCollectionViewTableView.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSConcurrentOperation.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSConcurrentOperation.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSDrawingUtilities.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSDrawingUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSGradientView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSGradientView.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSHUDView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSHUDView.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSHUDWindow.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSHUDWindow.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSLabel.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSLabel.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSLineView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSLineView.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSLoadingView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSLoadingView.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSPickerViewController.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSPickerViewController.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSPieProgressView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSPieProgressView.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSRateLimit.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSRateLimit.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSRatingPicker.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSRatingPicker.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSRatingPickerScrollView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSRatingPickerScrollView.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSRatingPickerViewController.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSRatingPickerViewController.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSTextField.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSTextField.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSTextView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSTextView.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSToolkit.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSToolkit.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSToolkitDefines.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSToolkitDefines.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/SSWebView.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/SSWebView.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/UIApplication+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/UIApplication+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/UIColor+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/UIColor+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/UIControl+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/UIControl+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/UIDevice+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/UIDevice+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/UIImage+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/UIImage+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/UIScreen+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/UIScreen+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/UIScrollView+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/UIScrollView+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/UIView+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/UIView+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/SSToolkit/UIViewController+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | ../../SSToolkit/SSToolkit/UIViewController+SSToolkitAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Underscore.m/USArrayWrapper.h: -------------------------------------------------------------------------------- 1 | ../../Underscore.m/Underscore/USArrayWrapper.h -------------------------------------------------------------------------------- /Pods/Headers/Underscore.m/USConstants.h: -------------------------------------------------------------------------------- 1 | ../../Underscore.m/Underscore/USConstants.h -------------------------------------------------------------------------------- /Pods/Headers/Underscore.m/USDictionaryWrapper.h: -------------------------------------------------------------------------------- 1 | ../../Underscore.m/Underscore/USDictionaryWrapper.h -------------------------------------------------------------------------------- /Pods/Headers/Underscore.m/Underscore.h: -------------------------------------------------------------------------------- 1 | ../../Underscore.m/Underscore/Underscore.h -------------------------------------------------------------------------------- /Pods/Headers/libffi/ffi.h: -------------------------------------------------------------------------------- 1 | ../../libffi/ios/include/ffi.h -------------------------------------------------------------------------------- /Pods/Headers/libffi/ffi_armv7.h: -------------------------------------------------------------------------------- 1 | ../../libffi/ios/include/ffi_armv7.h -------------------------------------------------------------------------------- /Pods/Headers/libffi/ffi_common.h: -------------------------------------------------------------------------------- 1 | ../../libffi/ios/include/ffi_common.h -------------------------------------------------------------------------------- /Pods/Headers/libffi/ffi_i386.h: -------------------------------------------------------------------------------- 1 | ../../libffi/ios/include/ffi_i386.h -------------------------------------------------------------------------------- /Pods/Headers/libffi/fficonfig.h: -------------------------------------------------------------------------------- 1 | ../../libffi/ios/include/fficonfig.h -------------------------------------------------------------------------------- /Pods/Headers/libffi/fficonfig_armv7.h: -------------------------------------------------------------------------------- 1 | ../../libffi/ios/include/fficonfig_armv7.h -------------------------------------------------------------------------------- /Pods/Headers/libffi/fficonfig_i386.h: -------------------------------------------------------------------------------- 1 | ../../libffi/ios/include/fficonfig_i386.h -------------------------------------------------------------------------------- /Pods/Headers/libffi/ffitarget.h: -------------------------------------------------------------------------------- 1 | ../../libffi/ios/include/ffitarget.h -------------------------------------------------------------------------------- /Pods/Headers/libffi/ffitarget_armv7.h: -------------------------------------------------------------------------------- 1 | ../../libffi/ios/include/ffitarget_armv7.h -------------------------------------------------------------------------------- /Pods/Headers/libffi/ffitarget_i386.h: -------------------------------------------------------------------------------- 1 | ../../libffi/ios/include/ffitarget_i386.h -------------------------------------------------------------------------------- /Pods/Local Podspecs/BWObjectRouter.podspec: -------------------------------------------------------------------------------- 1 | Pod::Spec.new do |s| 2 | s.name = "BWObjectRouter" 3 | s.version = "0.1.0" 4 | s.summary = "Small library that generate route with static or dynamic data." 5 | s.homepage = "https://github.com/brunow/BWObjectRouter" 6 | s.license = 'Apache License 2.0' 7 | s.author = { "Bruno Wernimont" => "hello@brunowernimont.be" } 8 | s.source = { :git => "https://github.com/brunow/BWObjectRouter.git", :tag => "0.1.0" } 9 | s.platform = :ios, '5.0' 10 | s.source_files = 'BWObjectRouter/*.{h,m}' 11 | s.requires_arc = true 12 | s.dependency 'SOCKit', '~> 1.1' 13 | end -------------------------------------------------------------------------------- /Pods/Local Podspecs/BWObjectSerializer.podspec: -------------------------------------------------------------------------------- 1 | Pod::Spec.new do |s| 2 | s.name = "BWObjectSerializer" 3 | s.version = "0.1.1" 4 | s.summary = "Small library that transform an object into a dictionary that can be send to a web service." 5 | s.homepage = "https://github.com/brunow/BWObjectSerializer" 6 | s.license = 'Apache License 2.0' 7 | s.author = { "Bruno Wernimont" => "hello@brunowernimont.be" } 8 | s.source = { :git => "https://github.com/brunow/BWObjectSerializer.git", :tag => "0.1.1" } 9 | s.platform = :ios, '5.0' 10 | s.source_files = 'BWObjectSerializer/*.{h,m}' 11 | s.requires_arc = true 12 | end -------------------------------------------------------------------------------- /Pods/Local Podspecs/BWSelectViewController.podspec: -------------------------------------------------------------------------------- 1 | Pod::Spec.new do |s| 2 | s.name = "BWSelectViewController" 3 | s.version = "0.1.0" 4 | s.summary = "Controller that show a list of items that can be selectable." 5 | s.homepage = "https://github.com/brunow/BWSelectViewController" 6 | s.license = 'Apache License 2.0' 7 | s.author = { "Bruno Wernimont" => "hello@brunowernimont.be" } 8 | s.source = { :git => "https://github.com/brunow/BWSelectViewController.git", :tag => "0.1.0" } 9 | s.platform = :ios, '5.0' 10 | s.source_files = 'BWSelectViewController/*.{h,m}' 11 | s.requires_arc = true 12 | end -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/DataImport/NSAttributeDescription+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSAttributeDescription+MagicalDataImport.h 3 | // Magical Record 4 | // 5 | // Created by Saul Mora on 9/4/11. 6 | // Copyright 2011 Magical Panda Software LLC. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface NSAttributeDescription (MagicalRecord_DataImport) 12 | 13 | - (NSString *) MR_primaryKey; 14 | - (id) MR_valueForKeyPath:(NSString *)keyPath fromObjectData:(id)objectData; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/DataImport/NSEntityDescription+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSEntityDescription+MagicalDataImport.h 3 | // Magical Record 4 | // 5 | // Created by Saul Mora on 9/5/11. 6 | // Copyright 2011 Magical Panda Software LLC. All rights reserved. 7 | // 8 | 9 | 10 | @interface NSEntityDescription (MagicalRecord_DataImport) 11 | 12 | - (NSAttributeDescription *) MR_primaryAttributeToRelateBy; 13 | - (NSManagedObject *) MR_createInstanceInContext:(NSManagedObjectContext *)context; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/DataImport/NSNumber+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSNumber+MagicalDataImport.h 3 | // Magical Record 4 | // 5 | // Created by Saul Mora on 9/4/11. 6 | // Copyright 2011 Magical Panda Software LLC. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface NSNumber (MagicalRecord_DataImport) 12 | 13 | - (NSString *) MR_lookupKeyForAttribute:(NSAttributeDescription *)attributeInfo; 14 | - (id) MR_relatedValueForRelationship:(NSRelationshipDescription *)relationshipInfo; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/DataImport/NSNumber+MagicalDataImport.m: -------------------------------------------------------------------------------- 1 | // 2 | // NSNumber+MagicalDataImport.m 3 | // Magical Record 4 | // 5 | // Created by Saul Mora on 9/4/11. 6 | // Copyright 2011 Magical Panda Software LLC. All rights reserved. 7 | // 8 | 9 | #import "NSNumber+MagicalDataImport.h" 10 | 11 | 12 | 13 | @implementation NSNumber (MagicalRecord_DataImport) 14 | 15 | - (id) MR_relatedValueForRelationship:(NSRelationshipDescription *)relationshipInfo 16 | { 17 | return self; 18 | } 19 | 20 | - (NSString *) MR_lookupKeyForAttribute:(NSAttributeDescription *)attributeInfo 21 | { 22 | return nil; 23 | } 24 | 25 | @end 26 | -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/DataImport/NSObject+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSDictionary+MagicalDataImport.h 3 | // Magical Record 4 | // 5 | // Created by Saul Mora on 9/4/11. 6 | // Copyright 2011 Magical Panda Software LLC. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface NSObject (MagicalRecord_DataImport) 12 | 13 | - (NSString *) MR_lookupKeyForAttribute:(NSAttributeDescription *)attributeInfo; 14 | - (id) MR_valueForAttribute:(NSAttributeDescription *)attributeInfo; 15 | 16 | - (NSString *) MR_lookupKeyForRelationship:(NSRelationshipDescription *)relationshipInfo; 17 | - (id) MR_relatedValueForRelationship:(NSRelationshipDescription *)relationshipInfo; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/DataImport/NSRelationshipDescription+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSRelationshipDescription+MagicalDataImport.h 3 | // Magical Record 4 | // 5 | // Created by Saul Mora on 9/4/11. 6 | // Copyright 2011 Magical Panda Software LLC. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface NSRelationshipDescription (MagicalRecord_DataImport) 12 | 13 | - (NSString *) MR_primaryKey; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/DataImport/NSString+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSString+MagicalRecord_MagicalDataImport.h 3 | // Magical Record 4 | // 5 | // Created by Saul Mora on 12/10/11. 6 | // Copyright (c) 2011 Magical Panda Software LLC. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface NSString (MagicalRecord_DataImport) 12 | 13 | - (NSString *) MR_capitalizedFirstCharacterString; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/DataImport/NSString+MagicalDataImport.m: -------------------------------------------------------------------------------- 1 | // 2 | // NSString+MagicalRecord_MagicalDataImport.m 3 | // Magical Record 4 | // 5 | // Created by Saul Mora on 12/10/11. 6 | // Copyright (c) 2011 Magical Panda Software LLC. All rights reserved. 7 | // 8 | 9 | #import "NSString+MagicalDataImport.h" 10 | 11 | 12 | @implementation NSString (MagicalRecord_DataImport) 13 | 14 | - (NSString *) MR_capitalizedFirstCharacterString; 15 | { 16 | if ([self length] > 0) 17 | { 18 | NSString *firstChar = [[self substringToIndex:1] capitalizedString]; 19 | return [firstChar stringByAppendingString:[self substringFromIndex:1]]; 20 | } 21 | return self; 22 | } 23 | 24 | @end 25 | 26 | -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalThreading.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSManagedObjectContext+MagicalThreading.h 3 | // Magical Record 4 | // 5 | // Created by Saul Mora on 3/9/12. 6 | // Copyright (c) 2012 Magical Panda Software LLC. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface NSManagedObjectContext (MagicalThreading) 12 | 13 | + (NSManagedObjectContext *) MR_contextForCurrentThread; 14 | + (void) MR_resetContextForCurrentThread; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Core/MagicalRecord+ErrorHandling.h: -------------------------------------------------------------------------------- 1 | // 2 | // MagicalRecord+ErrorHandling.h 3 | // Magical Record 4 | // 5 | // Created by Saul Mora on 3/6/12. 6 | // Copyright (c) 2012 Magical Panda Software LLC. All rights reserved. 7 | // 8 | 9 | #import "MagicalRecord.h" 10 | 11 | @interface MagicalRecord (ErrorHandling) 12 | 13 | + (void) handleErrors:(NSError *)error; 14 | - (void) handleErrors:(NSError *)error; 15 | 16 | + (void) setErrorHandlerTarget:(id)target action:(SEL)action; 17 | + (SEL) errorHandlerAction; 18 | + (id) errorHandlerTarget; 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Core/MagicalRecord+Setup.h: -------------------------------------------------------------------------------- 1 | // 2 | // MagicalRecord+Setup.h 3 | // Magical Record 4 | // 5 | // Created by Saul Mora on 3/7/12. 6 | // Copyright (c) 2012 Magical Panda Software LLC. All rights reserved. 7 | // 8 | 9 | #import "MagicalRecord.h" 10 | 11 | @interface MagicalRecord (Setup) 12 | 13 | + (void) setupCoreDataStack; 14 | + (void) setupCoreDataStackWithInMemoryStore; 15 | + (void) setupAutoMigratingCoreDataStack; 16 | 17 | + (void) setupCoreDataStackWithStoreNamed:(NSString *)storeName; 18 | + (void) setupCoreDataStackWithAutoMigratingSqliteStoreNamed:(NSString *)storeName; 19 | 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Core/MagicalRecord+ShorthandSupport.h: -------------------------------------------------------------------------------- 1 | // 2 | // MagicalRecord+ShorthandSupport.h 3 | // Magical Record 4 | // 5 | // Created by Saul Mora on 3/6/12. 6 | // Copyright (c) 2012 Magical Panda Software LLC. All rights reserved. 7 | // 8 | 9 | #import "MagicalRecord.h" 10 | 11 | @interface MagicalRecord (ShorthandSupport) 12 | 13 | #ifdef MR_SHORTHAND 14 | + (void) swizzleShorthandMethods; 15 | #endif 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /Pods/Nimbus/NOTICE: -------------------------------------------------------------------------------- 1 | 2 | Copyright 2011 Jeff Verkoeyen 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | 16 | See the AUTHORS and DONORS files for more information about Nimbus 17 | contributors. -------------------------------------------------------------------------------- /Pods/Nimbus/src/webcontroller/resources/NimbusWebController.bundle/gfx/backIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/Nimbus/src/webcontroller/resources/NimbusWebController.bundle/gfx/backIcon.png -------------------------------------------------------------------------------- /Pods/Nimbus/src/webcontroller/resources/NimbusWebController.bundle/gfx/backIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/Nimbus/src/webcontroller/resources/NimbusWebController.bundle/gfx/backIcon@2x.png -------------------------------------------------------------------------------- /Pods/Nimbus/src/webcontroller/resources/NimbusWebController.bundle/gfx/forwardIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/Nimbus/src/webcontroller/resources/NimbusWebController.bundle/gfx/forwardIcon.png -------------------------------------------------------------------------------- /Pods/Nimbus/src/webcontroller/resources/NimbusWebController.bundle/gfx/forwardIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/Nimbus/src/webcontroller/resources/NimbusWebController.bundle/gfx/forwardIcon@2x.png -------------------------------------------------------------------------------- /Pods/ParseKit/include/ParseKit/PKEmailState.h: -------------------------------------------------------------------------------- 1 | // 2 | // PKEmailState.h 3 | // ParseKit 4 | // 5 | // Created by Todd Ditchendorf on 3/31/10. 6 | // Copyright 2010 Todd Ditchendorf. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | /*! 13 | @class PKEmailState 14 | @brief An email state returns an email address from a reader. 15 | @details 16 | */ 17 | @interface PKEmailState : PKTokenizerState { 18 | PKUniChar c; 19 | PKUniChar lastChar; 20 | } 21 | 22 | @end 23 | -------------------------------------------------------------------------------- /Pods/ParseKit/include/ParseKit/PKHashtagState.h: -------------------------------------------------------------------------------- 1 | // 2 | // PKHashtagState.h 3 | // ParseKit 4 | // 5 | // Created by Todd Ditchendorf on 10/22/11. 6 | // Copyright 2011 Todd Ditchendorf. All rights reserved. 7 | // 8 | 9 | #if PK_INCLUDE_TWITTER_STATE 10 | #import 11 | #import 12 | 13 | /*! 14 | @class PKHashtagState 15 | @brief A hashtag state returns a hashtag from a reader. 16 | @details 17 | */ 18 | @interface PKHashtagState : PKTokenizerState { 19 | 20 | } 21 | 22 | @end 23 | #endif 24 | -------------------------------------------------------------------------------- /Pods/ParseKit/include/ParseKit/PKTwitterState.h: -------------------------------------------------------------------------------- 1 | // 2 | // PKTwitterState.h 3 | // ParseKit 4 | // 5 | // Created by Todd Ditchendorf on 4/1/10. 6 | // Copyright 2010 Todd Ditchendorf. All rights reserved. 7 | // 8 | 9 | #if PK_INCLUDE_TWITTER_STATE 10 | #import 11 | #import 12 | 13 | /*! 14 | @class PKTwitterState 15 | @brief A twitter state returns a twitter handle from a reader. 16 | @details 17 | */ 18 | @interface PKTwitterState : PKTokenizerState { 19 | 20 | } 21 | 22 | @end 23 | #endif 24 | -------------------------------------------------------------------------------- /Pods/ParseKit/include/ParseKit/PKURLState.h: -------------------------------------------------------------------------------- 1 | // 2 | // PKURLState.h 3 | // ParseKit 4 | // 5 | // Created by Todd Ditchendorf on 3/26/10. 6 | // Copyright 2010 Todd Ditchendorf. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | /*! 13 | @class PKURLState 14 | @brief A URL state returns a URL from a reader. 15 | @details 16 | */ 17 | @interface PKURLState : PKTokenizerState { 18 | PKUniChar c; 19 | PKUniChar lastChar; 20 | BOOL allowsWWWPrefix; 21 | } 22 | 23 | @property (nonatomic) BOOL allowsWWWPrefix; 24 | @end 25 | -------------------------------------------------------------------------------- /Pods/ParseKit/src/NSArray+ParseKitAdditions.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSArray+ParseKitAdditions.h 3 | // ParseKit 4 | // 5 | // Created by Todd Ditchendorf on 12/16/08. 6 | // Copyright 2009 Todd Ditchendorf. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface NSArray (ParseKitAdditions) 12 | - (NSArray *)reversedArray; 13 | - (NSMutableArray *)reversedMutableArray; 14 | @end 15 | -------------------------------------------------------------------------------- /Pods/ParseKit/src/NSArray+ParseKitAdditions.m: -------------------------------------------------------------------------------- 1 | // 2 | // NSArray+ParseKitAdditions.m 3 | // ParseKit 4 | // 5 | // Created by Todd Ditchendorf on 12/16/08. 6 | // Copyright 2009 Todd Ditchendorf. All rights reserved. 7 | // 8 | 9 | #import "NSArray+ParseKitAdditions.h" 10 | 11 | @implementation NSArray (ParseKitAdditions) 12 | 13 | - (NSArray *)reversedArray { 14 | return [[[self reversedMutableArray] copy] autorelease]; 15 | } 16 | 17 | 18 | - (NSMutableArray *)reversedMutableArray { 19 | NSMutableArray *result = [NSMutableArray arrayWithCapacity:[self count]]; 20 | for (id obj in [self reverseObjectEnumerator]) { 21 | [result addObject:obj]; 22 | } 23 | return result; 24 | } 25 | 26 | @end 27 | -------------------------------------------------------------------------------- /Pods/ParseKit/src/NSString+ParseKitAdditions.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSString+ParseKitAdditions.h 3 | // ParseKit 4 | // 5 | // Created by Todd Ditchendorf on 11/5/08. 6 | // Copyright 2009 Todd Ditchendorf. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface NSString (ParseKitAdditions) 12 | - (NSString *)stringByTrimmingQuotes; 13 | @end 14 | -------------------------------------------------------------------------------- /Pods/Pods-NotepadTests-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | -------------------------------------------------------------------------------- /Pods/Pods-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import 6 | #if __IPHONE_OS_VERSION_MIN_REQUIRED 7 | #import 8 | #import 9 | #else 10 | #import 11 | #import 12 | #endif 13 | #ifdef __OBJC__ 14 | #define MR_SHORTHAND 15 | #import "CoreData+MagicalRecord.h" 16 | #endif 17 | #ifdef __OBJC__ 18 | #import "SSToolkitDefines.h" 19 | #endif 20 | -------------------------------------------------------------------------------- /Pods/PodsDummy.m: -------------------------------------------------------------------------------- 1 | @interface PodsDummy : NSObject 2 | @end 3 | @implementation PodsDummy 4 | @end 5 | -------------------------------------------------------------------------------- /Pods/PodsDummy_Pods.m: -------------------------------------------------------------------------------- 1 | @interface PodsDummy_Pods : NSObject 2 | @end 3 | @implementation PodsDummy_Pods 4 | @end 5 | -------------------------------------------------------------------------------- /Pods/PodsDummy_Pods_NotepadTests.m: -------------------------------------------------------------------------------- 1 | @interface PodsDummy_Pods_NotepadTests : NSObject 2 | @end 3 | @implementation PodsDummy_Pods_NotepadTests 4 | @end 5 | -------------------------------------------------------------------------------- /Pods/Reachability/Reachability.podspec: -------------------------------------------------------------------------------- 1 | Pod::Spec.new do |s| 2 | s.name = 'Reachability' 3 | s.version = '3.0.0' 4 | s.license = 'BSD' 5 | s.homepage = 'https://github.com/tonymillion/Reachability' 6 | s.authors = { 'Tony Million' => 'tonymillion@gmail.com' } 7 | s.summary = 'ARC and GCD Compatible Reachability Class for iOS. Drop in replacement for Apple Reachability.' 8 | s.source = { :git => 'https://github.com/tonymillion/Reachability.git', :tag => '3.0.0' } 9 | s.source_files = 'Reachability.{h,m}' 10 | s.framework = 'SystemConfiguration' 11 | s.requires_arc = true 12 | end 13 | -------------------------------------------------------------------------------- /Pods/SOCKit/NOTICE: -------------------------------------------------------------------------------- 1 | 2 | Copyright 2011-2012 Jeff Verkoeyen 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | 16 | See the AUTHORS file for a list of contributors to SOCKit. -------------------------------------------------------------------------------- /Pods/SOCKit/SOCKit.podspec: -------------------------------------------------------------------------------- 1 | Pod::Spec.new do |s| 2 | s.name = "SOCKit" 3 | s.version = "1.0" 4 | s.summary = "String <-> Object Coder for Objective-C." 5 | s.homepage = "http://github.com/jverkoey/SOCKit" 6 | s.author = { "Jeff Verkoeyen" => "jverkoey@gmail.com" } 7 | s.source = { :git => "https://github.com/jverkoey/sockit.git", :tag => "1.0" } 8 | 9 | # TODO uncomment when CocoaPods 0.6 is released 10 | # s.license = { :type => 'Apache License Version 2.0', :file => 'LICENSE' } 11 | 12 | s.description = 'With SOCKit and SOCPattern you can easily transform objects into strings and vice versa.' 13 | 14 | s.source_files = '*.{h,m}' 15 | s.clean_paths = "tests", "SOCKit.xcodeproj" 16 | end 17 | -------------------------------------------------------------------------------- /Pods/SSToolkit/Assets/Images/SSAddressBarTextFieldBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/SSToolkit/Assets/Images/SSAddressBarTextFieldBackground.png -------------------------------------------------------------------------------- /Pods/SSToolkit/Assets/Images/SSAddressBarTextFieldBackground@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/SSToolkit/Assets/Images/SSAddressBarTextFieldBackground@2x.png -------------------------------------------------------------------------------- /Pods/SSToolkit/Assets/Images/SSAddressBarTextFieldReload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/SSToolkit/Assets/Images/SSAddressBarTextFieldReload.png -------------------------------------------------------------------------------- /Pods/SSToolkit/Assets/Images/SSAddressBarTextFieldReload@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/SSToolkit/Assets/Images/SSAddressBarTextFieldReload@2x.png -------------------------------------------------------------------------------- /Pods/SSToolkit/Assets/Images/SSAddressBarTextFieldStop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/SSToolkit/Assets/Images/SSAddressBarTextFieldStop.png -------------------------------------------------------------------------------- /Pods/SSToolkit/Assets/Images/SSAddressBarTextFieldStop@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/SSToolkit/Assets/Images/SSAddressBarTextFieldStop@2x.png -------------------------------------------------------------------------------- /Pods/SSToolkit/Assets/Images/SSVignetteiPad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/SSToolkit/Assets/Images/SSVignetteiPad.png -------------------------------------------------------------------------------- /Pods/SSToolkit/Assets/Images/SSVignetteiPhone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/SSToolkit/Assets/Images/SSVignetteiPhone.png -------------------------------------------------------------------------------- /Pods/SSToolkit/Assets/Images/SSVignetteiPhone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/SSToolkit/Assets/Images/SSVignetteiPhone@2x.png -------------------------------------------------------------------------------- /Pods/SSToolkit/Assets/Images/UISegmentBarButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/SSToolkit/Assets/Images/UISegmentBarButton.png -------------------------------------------------------------------------------- /Pods/SSToolkit/Assets/Images/UISegmentBarButton@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/SSToolkit/Assets/Images/UISegmentBarButton@2x.png -------------------------------------------------------------------------------- /Pods/SSToolkit/Assets/Images/UISegmentBarButtonHighlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/SSToolkit/Assets/Images/UISegmentBarButtonHighlighted.png -------------------------------------------------------------------------------- /Pods/SSToolkit/Assets/Images/UISegmentBarButtonHighlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/SSToolkit/Assets/Images/UISegmentBarButtonHighlighted@2x.png -------------------------------------------------------------------------------- /Pods/SSToolkit/Assets/Images/UISegmentBarDivider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/SSToolkit/Assets/Images/UISegmentBarDivider.png -------------------------------------------------------------------------------- /Pods/SSToolkit/Assets/Images/UISegmentBarDivider@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/SSToolkit/Assets/Images/UISegmentBarDivider@2x.png -------------------------------------------------------------------------------- /Pods/SSToolkit/Assets/Images/UISegmentBarDividerHighlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/SSToolkit/Assets/Images/UISegmentBarDividerHighlighted.png -------------------------------------------------------------------------------- /Pods/SSToolkit/Assets/Images/UISegmentBarDividerHighlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/SSToolkit/Assets/Images/UISegmentBarDividerHighlighted@2x.png -------------------------------------------------------------------------------- /Pods/SSToolkit/Assets/Images/gray-star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/SSToolkit/Assets/Images/gray-star.png -------------------------------------------------------------------------------- /Pods/SSToolkit/Assets/Images/gray-star@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/SSToolkit/Assets/Images/gray-star@2x.png -------------------------------------------------------------------------------- /Pods/SSToolkit/Assets/Images/hud-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/SSToolkit/Assets/Images/hud-check.png -------------------------------------------------------------------------------- /Pods/SSToolkit/Assets/Images/hud-check@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/SSToolkit/Assets/Images/hud-check@2x.png -------------------------------------------------------------------------------- /Pods/SSToolkit/Assets/Images/hud-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/SSToolkit/Assets/Images/hud-x.png -------------------------------------------------------------------------------- /Pods/SSToolkit/Assets/Images/hud-x@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/SSToolkit/Assets/Images/hud-x@2x.png -------------------------------------------------------------------------------- /Pods/SSToolkit/Assets/Images/orange-star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/SSToolkit/Assets/Images/orange-star.png -------------------------------------------------------------------------------- /Pods/SSToolkit/Assets/Images/orange-star@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/SSToolkit/Assets/Images/orange-star@2x.png -------------------------------------------------------------------------------- /Pods/SSToolkit/Assets/ja.lproj/SSToolkit.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/SSToolkit/Assets/ja.lproj/SSToolkit.strings -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/NSBundle+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSBundle+SSToolkitAdditions.h 3 | // SSToolkit 4 | // 5 | // Created by Sam Soffes on 3/22/12. 6 | // Copyright (c) 2012 Sam Soffes. All rights reserved. 7 | // 8 | 9 | #define SSToolkitLocalizedString(key) [[NSBundle ssToolkitBundle] localizedStringForKey:(key) value:@"" table:@"SSToolkit"] 10 | 11 | @interface NSBundle (SSToolkitAdditions) 12 | 13 | + (NSBundle *)ssToolkitBundle; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/NSBundle+SSToolkitAdditions.m: -------------------------------------------------------------------------------- 1 | // 2 | // NSBundle+SSToolkitAdditions.m 3 | // SSToolkit 4 | // 5 | // Created by Sam Soffes on 3/22/12. 6 | // Copyright (c) 2012 Sam Soffes. All rights reserved. 7 | // 8 | 9 | #import "NSBundle+SSToolkitAdditions.h" 10 | 11 | @implementation NSBundle (SSToolkitAdditions) 12 | 13 | + (NSBundle *)ssToolkitBundle { 14 | static NSBundle *ssToolkitBundle = nil; 15 | static dispatch_once_t onceToken; 16 | dispatch_once(&onceToken, ^{ 17 | NSString *bundlePath = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"SSToolkitResources.bundle"]; 18 | ssToolkitBundle = [[NSBundle alloc] initWithPath:bundlePath]; 19 | }); 20 | return ssToolkitBundle; 21 | } 22 | 23 | @end 24 | -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/NSNumber+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSNumber+SSToolkitAdditions.h 3 | // SSToolkit 4 | // 5 | // Created by Alexander Zats on 5/22/12. 6 | // Copyright (c) 2012 Sam Soffes. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface NSNumber (SSToolkitAdditions) 12 | 13 | ///-------------- 14 | /// @name Date from timestamp 15 | ///-------------- 16 | 17 | /** 18 | Creates an instance of `NSDate` using current number as timestamp. 19 | @return NSDate with current number as unix timestamp or `nil` if current number contains 0. 20 | */ 21 | - (NSDate *)dateValue; 22 | 23 | @end 24 | -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/NSNumber+SSToolkitAdditions.m: -------------------------------------------------------------------------------- 1 | // 2 | // NSNumber+SSToolkitAdditions.m 3 | // SSToolkit 4 | // 5 | // Created by Alexander Zats on 5/22/12. 6 | // Copyright (c) 2012 Sam Soffes. All rights reserved. 7 | // 8 | 9 | #import "NSNumber+SSToolkitAdditions.h" 10 | 11 | @implementation NSNumber (SSToolkitAdditions) 12 | 13 | - (NSDate *)dateValue 14 | { 15 | NSTimeInterval timestamp = [self doubleValue]; 16 | if (!timestamp) { 17 | return nil; 18 | } 19 | return [NSDate dateWithTimeIntervalSince1970:timestamp]; 20 | } 21 | 22 | @end 23 | -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/NSURL+SSToolkitAdditions.m: -------------------------------------------------------------------------------- 1 | // 2 | // NSURL+SSToolkitAdditions.m 3 | // SSToolkit 4 | // 5 | // Created by Sam Soffes on 4/27/10. 6 | // Copyright 2010-2011 Sam Soffes. All rights reserved. 7 | // 8 | 9 | #import "NSURL+SSToolkitAdditions.h" 10 | #import "NSDictionary+SSToolkitAdditions.h" 11 | 12 | @implementation NSURL (SSToolkitAdditions) 13 | 14 | + (id)URLWithFormat:(NSString *)format, ... { 15 | va_list arguments; 16 | va_start(arguments, format); 17 | NSString *string = [[NSString alloc] initWithFormat:format arguments:arguments]; 18 | va_end(arguments); 19 | 20 | return [NSURL URLWithString:string]; 21 | } 22 | 23 | 24 | - (NSDictionary *)queryDictionary { 25 | return [NSDictionary dictionaryWithFormEncodedString:self.query]; 26 | } 27 | 28 | @end 29 | -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSAddressBarTextField.h: -------------------------------------------------------------------------------- 1 | // 2 | // SSAddressBarTextField.h 3 | // SSToolkit 4 | // 5 | // Created by Sam Soffes on 2/8/11. 6 | // Copyright 2011 Sam Soffes. All rights reserved. 7 | // 8 | 9 | #import "SSTextField.h" 10 | 11 | @interface SSAddressBarTextField : SSTextField 12 | 13 | @property (nonatomic, assign, getter=isLoading) BOOL loading; 14 | @property (nonatomic, strong) UIButton *reloadButton; 15 | @property (nonatomic, strong) UIButton *stopButton; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSAddressBarTextFieldBackgroundView.h: -------------------------------------------------------------------------------- 1 | // 2 | // SSAddressBarTextFieldBackgroundView.h 3 | // SSToolkit 4 | // 5 | // Created by Sam Soffes on 2/8/11. 6 | // Copyright 2011 Sam Soffes. All rights reserved. 7 | // 8 | 9 | @interface SSAddressBarTextFieldBackgroundView : UIView 10 | 11 | @property (nonatomic, assign, getter=isLoading) BOOL loading; 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSAddressBarTextFieldBackgroundViewInnerView.h: -------------------------------------------------------------------------------- 1 | // 2 | // SSAddressBarTextFieldBackgroundViewInnerView.h 3 | // SSToolkit 4 | // 5 | // Created by Sam Soffes on 2/8/11. 6 | // Copyright 2011 Sam Soffes. All rights reserved. 7 | // 8 | 9 | @interface SSAddressBarTextFieldBackgroundViewInnerView : UIView 10 | @end 11 | -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSBadgeTableViewCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // SSBadgeTableViewCell.h 3 | // SSToolkit 4 | // 5 | // Created by Sam Soffes on 1/29/11. 6 | // Copyright 2011 Sam Soffes. All rights reserved. 7 | // 8 | 9 | @class SSBadgeView; 10 | 11 | /** 12 | Table view cell that displays a `SSBadgeView` as its accessory. 13 | */ 14 | @interface SSBadgeTableViewCell : UITableViewCell 15 | 16 | /** 17 | A view that indicates some status to the user. (read-only) 18 | */ 19 | @property (nonatomic, strong, readonly) SSBadgeView *badgeView; 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSButton.h: -------------------------------------------------------------------------------- 1 | // 2 | // SSButton.h 3 | // SSToolkit 4 | // 5 | // Created by Sam Soffes on 4/14/12. 6 | // Copyright (c) 2012 Sam Soffes. All rights reserved. 7 | // 8 | 9 | typedef enum { 10 | SSButtonImagePositionLeft, 11 | SSButtonImagePositionRight 12 | } SSButtonImagePosition; 13 | 14 | @interface SSButton : UIButton 15 | 16 | @property (nonatomic, assign) SSButtonImagePosition imagePosition; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSCollectionViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // SSCollectionViewController.h 3 | // SSToolkit 4 | // 5 | // Created by Sam Soffes on 8/26/10. 6 | // Copyright 2010-2011 Sam Soffes. All rights reserved. 7 | // 8 | 9 | #import "SSCollectionView.h" 10 | 11 | /** 12 | Creates a controller object that manages a collection view. 13 | */ 14 | @interface SSCollectionViewController : UIViewController 15 | 16 | /** 17 | Returns the table view managed by the controller object. (read-only) 18 | */ 19 | @property (nonatomic, strong, readonly) SSCollectionView *collectionView; 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSCollectionViewExtremityTableViewCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // SSCollectionViewExtremityTableViewCell.h 3 | // SSToolkit 4 | // 5 | // Created by Sam Soffes on 5/27/11. 6 | // Copyright 2011 Sam Soffes. All rights reserved. 7 | // 8 | 9 | @interface SSCollectionViewExtremityTableViewCell : UITableViewCell 10 | 11 | @property (nonatomic, strong) UIView *extrimityView; 12 | 13 | - (id)initWithReuseIdentifier:(NSString *)aReuseIdentifier; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSCollectionViewInternal.h: -------------------------------------------------------------------------------- 1 | // 2 | // SSCollectionViewInternal.h 3 | // SSToolkit 4 | // 5 | // Created by Sam Soffes on 3/14/11. 6 | // Copyright 2011 Sam Soffes. All rights reserved. 7 | // 8 | 9 | @interface SSCollectionView (Internal) 10 | 11 | - (void)_reuseItems:(NSArray *)items; 12 | - (void)_reuseItem:(SSCollectionViewItem *)item; 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSCollectionViewItemInternal.h: -------------------------------------------------------------------------------- 1 | // 2 | // SSCollectionViewItemInternal.h 3 | // SSToolkit 4 | // 5 | // Created by Sam Soffes on 3/15/11. 6 | // Copyright 2011 Sam Soffes. All rights reserved. 7 | // 8 | 9 | @class SSCollectionView; 10 | 11 | @interface SSCollectionViewItem () 12 | 13 | @property (nonatomic, strong) NSIndexPath *indexPath; 14 | @property (nonatomic, unsafe_unretained) SSCollectionView *collectionView; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSCollectionViewItemTableViewCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // SSCollectionViewItemTableViewCell.h 3 | // SSToolkit 4 | // 5 | // Created by Sam Soffes on 3/10/11. 6 | // Copyright 2011 Sam Soffes. All rights reserved. 7 | // 8 | 9 | @class SSCollectionView; 10 | 11 | @interface SSCollectionViewItemTableViewCell : UITableViewCell 12 | 13 | @property (nonatomic, assign) CGSize itemSize; 14 | @property (nonatomic, assign) CGFloat itemSpacing; 15 | @property (nonatomic, strong) NSArray *items; 16 | @property (nonatomic, unsafe_unretained) SSCollectionView *collectionView; 17 | 18 | - (id)initWithReuseIdentifier:(NSString *)aReuseIdentifier; 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSCollectionViewTableView.h: -------------------------------------------------------------------------------- 1 | // 2 | // SSCollectionViewTableView.h 3 | // SSToolkit 4 | // 5 | // Created by Sam Soffes on 10/17/11. 6 | // Copyright (c) 2011 Sam Soffes. All rights reserved. 7 | // 8 | 9 | @class SSCollectionView; 10 | 11 | @interface SSCollectionViewTableView : UITableView 12 | 13 | - (void)_setDelegate:(SSCollectionView *)aCollectionView; 14 | - (void)_setDataSource:(SSCollectionView *)aCollectionView; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSHUDWindow.h: -------------------------------------------------------------------------------- 1 | // 2 | // SSHUDWindow.h 3 | // SSToolkit 4 | // 5 | // Created by Sam Soffes on 3/17/11. 6 | // Copyright 2011 Sam Soffes. All rights reserved. 7 | // 8 | 9 | @interface SSHUDWindow : UIWindow 10 | 11 | @property (nonatomic, assign) BOOL hidesVignette; 12 | 13 | + (SSHUDWindow *)defaultWindow; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSRatingPickerScrollView.h: -------------------------------------------------------------------------------- 1 | // 2 | // SSRatingPickerScrollView.h 3 | // SSToolkit 4 | // 5 | // Created by Sam Soffes on 2/4/11. 6 | // Copyright 2011 Sam Soffes. All rights reserved. 7 | // 8 | 9 | @class SSGradientView; 10 | @class SSRatingPicker; 11 | @class SSTextField; 12 | @class SSTextView; 13 | 14 | @interface SSRatingPickerScrollView : UIScrollView 15 | 16 | @property (nonatomic, strong, readonly) SSRatingPicker *ratingPicker; 17 | @property (nonatomic, strong, readonly) SSTextField *titleTextField; 18 | @property (nonatomic, strong, readonly) SSTextView *reviewTextView; 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSTextView.h: -------------------------------------------------------------------------------- 1 | // 2 | // SSTextView.h 3 | // SSToolkit 4 | // 5 | // Created by Sam Soffes on 8/18/10. 6 | // Copyright 2010-2011 Sam Soffes. All rights reserved. 7 | // 8 | 9 | /** 10 | UITextView subclass that adds placeholder support like UITextField has. 11 | */ 12 | @interface SSTextView : UITextView 13 | 14 | /** 15 | The string that is displayed when there is no other text in the text view. 16 | 17 | The default value is `nil`. 18 | */ 19 | @property (nonatomic, strong) NSString *placeholder; 20 | 21 | /** 22 | The color of the placeholder. 23 | 24 | The default is `[UIColor lightGrayColor]`. 25 | */ 26 | @property (nonatomic, strong) UIColor *placeholderColor; 27 | 28 | @end 29 | -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/SSToolkitDefines.m: -------------------------------------------------------------------------------- 1 | // 2 | // SSToolkitDefines.m 3 | // SSToolkit 4 | // 5 | // Created by Sam Soffes on 2/2/11. 6 | // Copyright 2011 Sam Soffes. All rights reserved. 7 | // 8 | 9 | NSString *const kSSToolkitBundleName = @"SSToolkitResources.bundle"; 10 | NSString *const kSSCollectionViewNilItemExceptionName = @"SSCollectionViewNilItemException"; 11 | NSString *const kSSCollectionViewNilItemExceptionReason = @"SSCollectionView dataSource must return an item from collectionView:itemForIndexPath:"; 12 | NSString *const SSCollectionViewInvalidItemSizeExceptionName = @"SSCollectionViewInvalidItemSizeException"; 13 | NSString *const SSCollectionViewInvalidItemSizeExceptionReason = @"SSCollectionView delegate must return a non-zero size from collectionView:itemSizeForSection:"; 14 | -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/UIControl+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIControl+SSToolkitAdditions.h 3 | // SSToolkit 4 | // 5 | // Created by Sam Soffes on 4/19/10. 6 | // Copyright 2010-2011 Sam Soffes. All rights reserved. 7 | // 8 | 9 | /** 10 | Provides extensions to `UIControl` for various common tasks. 11 | */ 12 | @interface UIControl (SSToolkitAdditions) 13 | 14 | /** 15 | Removes all targets and actions for all events from an internal dispatch table. 16 | */ 17 | - (void)removeAllTargets; 18 | 19 | /** 20 | Sets exclusive target for specified event, all previous targets will be removed, usefull for table cells etc 21 | */ 22 | - (void)setTarget:(id)target action:(SEL)action forControlEvents:(UIControlEvents)controlEvents; 23 | 24 | @end 25 | -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/UIDevice+SSToolkitAdditions.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIDevice+SSToolkitAdditions.h 3 | // SSToolkit 4 | // 5 | // Created by Sam Soffes on 7/13/09. 6 | // Copyright 2009-2011 Sam Soffes. All rights reserved. 7 | // 8 | 9 | /** 10 | Provides extensions to `UIDevice` for various common tasks. 11 | */ 12 | @interface UIDevice (SSToolkitAdditions) 13 | 14 | /** 15 | Returns `YES` if the device is a simulator. 16 | 17 | @return `YES` if the device is a simulator and `NO` if it is not. 18 | */ 19 | - (BOOL)isSimulator; 20 | 21 | /** 22 | Returns `YES` if the device is an iPod touch, iPhone, iPhone 3G, or an iPhone 3GS. 23 | 24 | @return `YES` if the device is crappy and `NO` if it is not. 25 | */ 26 | - (BOOL)isCrappy; 27 | 28 | @end 29 | -------------------------------------------------------------------------------- /Pods/SSToolkit/SSToolkit/UIScrollView+SSToolkitAdditions.m: -------------------------------------------------------------------------------- 1 | // 2 | // UIScrollView+SSToolkitAdditions.m 3 | // SSToolkit 4 | // 5 | // Created by Sam Soffes on 4/12/10. 6 | // Copyright 2010-2011 Sam Soffes. All rights reserved. 7 | // 8 | 9 | #import "UIScrollView+SSToolkitAdditions.h" 10 | 11 | @implementation UIScrollView (SSToolkitAdditions) 12 | 13 | - (void)scrollToTop { 14 | [self scrollToTopAnimated:NO]; 15 | } 16 | 17 | 18 | - (void)scrollToTopAnimated:(BOOL)animated { 19 | [self setContentOffset:CGPointMake(0.0f, 0.0f) animated:animated]; 20 | } 21 | 22 | @end 23 | -------------------------------------------------------------------------------- /Pods/TestFlightSDK/libTestFlight.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Pods/TestFlightSDK/libTestFlight.a -------------------------------------------------------------------------------- /Pods/libffi/ios/include/ffi.h: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | -------------------------------------------------------------------------------- /Pods/libffi/ios/include/fficonfig.h: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | -------------------------------------------------------------------------------- /Pods/libffi/ios/include/ffitarget.h: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## NoteIT 2 | 3 | Note IT is a markdown notebook. 4 | 5 | ![Screenshot](https://github.com/brunow/NoteItIOS/raw/master/Screen/Screen.png) 6 | 7 | ![Screenshot](https://github.com/brunow/NoteItIOS/raw/master/Screen/Screen2.png) 8 | 9 | ![Screenshot](https://github.com/brunow/NoteItIOS/raw/master/Screen/Screen3.png) 10 | 11 | ![Screenshot](https://github.com/brunow/NoteItIOS/raw/master/Screen/Screen4.png) 12 | 13 | ![Screenshot](https://github.com/brunow/NoteItIOS/raw/master/Screen/Screen5.png) 14 | 15 | ![Screenshot](https://github.com/brunow/NoteItIOS/raw/master/Screen/Screen6.png) 16 | 17 | ![Screenshot](https://github.com/brunow/NoteItIOS/raw/master/Screen/Screen7.png) 18 | 19 | ## Contact 20 | 21 | Bruno Wernimont 22 | 23 | - Twitter - [@brunowernimont](http://twitter.com/brunowernimont) -------------------------------------------------------------------------------- /Resources/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Resources/Images/Default-Landscape~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/Default-Landscape~ipad.png -------------------------------------------------------------------------------- /Resources/Images/Default-Landscape~ipad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/Default-Landscape~ipad@2x.png -------------------------------------------------------------------------------- /Resources/Images/Default-Portrait~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/Default-Portrait~ipad.png -------------------------------------------------------------------------------- /Resources/Images/Default-Portrait~ipad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/Default-Portrait~ipad@2x.png -------------------------------------------------------------------------------- /Resources/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/Default.png -------------------------------------------------------------------------------- /Resources/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/Default@2x.png -------------------------------------------------------------------------------- /Resources/Images/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/Icon-72.png -------------------------------------------------------------------------------- /Resources/Images/Icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/Icon-72@2x.png -------------------------------------------------------------------------------- /Resources/Images/Icon-Small-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/Icon-Small-50.png -------------------------------------------------------------------------------- /Resources/Images/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/Icon-Small.png -------------------------------------------------------------------------------- /Resources/Images/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/Icon-Small@2x.png -------------------------------------------------------------------------------- /Resources/Images/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/Icon.png -------------------------------------------------------------------------------- /Resources/Images/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/Icon@2x.png -------------------------------------------------------------------------------- /Resources/Images/bg-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/bg-cell.png -------------------------------------------------------------------------------- /Resources/Images/bg-cell@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/bg-cell@2x.png -------------------------------------------------------------------------------- /Resources/Images/bg-textfield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/bg-textfield.png -------------------------------------------------------------------------------- /Resources/Images/bg-textfield@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/bg-textfield@2x.png -------------------------------------------------------------------------------- /Resources/Images/bg-textview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/bg-textview.png -------------------------------------------------------------------------------- /Resources/Images/bg-textview@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/bg-textview@2x.png -------------------------------------------------------------------------------- /Resources/Images/bg-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/bg-toolbar.png -------------------------------------------------------------------------------- /Resources/Images/bg-toolbar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/bg-toolbar@2x.png -------------------------------------------------------------------------------- /Resources/Images/big-logo-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/big-logo-ipad.png -------------------------------------------------------------------------------- /Resources/Images/big-logo-ipad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/big-logo-ipad@2x.png -------------------------------------------------------------------------------- /Resources/Images/big-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/big-logo.png -------------------------------------------------------------------------------- /Resources/Images/big-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/big-logo@2x.png -------------------------------------------------------------------------------- /Resources/Images/btn-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/btn-back.png -------------------------------------------------------------------------------- /Resources/Images/btn-back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/btn-back@2x.png -------------------------------------------------------------------------------- /Resources/Images/btn-nav-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/btn-nav-bar.png -------------------------------------------------------------------------------- /Resources/Images/btn-nav-bar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/btn-nav-bar@2x.png -------------------------------------------------------------------------------- /Resources/Images/btn-textfield-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/btn-textfield-add.png -------------------------------------------------------------------------------- /Resources/Images/btn-textfield-add@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/btn-textfield-add@2x.png -------------------------------------------------------------------------------- /Resources/Images/cell-accessory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/cell-accessory.png -------------------------------------------------------------------------------- /Resources/Images/cell-accessory@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/cell-accessory@2x.png -------------------------------------------------------------------------------- /Resources/Images/cell-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/cell-delete.png -------------------------------------------------------------------------------- /Resources/Images/cell-delete@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/cell-delete@2x.png -------------------------------------------------------------------------------- /Resources/Images/cell-sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/cell-sort.png -------------------------------------------------------------------------------- /Resources/Images/cell-sort@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/cell-sort@2x.png -------------------------------------------------------------------------------- /Resources/Images/hr-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/hr-line.png -------------------------------------------------------------------------------- /Resources/Images/hr-line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/hr-line@2x.png -------------------------------------------------------------------------------- /Resources/Images/iTunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/iTunesArtwork -------------------------------------------------------------------------------- /Resources/Images/nav-bar-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/nav-bar-logo.png -------------------------------------------------------------------------------- /Resources/Images/nav-bar-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/nav-bar-logo@2x.png -------------------------------------------------------------------------------- /Resources/Images/nav-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/nav-bar.png -------------------------------------------------------------------------------- /Resources/Images/nav-bar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/nav-bar@2x.png -------------------------------------------------------------------------------- /Resources/Images/splash-background-landscape-ipad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/splash-background-landscape-ipad@2x.png -------------------------------------------------------------------------------- /Resources/Images/splash-background-portrait-ipad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/splash-background-portrait-ipad@2x.png -------------------------------------------------------------------------------- /Resources/Images/splash-background-portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/splash-background-portrait@2x.png -------------------------------------------------------------------------------- /Resources/Images/tableview-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/tableview-footer.png -------------------------------------------------------------------------------- /Resources/Images/tableview-footer@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/tableview-footer@2x.png -------------------------------------------------------------------------------- /Resources/Images/tableview-patern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/tableview-patern.png -------------------------------------------------------------------------------- /Resources/Images/tableview-patern@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/tableview-patern@2x.png -------------------------------------------------------------------------------- /Resources/Images/toolbar-btn-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/toolbar-btn-dark.png -------------------------------------------------------------------------------- /Resources/Images/toolbar-btn-dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/toolbar-btn-dark@2x.png -------------------------------------------------------------------------------- /Resources/Images/toolbar-btn-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/toolbar-btn-light.png -------------------------------------------------------------------------------- /Resources/Images/toolbar-btn-light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Resources/Images/toolbar-btn-light@2x.png -------------------------------------------------------------------------------- /Screen/Screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Screen/Screen.png -------------------------------------------------------------------------------- /Screen/Screen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Screen/Screen2.png -------------------------------------------------------------------------------- /Screen/Screen3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Screen/Screen3.png -------------------------------------------------------------------------------- /Screen/Screen4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Screen/Screen4.png -------------------------------------------------------------------------------- /Screen/Screen5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Screen/Screen5.png -------------------------------------------------------------------------------- /Screen/Screen6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Screen/Screen6.png -------------------------------------------------------------------------------- /Screen/Screen7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Screen/Screen7.png -------------------------------------------------------------------------------- /Vendor/Core/BKRunBlockAtDealloc.h: -------------------------------------------------------------------------------- 1 | // 2 | // BKRunBlockAtDealloc.h 3 | // BaseKit 4 | // 5 | // Created by Bruno Wernimont on 25/04/12. 6 | // Copyright (c) 2012 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | /* Original idea from http://blog.slaunchaman.com/2011/04/11/fun-with-the-objective-c-runtime-run-code-at-deallocation-of-any-object/ 12 | Thanks to him ! 13 | */ 14 | 15 | #import "BKBlocks.h" 16 | 17 | @interface BKRunBlockAtDealloc : NSObject 18 | 19 | @property (nonatomic, copy) BKBasicBlock block; 20 | 21 | - (id)initWithBlock:(BKBasicBlock)block; 22 | 23 | @end 24 | -------------------------------------------------------------------------------- /Vendor/Core/BKUtils.h: -------------------------------------------------------------------------------- 1 | // 2 | // BKUtils.h 3 | // TrackingNumber 4 | // 5 | // Created by Bruno Wernimont on 10/04/12. 6 | // Copyright (c) 2012 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | NSString* BKPrimaryKeyAttributeForClass(Class klass); -------------------------------------------------------------------------------- /Vendor/Core/BKUtils.m: -------------------------------------------------------------------------------- 1 | // 2 | // BKUtils.m 3 | // TrackingNumber 4 | // 5 | // Created by Bruno Wernimont on 10/04/12. 6 | // Copyright (c) 2012 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import "BKUtils.h" 10 | 11 | 12 | //////////////////////////////////////////////////////////////////////////////////////////////////// 13 | NSString* BKPrimaryKeyAttributeForClass(Class klass) { 14 | NSString *className = NSStringFromClass(klass); 15 | className = [className stringByReplacingCharactersInRange:NSMakeRange(0,1) 16 | withString:[[className substringToIndex:1] lowercaseString]]; 17 | 18 | return [className stringByAppendingString:@"ID"]; 19 | } 20 | -------------------------------------------------------------------------------- /Vendor/Core/deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Vendor/Core/deps -------------------------------------------------------------------------------- /Vendor/CoreData/BaseKitCoreData.h: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Bruno Wernimont on 2012 3 | // Copyright 2012 BaseKit 4 | // 5 | // Licensed under the Apache License, Version 2.0 (the "License"); 6 | // you may not use this file except in compliance with the License. 7 | // You may obtain a copy of the License at 8 | // 9 | // http://www.apache.org/licenses/LICENSE-2.0 10 | // 11 | // Unless required by applicable law or agreed to in writing, software 12 | // distributed under the License is distributed on an "AS IS" BASIS, 13 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | // See the License for the specific language governing permissions and 15 | // limitations under the License. 16 | // 17 | 18 | #import "NSManagedObject+BaseKit.h" -------------------------------------------------------------------------------- /Vendor/DKPropertyList/DKPropertyList.h: -------------------------------------------------------------------------------- 1 | // 2 | // DKPropertyList.m 3 | // DiscoKit 4 | // 5 | // Created by Keith Pitt on 12/06/11. 6 | // Copyright 2011 Mostly Disco. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface DKPropertyList : NSObject { 12 | 13 | NSString * _plistPath; 14 | NSArray * _properties; 15 | 16 | } 17 | 18 | + (void)setValue:(id)value forProperty:(NSString *)property; 19 | + (id)valueForProperty:(NSString *)property; 20 | 21 | - (void)save; 22 | - (void)reset; 23 | - (void)reload; 24 | 25 | @end -------------------------------------------------------------------------------- /Vendor/FormKit/FKMacrosDefinitions.h: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Bruno Wernimont on 2012 3 | // Copyright 2012 FormKit 4 | // 5 | // Licensed under the Apache License, Version 2.0 (the "License"); 6 | // you may not use this file except in compliance with the License. 7 | // You may obtain a copy of the License at 8 | // 9 | // http://www.apache.org/licenses/LICENSE-2.0 10 | // 11 | // Unless required by applicable law or agreed to in writing, software 12 | // distributed under the License is distributed on an "AS IS" BASIS, 13 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | // See the License for the specific language governing permissions and 15 | // limitations under the License. 16 | // 17 | #import 18 | #import 19 | 20 | -------------------------------------------------------------------------------- /Vendor/FormKit/Fields/FKDisclosureIndicatorAccessoryField.h: -------------------------------------------------------------------------------- 1 | // 2 | // FKDisclosureField.h 3 | // FormKitDemo 4 | // 5 | // Created by cesar4 on 31/07/12. 6 | // 7 | // 8 | 9 | #import 10 | 11 | #import "FKLabelField.h" 12 | 13 | @interface FKDisclosureIndicatorAccessoryField : FKLabelField 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Vendor/FormKit/Fields/FKFieldErrorProtocol.h: -------------------------------------------------------------------------------- 1 | // 2 | // FKFieldErrorProtocol.h 3 | // FormKitDemo 4 | // 5 | // Created by cesar4 on 14/12/12. 6 | // 7 | // 8 | 9 | #import 10 | 11 | @protocol FKFieldErrorProtocol 12 | 13 | @required 14 | 15 | - (void)addError:(NSString *)error; 16 | 17 | - (void)setErrorTextColor:(UIColor *)color; 18 | 19 | - (void)setErrorBackgroundColor:(UIColor *)color; 20 | 21 | + (CGFloat)errorHeightWithError:(NSString *)error tableView:(UITableView *)tableView; 22 | 23 | @end 24 | -------------------------------------------------------------------------------- /Vendor/MarkdownParser/.gitignore: -------------------------------------------------------------------------------- 1 | # Xcode 2 | build/* 3 | *.pbxuser 4 | !default.pbxuser 5 | *.mode1v3 6 | !default.mode1v3 7 | *.mode2v3 8 | !default.mode2v3 9 | *.perspectivev3 10 | !default.perspectivev3 11 | *.xcworkspace 12 | !default.xcworkspace 13 | xcuserdata 14 | profile 15 | *.moved-aside 16 | .DS_Store -------------------------------------------------------------------------------- /Vendor/MarkdownParser/.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "Submodules/libupskirt"] 2 | path = Submodules/libupskirt 3 | url = git@github.com:danieleggert/libupskirt.git 4 | -------------------------------------------------------------------------------- /Vendor/MarkdownParser/App/BOAppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // BOAppDelegate.h 3 | // MarkdownParser 4 | // 5 | // Created by Daniel Eggert on 10/5/12. 6 | // Copyright (c) 2012 Bödewadt. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class BOViewController; 12 | 13 | @interface BOAppDelegate : UIResponder 14 | 15 | @property (strong, nonatomic) UIWindow *window; 16 | 17 | @property (strong, nonatomic) BOViewController *viewController; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /Vendor/MarkdownParser/App/BOViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // BOViewController.h 3 | // MarkdownParser 4 | // 5 | // Created by Daniel Eggert on 10/5/12. 6 | // Copyright (c) 2012 Bödewadt. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface BOViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Vendor/MarkdownParser/App/BOViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // BOViewController.m 3 | // MarkdownParser 4 | // 5 | // Created by Daniel Eggert on 10/5/12. 6 | // Copyright (c) 2012 Bödewadt. All rights reserved. 7 | // 8 | 9 | #import "BOViewController.h" 10 | 11 | @interface BOViewController () 12 | 13 | @end 14 | 15 | @implementation BOViewController 16 | 17 | - (void)viewDidLoad 18 | { 19 | [super viewDidLoad]; 20 | // Do any additional setup after loading the view, typically from a nib. 21 | } 22 | 23 | - (void)didReceiveMemoryWarning 24 | { 25 | [super didReceiveMemoryWarning]; 26 | // Dispose of any resources that can be recreated. 27 | } 28 | 29 | @end 30 | -------------------------------------------------------------------------------- /Vendor/MarkdownParser/App/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Vendor/MarkdownParser/App/Default-568h@2x.png -------------------------------------------------------------------------------- /Vendor/MarkdownParser/App/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Vendor/MarkdownParser/App/Default.png -------------------------------------------------------------------------------- /Vendor/MarkdownParser/App/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Vendor/MarkdownParser/App/Default@2x.png -------------------------------------------------------------------------------- /Vendor/MarkdownParser/App/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Vendor/MarkdownParser/App/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // MarkdownParser 4 | // 5 | // Created by Daniel Eggert on 10/5/12. 6 | // Copyright (c) 2012 Bödewadt. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "BOAppDelegate.h" 12 | 13 | int main(int argc, char *argv[]) 14 | { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([BOAppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Vendor/MarkdownParser/README.md: -------------------------------------------------------------------------------- 1 | MarkdownParser 2 | ============== 3 | 4 | Parses Markdown into an NSAttributedString. 5 | 6 | 7 | How to Use 8 | ---------- 9 | 10 | Add `-ObjC` to **Other Linker Flags** under **Build Settings** of the target app. 11 | 12 | Add libupskirt 13 | 14 | Add the `libMarkdownParser.a` to the **Link Binary With Libraries** section under **Build Phases** of the target app. 15 | 16 | 17 | 18 | License 19 | ------- 20 | 21 | Note that this uses libupskirt, which has it's own license. -------------------------------------------------------------------------------- /Vendor/MarkdownParser/Source/MarkdownParser-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'MarkdownParser' target in the 'MarkdownParser' project 3 | // 4 | 5 | #import 6 | 7 | #ifndef __IPHONE_4_0 8 | #warning "This project uses features only available in iOS SDK 4.0 and later." 9 | #endif 10 | 11 | #ifdef __OBJC__ 12 | #import 13 | #import 14 | #endif 15 | -------------------------------------------------------------------------------- /Vendor/MarkdownParser/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Vendor/Nimbus/core/src/NIOperations+Subclassing.h: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright 2011 Jeff Verkoeyen 3 | // 4 | // Licensed under the Apache License, Version 2.0 (the "License"); 5 | // you may not use this file except in compliance with the License. 6 | // You may obtain a copy of the License at 7 | // 8 | // http://www.apache.org/licenses/LICENSE-2.0 9 | // 10 | // Unless required by applicable law or agreed to in writing, software 11 | // distributed under the License is distributed on an "AS IS" BASIS, 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | // See the License for the specific language governing permissions and 14 | // limitations under the License. 15 | // 16 | 17 | @interface NIOperation() 18 | @property (readwrite, retain) NSError* lastError; 19 | @end 20 | -------------------------------------------------------------------------------- /Vendor/SVProgressHUD/SVProgressHUD.bundle/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Vendor/SVProgressHUD/SVProgressHUD.bundle/error.png -------------------------------------------------------------------------------- /Vendor/SVProgressHUD/SVProgressHUD.bundle/error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Vendor/SVProgressHUD/SVProgressHUD.bundle/error@2x.png -------------------------------------------------------------------------------- /Vendor/SVProgressHUD/SVProgressHUD.bundle/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Vendor/SVProgressHUD/SVProgressHUD.bundle/success.png -------------------------------------------------------------------------------- /Vendor/SVProgressHUD/SVProgressHUD.bundle/success@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Vendor/SVProgressHUD/SVProgressHUD.bundle/success@2x.png -------------------------------------------------------------------------------- /Vendor/TableKit/Private/TKTableModel+Private.h: -------------------------------------------------------------------------------- 1 | // 2 | // Private+TKTableModel.h 3 | // TableKitDemo 4 | // 5 | // Created by Bruno Wernimont on 9/07/12. 6 | // Copyright (c) 2012 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import "TKTableModel.h" 10 | 11 | @interface TKTableModel (Private) 12 | 13 | - (TKCellMapping *)cellMappingForObject:(id)object; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Vendor/TestFlightSDK1.0/libTestFlight.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunow/NoteItIOS/effe3a811b9d80ac19f26b4aab182223c990adfc/Vendor/TestFlightSDK1.0/libTestFlight.a -------------------------------------------------------------------------------- /Vendor/UITableView+NXEmptyView/UITableView+NXEmptyView-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'UITableView+NXEmptyView' target in the 'UITableView+NXEmptyView' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /Vendor/UITableView+NXEmptyView/UITableView+NXEmptyView.h: -------------------------------------------------------------------------------- 1 | // 2 | // UITableView+NXEmptyView.h 3 | // TableWithEmptyView 4 | // 5 | // Created by Ullrich Schäfer on 21.06.12. 6 | // 7 | // 8 | 9 | #import 10 | 11 | @interface UITableView (NXEmptyView) 12 | 13 | @property (nonatomic, strong) IBOutlet UIView *nxEV_emptyView; 14 | @property (nonatomic, assign) BOOL nxEV_hideSeparatorLinesWheyShowingEmptyView; 15 | 16 | @end 17 | 18 | 19 | @protocol UITableViewNXEmptyViewDataSource 20 | @optional 21 | - (BOOL)tableViewShouldBypassNXEmptyView:(UITableView *)tableView; 22 | @end 23 | -------------------------------------------------------------------------------- /Vendor/UITableView+NXEmptyView/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Vendor/View/BaseKitView.h: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Bruno Wernimont on 2012 3 | // Copyright 2012 BaseKit 4 | // 5 | // Licensed under the Apache License, Version 2.0 (the "License"); 6 | // you may not use this file except in compliance with the License. 7 | // You may obtain a copy of the License at 8 | // 9 | // http://www.apache.org/licenses/LICENSE-2.0 10 | // 11 | // Unless required by applicable law or agreed to in writing, software 12 | // distributed under the License is distributed on an "AS IS" BASIS, 13 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | // See the License for the specific language governing permissions and 15 | // limitations under the License. 16 | // 17 | 18 | #import 19 | 20 | #import "BKViewControllerDelegate.h" -------------------------------------------------------------------------------- /Vendor/View/deps: -------------------------------------------------------------------------------- 1 | Core -------------------------------------------------------------------------------- /Vendor/libupskirt/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2009, Natacha Porté 2 | 3 | Permission to use, copy, modify, and distribute this software for any 4 | purpose with or without fee is hereby granted, provided that the above 5 | copyright notice and this permission notice appear in all copies. 6 | 7 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 8 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 9 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 10 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 11 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 12 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 13 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 14 | --------------------------------------------------------------------------------