├── .gitignore ├── .gitmodules ├── FTGooglePlacesAPI.podspec ├── FTGooglePlacesAPI ├── FTGooglePlacesAPI.h ├── FTGooglePlacesAPICommon.h ├── FTGooglePlacesAPICommon.m ├── FTGooglePlacesAPIDetailRequest.h ├── FTGooglePlacesAPIDetailRequest.m ├── FTGooglePlacesAPIDetailResponse.h ├── FTGooglePlacesAPIDetailResponse.m ├── FTGooglePlacesAPIDictionaryRequest.h ├── FTGooglePlacesAPIDictionaryRequest.m ├── FTGooglePlacesAPINearbySearchRequest.h ├── FTGooglePlacesAPINearbySearchRequest.m ├── FTGooglePlacesAPIResponse.h ├── FTGooglePlacesAPIResponse.m ├── FTGooglePlacesAPISearchResponse.h ├── FTGooglePlacesAPISearchResponse.m ├── FTGooglePlacesAPISearchResultItem.h ├── FTGooglePlacesAPISearchResultItem.m ├── FTGooglePlacesAPIService.h ├── FTGooglePlacesAPIService.m ├── FTGooglePlacesAPITextSearchRequest.h └── FTGooglePlacesAPITextSearchRequest.m ├── LICENSE ├── README.md └── XcodeProject ├── FTGooglePlacesAPI.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── Demo-FTGooglePlacesAPI.xcscheme │ └── FTGooglePlacesAPILogicTests.xcscheme ├── FTGooglePlacesAPI ├── FTAppDelegate.h ├── FTAppDelegate.m ├── FTGooglePlacesAPI-Info.plist ├── FTGooglePlacesAPI-Prefix.pch ├── FTGooglePlacesAPIExampleDetailViewController.h ├── FTGooglePlacesAPIExampleDetailViewController.m ├── FTGooglePlacesAPIExampleResultsViewController.h ├── FTGooglePlacesAPIExampleResultsViewController.m ├── FTGooglePlacesAPIExamplesListViewController.h ├── FTGooglePlacesAPIExamplesListViewController.m ├── Resources │ └── Images │ │ ├── Splashscreen │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png │ │ ├── powered-by-google-on-white.png │ │ └── powered-by-google-on-white@2x.png ├── en.lproj │ └── InfoPlist.strings └── main.m └── FTGooglePlacesAPILogicTests ├── FTGooglePlacesAPILogicTests-Info.plist ├── Source ├── FTGooglePlacesAPIDictionaryRequestTest.m ├── FTGooglePlacesAPINearbySearchRequestTests.m ├── FTGooglePlacesAPIResponseTests.m ├── FTGooglePlacesAPISearchResponseTests.m ├── FTGooglePlacesAPISearchResultItemTests.m ├── FTGooglePlacesAPIServiceTests.m ├── FTGooglePlacesAPITestCase.h ├── FTGooglePlacesAPITestCase.m └── Mocks │ ├── MockAFHTTPRequestOperationManager.h │ ├── MockAFHTTPRequestOperationManager.m │ ├── MockFTGooglePlacesAPISearchResultItemSubclass.h │ ├── MockFTGooglePlacesAPISearchResultItemSubclass.m │ ├── MockFTGooglePlacesAPIService.h │ └── MockFTGooglePlacesAPIService.m ├── TestData ├── FTGooglePlacesAPIResponse-test1-Nearby-Search-OK.json ├── FTGooglePlacesAPIResponse-test2-NoResults.json ├── FTGooglePlacesAPIResponse-test3-InvalidRequest.json └── FTGooglePlacesAPIResponse-test4-RequestDenied.json ├── Thirdparty └── OCMock │ ├── OCMock │ ├── NSNotificationCenter+OCMAdditions.h │ ├── OCMArg.h │ ├── OCMConstraint.h │ ├── OCMock.h │ ├── OCMockObject.h │ └── OCMockRecorder.h │ └── libOCMock.a └── en.lproj └── InfoPlist.strings /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/.gitmodules -------------------------------------------------------------------------------- /FTGooglePlacesAPI.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/FTGooglePlacesAPI.podspec -------------------------------------------------------------------------------- /FTGooglePlacesAPI/FTGooglePlacesAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/FTGooglePlacesAPI/FTGooglePlacesAPI.h -------------------------------------------------------------------------------- /FTGooglePlacesAPI/FTGooglePlacesAPICommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/FTGooglePlacesAPI/FTGooglePlacesAPICommon.h -------------------------------------------------------------------------------- /FTGooglePlacesAPI/FTGooglePlacesAPICommon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/FTGooglePlacesAPI/FTGooglePlacesAPICommon.m -------------------------------------------------------------------------------- /FTGooglePlacesAPI/FTGooglePlacesAPIDetailRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/FTGooglePlacesAPI/FTGooglePlacesAPIDetailRequest.h -------------------------------------------------------------------------------- /FTGooglePlacesAPI/FTGooglePlacesAPIDetailRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/FTGooglePlacesAPI/FTGooglePlacesAPIDetailRequest.m -------------------------------------------------------------------------------- /FTGooglePlacesAPI/FTGooglePlacesAPIDetailResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/FTGooglePlacesAPI/FTGooglePlacesAPIDetailResponse.h -------------------------------------------------------------------------------- /FTGooglePlacesAPI/FTGooglePlacesAPIDetailResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/FTGooglePlacesAPI/FTGooglePlacesAPIDetailResponse.m -------------------------------------------------------------------------------- /FTGooglePlacesAPI/FTGooglePlacesAPIDictionaryRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/FTGooglePlacesAPI/FTGooglePlacesAPIDictionaryRequest.h -------------------------------------------------------------------------------- /FTGooglePlacesAPI/FTGooglePlacesAPIDictionaryRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/FTGooglePlacesAPI/FTGooglePlacesAPIDictionaryRequest.m -------------------------------------------------------------------------------- /FTGooglePlacesAPI/FTGooglePlacesAPINearbySearchRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/FTGooglePlacesAPI/FTGooglePlacesAPINearbySearchRequest.h -------------------------------------------------------------------------------- /FTGooglePlacesAPI/FTGooglePlacesAPINearbySearchRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/FTGooglePlacesAPI/FTGooglePlacesAPINearbySearchRequest.m -------------------------------------------------------------------------------- /FTGooglePlacesAPI/FTGooglePlacesAPIResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/FTGooglePlacesAPI/FTGooglePlacesAPIResponse.h -------------------------------------------------------------------------------- /FTGooglePlacesAPI/FTGooglePlacesAPIResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/FTGooglePlacesAPI/FTGooglePlacesAPIResponse.m -------------------------------------------------------------------------------- /FTGooglePlacesAPI/FTGooglePlacesAPISearchResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/FTGooglePlacesAPI/FTGooglePlacesAPISearchResponse.h -------------------------------------------------------------------------------- /FTGooglePlacesAPI/FTGooglePlacesAPISearchResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/FTGooglePlacesAPI/FTGooglePlacesAPISearchResponse.m -------------------------------------------------------------------------------- /FTGooglePlacesAPI/FTGooglePlacesAPISearchResultItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/FTGooglePlacesAPI/FTGooglePlacesAPISearchResultItem.h -------------------------------------------------------------------------------- /FTGooglePlacesAPI/FTGooglePlacesAPISearchResultItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/FTGooglePlacesAPI/FTGooglePlacesAPISearchResultItem.m -------------------------------------------------------------------------------- /FTGooglePlacesAPI/FTGooglePlacesAPIService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/FTGooglePlacesAPI/FTGooglePlacesAPIService.h -------------------------------------------------------------------------------- /FTGooglePlacesAPI/FTGooglePlacesAPIService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/FTGooglePlacesAPI/FTGooglePlacesAPIService.m -------------------------------------------------------------------------------- /FTGooglePlacesAPI/FTGooglePlacesAPITextSearchRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/FTGooglePlacesAPI/FTGooglePlacesAPITextSearchRequest.h -------------------------------------------------------------------------------- /FTGooglePlacesAPI/FTGooglePlacesAPITextSearchRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/FTGooglePlacesAPI/FTGooglePlacesAPITextSearchRequest.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/README.md -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPI.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/XcodeProject/FTGooglePlacesAPI.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPI.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/XcodeProject/FTGooglePlacesAPI.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPI.xcodeproj/xcshareddata/xcschemes/Demo-FTGooglePlacesAPI.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/XcodeProject/FTGooglePlacesAPI.xcodeproj/xcshareddata/xcschemes/Demo-FTGooglePlacesAPI.xcscheme -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPI.xcodeproj/xcshareddata/xcschemes/FTGooglePlacesAPILogicTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/XcodeProject/FTGooglePlacesAPI.xcodeproj/xcshareddata/xcschemes/FTGooglePlacesAPILogicTests.xcscheme -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPI/FTAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/XcodeProject/FTGooglePlacesAPI/FTAppDelegate.h -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPI/FTAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/XcodeProject/FTGooglePlacesAPI/FTAppDelegate.m -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPI/FTGooglePlacesAPI-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/XcodeProject/FTGooglePlacesAPI/FTGooglePlacesAPI-Info.plist -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPI/FTGooglePlacesAPI-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/XcodeProject/FTGooglePlacesAPI/FTGooglePlacesAPI-Prefix.pch -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPI/FTGooglePlacesAPIExampleDetailViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/XcodeProject/FTGooglePlacesAPI/FTGooglePlacesAPIExampleDetailViewController.h -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPI/FTGooglePlacesAPIExampleDetailViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/XcodeProject/FTGooglePlacesAPI/FTGooglePlacesAPIExampleDetailViewController.m -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPI/FTGooglePlacesAPIExampleResultsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/XcodeProject/FTGooglePlacesAPI/FTGooglePlacesAPIExampleResultsViewController.h -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPI/FTGooglePlacesAPIExampleResultsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/XcodeProject/FTGooglePlacesAPI/FTGooglePlacesAPIExampleResultsViewController.m -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPI/FTGooglePlacesAPIExamplesListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/XcodeProject/FTGooglePlacesAPI/FTGooglePlacesAPIExamplesListViewController.h -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPI/FTGooglePlacesAPIExamplesListViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/XcodeProject/FTGooglePlacesAPI/FTGooglePlacesAPIExamplesListViewController.m -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPI/Resources/Images/Splashscreen/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/XcodeProject/FTGooglePlacesAPI/Resources/Images/Splashscreen/Default-568h@2x.png -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPI/Resources/Images/Splashscreen/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/XcodeProject/FTGooglePlacesAPI/Resources/Images/Splashscreen/Default.png -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPI/Resources/Images/Splashscreen/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/XcodeProject/FTGooglePlacesAPI/Resources/Images/Splashscreen/Default@2x.png -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPI/Resources/Images/powered-by-google-on-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/XcodeProject/FTGooglePlacesAPI/Resources/Images/powered-by-google-on-white.png -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPI/Resources/Images/powered-by-google-on-white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/XcodeProject/FTGooglePlacesAPI/Resources/Images/powered-by-google-on-white@2x.png -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPI/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPI/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/XcodeProject/FTGooglePlacesAPI/main.m -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPILogicTests/FTGooglePlacesAPILogicTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/XcodeProject/FTGooglePlacesAPILogicTests/FTGooglePlacesAPILogicTests-Info.plist -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPILogicTests/Source/FTGooglePlacesAPIDictionaryRequestTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/XcodeProject/FTGooglePlacesAPILogicTests/Source/FTGooglePlacesAPIDictionaryRequestTest.m -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPILogicTests/Source/FTGooglePlacesAPINearbySearchRequestTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/XcodeProject/FTGooglePlacesAPILogicTests/Source/FTGooglePlacesAPINearbySearchRequestTests.m -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPILogicTests/Source/FTGooglePlacesAPIResponseTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/XcodeProject/FTGooglePlacesAPILogicTests/Source/FTGooglePlacesAPIResponseTests.m -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPILogicTests/Source/FTGooglePlacesAPISearchResponseTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/XcodeProject/FTGooglePlacesAPILogicTests/Source/FTGooglePlacesAPISearchResponseTests.m -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPILogicTests/Source/FTGooglePlacesAPISearchResultItemTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/XcodeProject/FTGooglePlacesAPILogicTests/Source/FTGooglePlacesAPISearchResultItemTests.m -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPILogicTests/Source/FTGooglePlacesAPIServiceTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/XcodeProject/FTGooglePlacesAPILogicTests/Source/FTGooglePlacesAPIServiceTests.m -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPILogicTests/Source/FTGooglePlacesAPITestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/XcodeProject/FTGooglePlacesAPILogicTests/Source/FTGooglePlacesAPITestCase.h -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPILogicTests/Source/FTGooglePlacesAPITestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/XcodeProject/FTGooglePlacesAPILogicTests/Source/FTGooglePlacesAPITestCase.m -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPILogicTests/Source/Mocks/MockAFHTTPRequestOperationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/XcodeProject/FTGooglePlacesAPILogicTests/Source/Mocks/MockAFHTTPRequestOperationManager.h -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPILogicTests/Source/Mocks/MockAFHTTPRequestOperationManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/XcodeProject/FTGooglePlacesAPILogicTests/Source/Mocks/MockAFHTTPRequestOperationManager.m -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPILogicTests/Source/Mocks/MockFTGooglePlacesAPISearchResultItemSubclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/XcodeProject/FTGooglePlacesAPILogicTests/Source/Mocks/MockFTGooglePlacesAPISearchResultItemSubclass.h -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPILogicTests/Source/Mocks/MockFTGooglePlacesAPISearchResultItemSubclass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/XcodeProject/FTGooglePlacesAPILogicTests/Source/Mocks/MockFTGooglePlacesAPISearchResultItemSubclass.m -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPILogicTests/Source/Mocks/MockFTGooglePlacesAPIService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/XcodeProject/FTGooglePlacesAPILogicTests/Source/Mocks/MockFTGooglePlacesAPIService.h -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPILogicTests/Source/Mocks/MockFTGooglePlacesAPIService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/XcodeProject/FTGooglePlacesAPILogicTests/Source/Mocks/MockFTGooglePlacesAPIService.m -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPILogicTests/TestData/FTGooglePlacesAPIResponse-test1-Nearby-Search-OK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/XcodeProject/FTGooglePlacesAPILogicTests/TestData/FTGooglePlacesAPIResponse-test1-Nearby-Search-OK.json -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPILogicTests/TestData/FTGooglePlacesAPIResponse-test2-NoResults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/XcodeProject/FTGooglePlacesAPILogicTests/TestData/FTGooglePlacesAPIResponse-test2-NoResults.json -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPILogicTests/TestData/FTGooglePlacesAPIResponse-test3-InvalidRequest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/XcodeProject/FTGooglePlacesAPILogicTests/TestData/FTGooglePlacesAPIResponse-test3-InvalidRequest.json -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPILogicTests/TestData/FTGooglePlacesAPIResponse-test4-RequestDenied.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/XcodeProject/FTGooglePlacesAPILogicTests/TestData/FTGooglePlacesAPIResponse-test4-RequestDenied.json -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPILogicTests/Thirdparty/OCMock/OCMock/NSNotificationCenter+OCMAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/XcodeProject/FTGooglePlacesAPILogicTests/Thirdparty/OCMock/OCMock/NSNotificationCenter+OCMAdditions.h -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPILogicTests/Thirdparty/OCMock/OCMock/OCMArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/XcodeProject/FTGooglePlacesAPILogicTests/Thirdparty/OCMock/OCMock/OCMArg.h -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPILogicTests/Thirdparty/OCMock/OCMock/OCMConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/XcodeProject/FTGooglePlacesAPILogicTests/Thirdparty/OCMock/OCMock/OCMConstraint.h -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPILogicTests/Thirdparty/OCMock/OCMock/OCMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/XcodeProject/FTGooglePlacesAPILogicTests/Thirdparty/OCMock/OCMock/OCMock.h -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPILogicTests/Thirdparty/OCMock/OCMock/OCMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/XcodeProject/FTGooglePlacesAPILogicTests/Thirdparty/OCMock/OCMock/OCMockObject.h -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPILogicTests/Thirdparty/OCMock/OCMock/OCMockRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/XcodeProject/FTGooglePlacesAPILogicTests/Thirdparty/OCMock/OCMock/OCMockRecorder.h -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPILogicTests/Thirdparty/OCMock/libOCMock.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manGoweb/FTGooglePlacesAPI/HEAD/XcodeProject/FTGooglePlacesAPILogicTests/Thirdparty/OCMock/libOCMock.a -------------------------------------------------------------------------------- /XcodeProject/FTGooglePlacesAPILogicTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | --------------------------------------------------------------------------------