awesome_map_marker 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/README.md +6 -1
- data/awesome_map_marker.gemspec +2 -15
- data/lib/awesome_map_marker/version.rb +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7087cc699777c37c79d0692a292a24a719cde6723e7bc98684ab321d672afd0a
|
|
4
|
+
data.tar.gz: ee08c672081a4e33ac04802aa81337a956e7d5ee28382c6803482578a57165b2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0e4b7909f35e2b0dcac6ead632fac5e5a884d6fd7ea8c5e43de9bed55a6952c98f8f12f0aa4e75bedf01a5d63fb2d2f9111a6faf7caa49b8472d0e183874ca2e
|
|
7
|
+
data.tar.gz: f6deb989d46d136aceef88517e1dd7f07e267f2a94c04fbc677e1d63ba50461d34b91e623e64293d40dc2a72be945f4a5d57998b80258102343702f07ea2ed9e
|
data/README.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
AwesomeMapMarker is a library that generates markers from Fontawesome 5 for plotting on maps such as Google Map, Open Street Map and iOS App etc.
|
|
4
4
|
|
|
5
|
+
|
|
6
|
+
## Requirements
|
|
7
|
+
- ImageMagick 6.9x
|
|
8
|
+
- MiniMagick
|
|
9
|
+
|
|
5
10
|
## Installation
|
|
6
11
|
|
|
7
12
|
Add this line to your application's Gemfile:
|
|
@@ -43,7 +48,7 @@ Parameter is Hash.
|
|
|
43
48
|
| :type | Fontawsome type. : Only ":fas" (solid) and ":fab" (brand) can be specified. ":solid", ":brand" can also be specified. Default is ":fas". |
|
|
44
49
|
| :name | Fontawesome font name. such as "fa-smile-beam". Default is "fa-map-marker-alt". |
|
|
45
50
|
| :fill_color | Hex color string. such as "#ff0000". Default is -  "#e45340". |
|
|
46
|
-
| :size | Square side length. Default is 128. If you specify a value greater than
|
|
51
|
+
| :size | Square side length. Default is 128. If you specify a value greater than 1024, it will be 1024.|
|
|
47
52
|
|
|
48
53
|
|
|
49
54
|
### Return value
|
data/awesome_map_marker.gemspec
CHANGED
|
@@ -10,23 +10,10 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.email = ["getlasterror@gmail.com"]
|
|
11
11
|
|
|
12
12
|
spec.summary = %q{AwesomeMapMarker is a library that generates markers from Fontawesome 5. }
|
|
13
|
-
spec.description = %q{Generate marker for plotting on maps such as Google Map, Open Street Map and iOS App etc. }
|
|
14
|
-
spec.homepage = "https://github.com/kazuomatz"
|
|
13
|
+
spec.description = %q{AwesomeMapMarker is a library that generates markers from Fontawesome 5. Generate marker for plotting on maps such as Google Map, Open Street Map and iOS App etc. }
|
|
14
|
+
spec.homepage = "https://github.com/kazuomatz/awesome_map_marker"
|
|
15
15
|
spec.license = "MIT"
|
|
16
16
|
|
|
17
|
-
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
|
18
|
-
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
|
19
|
-
#if spec.respond_to?(:metadata)
|
|
20
|
-
#spec.metadata["allowed_push_host"] = "https://github.com/kazuomatz"
|
|
21
|
-
|
|
22
|
-
#spec.metadata["homepage_uri"] = spec.homepage
|
|
23
|
-
#spec.metadata["source_code_uri"] = "https://github.com/kazuomatz/AwesomeMapMarker"
|
|
24
|
-
#spec.metadata["changelog_uri"] = "https://github.com/kazuomatz/AwesomeMapMarker/CHANGELOG.md"
|
|
25
|
-
#else
|
|
26
|
-
#raise "RubyGems 2.0 or newer is required to protect against " \
|
|
27
|
-
# "public gem pushes."
|
|
28
|
-
#end
|
|
29
|
-
|
|
30
17
|
# Specify which files should be added to the gem when it is released.
|
|
31
18
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
|
32
19
|
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: awesome_map_marker
|
|
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
|
- Kazuo Matsunaga
|
|
@@ -80,8 +80,9 @@ dependencies:
|
|
|
80
80
|
- - "~>"
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
82
|
version: '4.8'
|
|
83
|
-
description: '
|
|
84
|
-
Map
|
|
83
|
+
description: 'AwesomeMapMarker is a library that generates markers from Fontawesome
|
|
84
|
+
5. Generate marker for plotting on maps such as Google Map, Open Street Map and
|
|
85
|
+
iOS App etc. '
|
|
85
86
|
email:
|
|
86
87
|
- getlasterror@gmail.com
|
|
87
88
|
executables: []
|
|
@@ -110,7 +111,7 @@ files:
|
|
|
110
111
|
- config/fas.yml
|
|
111
112
|
- lib/awesome_map_marker.rb
|
|
112
113
|
- lib/awesome_map_marker/version.rb
|
|
113
|
-
homepage: https://github.com/kazuomatz
|
|
114
|
+
homepage: https://github.com/kazuomatz/awesome_map_marker
|
|
114
115
|
licenses:
|
|
115
116
|
- MIT
|
|
116
117
|
metadata: {}
|