This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ``` | |
| root@5ff360c597d8:/TestApp# rails s -p 3333 | |
| => Booting Puma | |
| => Rails 5.0.0.1 application starting in development on http://localhost:3333 | |
| => Run `rails server -h` for more startup options | |
| [Listen warning]: | |
| Listen will be polling for changes. Learn more at https://github.com/guard/listen#polling-fallback. | |
| Exiting | |
| An exception occurred running bin/rails |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #pragma mark - All Contacts list sort handling function and method. | |
| CFComparisonResult ABPersonComparePeopleByIdentifier (ABRecordRef person1, ABRecordRef person2, ABPersonSortOrdering ordering) { | |
| NSString *firstName1 = (__bridge NSString *)ABRecordCopyValue(person1, kABPersonFirstNameProperty); | |
| NSString *lastName1 = (__bridge NSString *)ABRecordCopyValue(person1, kABPersonLastNameProperty); | |
| NSString *orgName1 = (__bridge NSString *)ABRecordCopyValue(person1, kABPersonOrganizationProperty); | |
| NSString *identifier1; | |
| BOOL firstNameSortingIsOn = [[NSUserDefaults standardUserDefaults] boolForKey:@"first-name-sort"]; | |
NewerOlder