google-api-customization 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/google-api-customization.gemspec +23 -2
- data/lib/google_api_customization/version.rb +1 -1
- metadata +22 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 676b07cfe1c2b0b8fcd1301835637c045b05ad470c29476a4afe0ce7f7143ad5
|
|
4
|
+
data.tar.gz: 77ab6ee9ff0e8398bc1b7cf7993ac52116c190febcdcc859ec5855ec2a840c8b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5884260e89e3fb056a88da24abae413ef821583a322b88bd612900ab4d90d99ae514561a5a4cdd39b8da4b0e50646e3aa04bf34bd2030bcd058302008a82b8d8
|
|
7
|
+
data.tar.gz: a258536b6a0abb58da063facc1cf6153929e2f024b3686df78361017f5522e1f975eac7cd4e76b2021901d35aac56f15cb7083ea620ace205e2663c3cb83acce
|
|
@@ -5,12 +5,33 @@ Gem::Specification.new do |spec|
|
|
|
5
5
|
spec.version = GoogleApiCustomization::VERSION
|
|
6
6
|
spec.authors = ["Abhishek Sharma"]
|
|
7
7
|
spec.email = ["abhsss96@gmail.com"]
|
|
8
|
-
spec.summary = "
|
|
9
|
-
spec.description =
|
|
8
|
+
spec.summary = "Google Places API wrapper for Rails — place search, details, photos, reviews, autocomplete"
|
|
9
|
+
spec.description = <<~DESC
|
|
10
|
+
google-api-customization is a Ruby wrapper around the Google Places API that
|
|
11
|
+
makes it easy to integrate place discovery into Rails applications.
|
|
12
|
+
|
|
13
|
+
Features:
|
|
14
|
+
- Place detail lookup by place ID (name, address, phone, rating, hours, photos, reviews)
|
|
15
|
+
- Text search for places by query string with optional location bias
|
|
16
|
+
- Nearby search by coordinates and radius
|
|
17
|
+
- Autocomplete for place names and addresses
|
|
18
|
+
- Photo URL resolution
|
|
19
|
+
- Full error handling (OverQueryLimitError, RequestDeniedError, NotFoundError, etc.)
|
|
20
|
+
- Configurable retry logic with delay
|
|
21
|
+
|
|
22
|
+
Built on HTTParty for HTTP and supports the legacy Google Places API endpoints.
|
|
23
|
+
DESC
|
|
10
24
|
spec.homepage = "https://github.com/abhsss96/google-api-customization"
|
|
11
25
|
spec.license = "MIT"
|
|
12
26
|
spec.required_ruby_version = ">= 2.7"
|
|
13
27
|
|
|
28
|
+
spec.metadata = {
|
|
29
|
+
"homepage_uri" => "https://github.com/abhsss96/google-api-customization",
|
|
30
|
+
"source_code_uri" => "https://github.com/abhsss96/google-api-customization",
|
|
31
|
+
"bug_tracker_uri" => "https://github.com/abhsss96/google-api-customization/issues",
|
|
32
|
+
"changelog_uri" => "https://github.com/abhsss96/google-api-customization/releases"
|
|
33
|
+
}
|
|
34
|
+
|
|
14
35
|
spec.files = Dir["lib/**/*", "README.md", "*.gemspec"]
|
|
15
36
|
spec.require_paths = ["lib"]
|
|
16
37
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-api-customization
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Abhishek Sharma
|
|
@@ -52,8 +52,20 @@ dependencies:
|
|
|
52
52
|
- - "~>"
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: '3.0'
|
|
55
|
-
description:
|
|
56
|
-
|
|
55
|
+
description: |
|
|
56
|
+
google-api-customization is a Ruby wrapper around the Google Places API that
|
|
57
|
+
makes it easy to integrate place discovery into Rails applications.
|
|
58
|
+
|
|
59
|
+
Features:
|
|
60
|
+
- Place detail lookup by place ID (name, address, phone, rating, hours, photos, reviews)
|
|
61
|
+
- Text search for places by query string with optional location bias
|
|
62
|
+
- Nearby search by coordinates and radius
|
|
63
|
+
- Autocomplete for place names and addresses
|
|
64
|
+
- Photo URL resolution
|
|
65
|
+
- Full error handling (OverQueryLimitError, RequestDeniedError, NotFoundError, etc.)
|
|
66
|
+
- Configurable retry logic with delay
|
|
67
|
+
|
|
68
|
+
Built on HTTParty for HTTP and supports the legacy Google Places API endpoints.
|
|
57
69
|
email:
|
|
58
70
|
- abhsss96@gmail.com
|
|
59
71
|
executables: []
|
|
@@ -73,7 +85,11 @@ files:
|
|
|
73
85
|
homepage: https://github.com/abhsss96/google-api-customization
|
|
74
86
|
licenses:
|
|
75
87
|
- MIT
|
|
76
|
-
metadata:
|
|
88
|
+
metadata:
|
|
89
|
+
homepage_uri: https://github.com/abhsss96/google-api-customization
|
|
90
|
+
source_code_uri: https://github.com/abhsss96/google-api-customization
|
|
91
|
+
bug_tracker_uri: https://github.com/abhsss96/google-api-customization/issues
|
|
92
|
+
changelog_uri: https://github.com/abhsss96/google-api-customization/releases
|
|
77
93
|
post_install_message:
|
|
78
94
|
rdoc_options: []
|
|
79
95
|
require_paths:
|
|
@@ -92,5 +108,6 @@ requirements: []
|
|
|
92
108
|
rubygems_version: 3.5.22
|
|
93
109
|
signing_key:
|
|
94
110
|
specification_version: 4
|
|
95
|
-
summary:
|
|
111
|
+
summary: Google Places API wrapper for Rails — place search, details, photos, reviews,
|
|
112
|
+
autocomplete
|
|
96
113
|
test_files: []
|