mapkick-static 0.1.1 → 0.2.0

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: f543f49e14b9f40691eb152dc7fb36d7bcd82b4e78af029a55278816f454fc50
4
+ data.tar.gz: f817907cd51c57097d1c3477a6532983a1e8debce2928efb165ab0680f1ca60f
5
5
  SHA512:
6
- metadata.gz: 11b7539144765466bd0fd84fe25e346f73cab2bcaf7f64b02696b7c9e297e3d17c5b9174202aea3b51c0737a59bfbd9049a5384cb38f03ca3e414f56d787c826
7
- data.tar.gz: 46766cba3d76a8a64c1d291b6d57222a770e6ef8969f2610e595412ac7763d5291f3858a8e6c9247c90b2424c9305b0a0ff35ae382f18a0ef4c86a9cd4073157
6
+ metadata.gz: 000e1be74b9086a65721eff4f48860e74240cc862dc43bd4be7e6cbbe5c0427b5e49d4306777aa3d6ab11a2cec9ca6c69a8f1da24b31cdd068d18a5db277d026
7
+ data.tar.gz: f8574352d143f35e5c12a65e54d9c43e0dbebf4f36c31b2d94a3b0a9f40920d012675e9553cf9953bc6c996956844946d4f67252af1fc86b5e63b2900fd32d92
data/CHANGELOG.md CHANGED
@@ -1,7 +1,11 @@
1
+ ## 0.2.0 (2025-04-03)
2
+
3
+ - Dropped support for Ruby < 3.2
4
+
1
5
  ## 0.1.1 (2023-05-03)
2
6
 
3
7
  - Fixed error with empty maps
4
8
 
5
9
  ## 0.1.0 (2023-04-26)
6
10
 
7
- - First commit
11
+ - 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.0"
4
4
  end
5
5
  end
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.0
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: 2025-04-03 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: 3.6.2
49
45
  specification_version: 4
50
46
  summary: Create beautiful static maps with one line of Ruby
51
47
  test_files: []