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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 437cd6512129094c76e8fa6d62329ed81a8b8fe66507afcb372dc53fe32a604d
4
- data.tar.gz: 0d86f763ad700da74215ff5be829fbda09cf1f2c6aa49677af74c6a9ddbdea61
3
+ metadata.gz: e0d7d8f83e727e13d425fa40685ddd1385cc8e2df6693607d63ba46565d77ab0
4
+ data.tar.gz: d4cc17b476d1f0d76c4143cc5826f0b1614ec5c2ccc39a681cfe701ba1cd1d0f
5
5
  SHA512:
6
- metadata.gz: c228c66853c28a0e3636d386a0fc98748d2d464a7ac6e1af16e5bc62df464d34313c89039bdc2113842435df0e95a03407d3179807dcc9a391d912a6b6ff8320
7
- data.tar.gz: c25212519930b5d28f7dc262e0e8854662100e12139aaf1b8248f8de722275be40d6a7d017c5ce64da83300ad91c17f3c7a256a919a1e42e9c824dea8e1ed52f
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 = "Search places using the Google Places Text Search API"
9
- spec.description = "A simple wrapper around the Google Places Text Search API — search by query string, location, and radius."
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
 
@@ -1,3 +1,3 @@
1
1
  class GooglePlaceTextSearch
2
- VERSION = "1.1.0"
2
+ VERSION = "1.1.1"
3
3
  end
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.0
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: A simple wrapper around the Google Places Text Search API — search by
56
- query string, location, and radius.
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: Search places using the Google Places Text Search API
104
+ summary: "[DEPRECATED] Google Places Text Search wrapper — migrate to google-api-customization"
90
105
  test_files: []