Skip to content
This repository has been archived by the owner on Jul 22, 2020. It is now read-only.

Commit

Permalink
Merge pull request #63 from hkellaway/release/1.0.0
Browse files Browse the repository at this point in the history
Release/1.0.0
  • Loading branch information
hkellaway committed May 31, 2015
2 parents b354085 + bab2f84 commit b48e602
Show file tree
Hide file tree
Showing 26 changed files with 2,081 additions and 1,667 deletions.
18 changes: 2 additions & 16 deletions Example/HNKGooglePlacesAutocomplete-Example/HNKDemoAppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@
#import <HNKGooglePlacesAutocomplete/HNKGooglePlacesAutocompleteQuery.h>
#import <HNKGooglePlacesAutocomplete/HNKGooglePlacesAutocompleteQueryConfig.h>

static NSString *const kHNKDemoGooglePlacesAutocompleteApiKey = @"AIzaSyAkR80JQgRgfnqBl6Db2RsnmkCG1LhuVn8";
static double const kHNKLocationLatitudeNewYorkCity = 40.7127;
static double const kHNKLocationLongitudeNewYorkCity = 74.0059;
static NSString *const kHNKDemoGooglePlacesAutocompleteApiKey = @"YOUR_API_KEY";

@interface HNKDemoAppDelegate ()

Expand All @@ -23,19 +21,7 @@ @implementation HNKDemoAppDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{

[HNKGooglePlacesAutocompleteQuery setupSharedQueryWithAPIKey:kHNKDemoGooglePlacesAutocompleteApiKey
configurationBlock:^(HNKGooglePlacesAutocompleteQueryConfig *config) {

config.country = nil;
config.filter = HNKGooglePlaceTypeAutocompleteFilterAll;
config.language = nil;
config.latitude = kHNKLocationLatitudeNewYorkCity;
config.longitude = kHNKLocationLongitudeNewYorkCity;
config.offset = 3;
config.searchRadius = 100;

}];
[HNKGooglePlacesAutocompleteQuery setupSharedQueryWithAPIKey:kHNKDemoGooglePlacesAutocompleteApiKey];

return YES;
}
Expand Down
2 changes: 1 addition & 1 deletion Example/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ platform :ios, '7.0'

target 'HNKGooglePlacesAutocomplete-Example' do

pod 'HNKGooglePlacesAutocomplete', :git => 'https://github.com/hkellaway/HNKGooglePlacesAutocomplete.git', :branch => 'fix/query_config_offset'
pod 'HNKGooglePlacesAutocomplete', :git => 'https://github.com/hkellaway/HNKGooglePlacesAutocomplete.git', :branch => 'release/1.0.0'

end

Expand Down
18 changes: 9 additions & 9 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ PODS:
- AFNetworking/UIKit (2.5.4):
- AFNetworking/NSURLConnection
- AFNetworking/NSURLSession
- HNKGooglePlacesAutocomplete (0.7.0):
- HNKGooglePlacesAutocomplete/Models (= 0.7.0)
- HNKGooglePlacesAutocomplete (1.0.0):
- HNKGooglePlacesAutocomplete/Models (= 1.0.0)
- HNKServerFacade (~> 0.2)
- Mantle (~> 1.5)
- HNKGooglePlacesAutocomplete/Models (0.7.0):
- HNKGooglePlacesAutocomplete/Models/Networking (= 0.7.0)
- HNKGooglePlacesAutocomplete/Models (1.0.0):
- HNKGooglePlacesAutocomplete/Models/Networking (= 1.0.0)
- HNKServerFacade (~> 0.2)
- Mantle (~> 1.5)
- HNKGooglePlacesAutocomplete/Models/Networking (0.7.0):
- HNKGooglePlacesAutocomplete/Models/Networking (1.0.0):
- HNKServerFacade (~> 0.2)
- Mantle (~> 1.5)
- HNKServerFacade (0.2.1):
Expand All @@ -40,22 +40,22 @@ PODS:

DEPENDENCIES:
- HNKGooglePlacesAutocomplete (from `https://github.com/hkellaway/HNKGooglePlacesAutocomplete.git`,
branch `fix/query_config_offset`)
branch `release/1.0.0`)
- Kiwi (~> 2.3)

EXTERNAL SOURCES:
HNKGooglePlacesAutocomplete:
:branch: fix/query_config_offset
:branch: release/1.0.0
:git: https://github.com/hkellaway/HNKGooglePlacesAutocomplete.git

CHECKOUT OPTIONS:
HNKGooglePlacesAutocomplete:
:commit: b8115be5ec3b52b49cbe09730189c5398e30f9f2
:commit: 4beeb38d68ee334c3e3c70fb05ea7d957680c405
:git: https://github.com/hkellaway/HNKGooglePlacesAutocomplete.git

SPEC CHECKSUMS:
AFNetworking: 05edc0ac4c4c8cf57bcf4b84be5b0744b6d8e71e
HNKGooglePlacesAutocomplete: 434e6c8a25eace25d9a6e33086238a936159f3f2
HNKGooglePlacesAutocomplete: 9582388e2802a7d06ce836f40ebf6157a56fe939
HNKServerFacade: 54102383a22b3aa61171574ad0b50ff24fd504cd
Kiwi: f038a6c61f7a9e4d7766bff5717aa3b3fdb75f55
Mantle: 60acd0cd363e27d945bda0a6b8e90577112d28f3
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit b48e602

Please sign in to comment.