mapkick-static 0.1.1 → 0.2.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: d904b2e2d864f7d3bb3fdf9165b706b1b3c1f4b0448e83a68f1484cf38a88fd1
4
- data.tar.gz: b51bffe8883486fc20814c15e7393c60052c18db2521332baea82d769e5cd5e3
3
+ metadata.gz: 16373abaa3c18145ad29d4765e550fa86ef2f01668043ca23ffdc3614f7e7885
4
+ data.tar.gz: 510bb462cc6db9b331bea12e50535a1200552e8e8e47559d50c09164f5fc54c4
5
5
  SHA512:
6
- metadata.gz: 11b7539144765466bd0fd84fe25e346f73cab2bcaf7f64b02696b7c9e297e3d17c5b9174202aea3b51c0737a59bfbd9049a5384cb38f03ca3e414f56d787c826
7
- data.tar.gz: 46766cba3d76a8a64c1d291b6d57222a770e6ef8969f2610e595412ac7763d5291f3858a8e6c9247c90b2424c9305b0a0ff35ae382f18a0ef4c86a9cd4073157
6
+ metadata.gz: 3d1f63660133657cab8b9c23dbac7a3c0671e44d5a751397de19d0ace77398d1606a20998909d843c2cc1254c132a6f7b1a0a62ac8daee06e5096a4a6d63bfb4
7
+ data.tar.gz: 00b3faad1ccdb3eb0871b7d6f3033dbed08b008388d45c1ce974ad2a9745b2820f2051396dbace0814389a31248e7f40e99cafcd14338b2c5dc8600617d46fcd
data/CHANGELOG.md CHANGED
@@ -1,7 +1,15 @@
1
+ ## 0.2.1 (2026-01-05)
2
+
3
+ - Switched to `cgi/escape` for Ruby 4.0
4
+
5
+ ## 0.2.0 (2025-04-03)
6
+
7
+ - Dropped support for Ruby < 3.2
8
+
1
9
  ## 0.1.1 (2023-05-03)
2
10
 
3
11
  - Fixed error with empty maps
4
12
 
5
13
  ## 0.1.0 (2023-04-26)
6
14
 
7
- - First commit
15
+ - First release
data/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2023 Andrew Kane
3
+ Copyright (c) 2023-2025 Andrew Kane
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining
6
6
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -6,7 +6,7 @@ Create beautiful static maps with one line of Ruby. No more fighting with mappin
6
6
 
7
7
  :fire: For JavaScript maps, check out [Mapkick](https://chartkick.com/mapkick)
8
8
 
9
- [![Build Status](https://github.com/ankane/mapkick-static/workflows/build/badge.svg?branch=master)](https://github.com/ankane/mapkick-static/actions)
9
+ [![Build Status](https://github.com/ankane/mapkick-static/actions/workflows/build.yml/badge.svg)](https://github.com/ankane/mapkick-static/actions)
10
10
 
11
11
  ## Installation
12
12
 
@@ -28,7 +28,7 @@ Point map
28
28
  <%= static_map [{latitude: 37.7829, longitude: -122.4190}] %>
29
29
  ```
30
30
 
31
- Area map (experimental)
31
+ Area map
32
32
 
33
33
  <img src="https://chartkick.com/mapkick-static/area-map-2x?v1" alt="Area map" width="100%" height="100%">
34
34
 
@@ -1,5 +1,5 @@
1
1
  module Mapkick
2
2
  module Static
3
- VERSION = "0.1.1"
3
+ VERSION = "0.2.1"
4
4
  end
5
5
  end
@@ -1,5 +1,5 @@
1
1
  # stdlib
2
- require "cgi"
2
+ require "cgi/escape"
3
3
  require "json"
4
4
  require "uri"
5
5
 
metadata CHANGED
@@ -1,16 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mapkick-static
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Kane
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2023-05-03 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies: []
13
- description:
14
12
  email: andrew@ankane.org
15
13
  executables: []
16
14
  extensions: []
@@ -29,7 +27,6 @@ homepage: https://github.com/ankane/mapkick-static
29
27
  licenses:
30
28
  - MIT
31
29
  metadata: {}
32
- post_install_message:
33
30
  rdoc_options: []
34
31
  require_paths:
35
32
  - lib
@@ -37,15 +34,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
37
34
  requirements:
38
35
  - - ">="
39
36
  - !ruby/object:Gem::Version
40
- version: '3'
37
+ version: '3.2'
41
38
  required_rubygems_version: !ruby/object:Gem::Requirement
42
39
  requirements:
43
40
  - - ">="
44
41
  - !ruby/object:Gem::Version
45
42
  version: '0'
46
43
  requirements: []
47
- rubygems_version: 3.4.10
48
- signing_key:
44
+ rubygems_version: 4.0.3
49
45
  specification_version: 4
50
46
  summary: Create beautiful static maps with one line of Ruby
51
47
  test_files: []