google-place-text-search 1.1.0 → 1.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-place-text-search.gemspec +22 -2
- data/lib/google_place_text_search/version.rb +1 -1
- metadata +20 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e0d7d8f83e727e13d425fa40685ddd1385cc8e2df6693607d63ba46565d77ab0
|
|
4
|
+
data.tar.gz: d4cc17b476d1f0d76c4143cc5826f0b1614ec5c2ccc39a681cfe701ba1cd1d0f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8b88f3fd73c519763e75c747ad117a0b0c537bb6dcd46e66f54a147ba121c994f86e48ab279f986ef6382b56eb93196211013fc2abd2dc4c7ca022638dcbb356
|
|
7
|
+
data.tar.gz: 7fecaefe67c63887abc4e58b4d45e846e9303a92b8577bfd99eda8022081508cca0d4b07d7aed35bd8f3fcf4dc3877f14883752f013188b590cc0fea48562840
|
|
@@ -5,12 +5,32 @@ Gem::Specification.new do |spec|
|
|
|
5
5
|
spec.version = GooglePlaceTextSearch::VERSION
|
|
6
6
|
spec.authors = ["Abhishek Sharma"]
|
|
7
7
|
spec.email = ["abhsss96@gmail.com"]
|
|
8
|
-
spec.summary = "
|
|
9
|
-
spec.description =
|
|
8
|
+
spec.summary = "[DEPRECATED] Google Places Text Search wrapper — migrate to google-api-customization"
|
|
9
|
+
spec.description = <<~DESC
|
|
10
|
+
DEPRECATED: This gem uses the legacy Google Places API endpoint
|
|
11
|
+
(/maps/api/place/textsearch/json) which was deprecated by Google in March 2025.
|
|
12
|
+
|
|
13
|
+
Please migrate to google-api-customization
|
|
14
|
+
(https://rubygems.org/gems/google-api-customization) which provides full
|
|
15
|
+
Places API support including text search, nearby search, place details,
|
|
16
|
+
photos, reviews, and autocomplete.
|
|
17
|
+
|
|
18
|
+
The gem will emit a deprecation warning on each use.
|
|
19
|
+
|
|
20
|
+
Original purpose: thin wrapper around the Google Places Text Search API
|
|
21
|
+
to search for places by query string, location, and radius.
|
|
22
|
+
DESC
|
|
10
23
|
spec.homepage = "https://github.com/abhsss96/google-place-text-search"
|
|
11
24
|
spec.license = "MIT"
|
|
12
25
|
spec.required_ruby_version = ">= 2.7"
|
|
13
26
|
|
|
27
|
+
spec.metadata = {
|
|
28
|
+
"homepage_uri" => "https://github.com/abhsss96/google-place-text-search",
|
|
29
|
+
"source_code_uri" => "https://github.com/abhsss96/google-place-text-search",
|
|
30
|
+
"bug_tracker_uri" => "https://github.com/abhsss96/google-place-text-search/issues",
|
|
31
|
+
"changelog_uri" => "https://github.com/abhsss96/google-place-text-search/releases"
|
|
32
|
+
}
|
|
33
|
+
|
|
14
34
|
spec.files = Dir["lib/**/*", "README.md", "*.gemspec"]
|
|
15
35
|
spec.require_paths = ["lib"]
|
|
16
36
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-place-text-search
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Abhishek Sharma
|
|
@@ -52,8 +52,19 @@ dependencies:
|
|
|
52
52
|
- - "~>"
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: '3.0'
|
|
55
|
-
description:
|
|
56
|
-
|
|
55
|
+
description: |
|
|
56
|
+
DEPRECATED: This gem uses the legacy Google Places API endpoint
|
|
57
|
+
(/maps/api/place/textsearch/json) which was deprecated by Google in March 2025.
|
|
58
|
+
|
|
59
|
+
Please migrate to google-api-customization
|
|
60
|
+
(https://rubygems.org/gems/google-api-customization) which provides full
|
|
61
|
+
Places API support including text search, nearby search, place details,
|
|
62
|
+
photos, reviews, and autocomplete.
|
|
63
|
+
|
|
64
|
+
The gem will emit a deprecation warning on each use.
|
|
65
|
+
|
|
66
|
+
Original purpose: thin wrapper around the Google Places Text Search API
|
|
67
|
+
to search for places by query string, location, and radius.
|
|
57
68
|
email:
|
|
58
69
|
- abhsss96@gmail.com
|
|
59
70
|
executables: []
|
|
@@ -67,7 +78,11 @@ files:
|
|
|
67
78
|
homepage: https://github.com/abhsss96/google-place-text-search
|
|
68
79
|
licenses:
|
|
69
80
|
- MIT
|
|
70
|
-
metadata:
|
|
81
|
+
metadata:
|
|
82
|
+
homepage_uri: https://github.com/abhsss96/google-place-text-search
|
|
83
|
+
source_code_uri: https://github.com/abhsss96/google-place-text-search
|
|
84
|
+
bug_tracker_uri: https://github.com/abhsss96/google-place-text-search/issues
|
|
85
|
+
changelog_uri: https://github.com/abhsss96/google-place-text-search/releases
|
|
71
86
|
post_install_message:
|
|
72
87
|
rdoc_options: []
|
|
73
88
|
require_paths:
|
|
@@ -86,5 +101,5 @@ requirements: []
|
|
|
86
101
|
rubygems_version: 3.5.22
|
|
87
102
|
signing_key:
|
|
88
103
|
specification_version: 4
|
|
89
|
-
summary:
|
|
104
|
+
summary: "[DEPRECATED] Google Places Text Search wrapper — migrate to google-api-customization"
|
|
90
105
|
test_files: []
|