game_icons 0.25.1.20151202 → 0.26.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d534465af5f62fb6d8b415f8466e2e15913ccaee
4
- data.tar.gz: 37a133016d09131bab9d0af2b77277920077b1bc
3
+ metadata.gz: 360dfeaeb7d77bc437a6584800a290d9d691e6a8
4
+ data.tar.gz: 7f345a38aebd3379d6fe52e2d55f858fe2132f0a
5
5
  SHA512:
6
- metadata.gz: f3493ca781d30bd13803e8caeef8248ab16084e1b71920f0fefe5d5a3f78085edbd2d243d2af88f3d19830d684f05ed1ea7893d5de4c3cda9a5121b5589389b1
7
- data.tar.gz: bea6ee4dded26d1321a2dfc97fb570a5c4985ab7cadb4a1915416a94b191c9d012b8c25dce6629e5f19745fe4f8d0ed122f30a0145b9ec21c48756250886c832
6
+ metadata.gz: 2f0896ff0f3d77d0ed50ea6239ef091b2dafdf11b17f04b21456daccd7e9152f98aa12eebf51c129e944a201aa871f7ba6713f66ec4d1cf8550d138dd7a8246e
7
+ data.tar.gz: 8b04e7b5e43542c5072d417c15847d7dc664c88d29af166ec40fb3d10b9b3afb1d0fd41b523a2da0fc0a0e1bf2e4d5ebce5cf9aa320ae9fb7fe71f41cca18e17
data/.gitignore CHANGED
@@ -1,17 +1,17 @@
1
- /.bundle/
2
- /.yardoc
3
- /Gemfile.lock
4
- /_yardoc/
5
- /coverage/
6
- /doc/
7
- /pkg/
8
- /spec/reports/
9
- /tmp/
10
- *.bundle
11
- *.so
12
- *.o
13
- *.a
14
- mkmf.log
15
- .DS_Store
16
- sanity_test.png
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.bundle
11
+ *.so
12
+ *.o
13
+ *.a
14
+ mkmf.log
15
+ .DS_Store
16
+ sanity_test.png
17
17
  game-icons.net.svg.zip
@@ -4,6 +4,9 @@ This gem follows [semantic versioning](http://semver.org), with the date of the
4
4
 
5
5
  e.g. "0.1.0.20150413.alpha" has the April 13, 2015 release of game-icons.net
6
6
 
7
+ ## v0.26.0 / 2016-01-25
8
+ * Update for Jan 24 icons
9
+
7
10
  ## v0.25.1 / 2015-12-03
8
11
  * Fix: actually add the icon files. Silly git.
9
12
 
data/Gemfile CHANGED
@@ -1,4 +1,4 @@
1
- source 'https://rubygems.org'
2
-
3
- # Specify your gem's dependencies in game_icons.gemspec
4
- gemspec
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in game_icons.gemspec
4
+ gemspec
@@ -1,22 +1,22 @@
1
- Copyright (c) 2015 Andy Meneely
2
-
3
- MIT License
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining
6
- a copy of this software and associated documentation files (the
7
- "Software"), to deal in the Software without restriction, including
8
- without limitation the rights to use, copy, modify, merge, publish,
9
- distribute, sublicense, and/or sell copies of the Software, and to
10
- permit persons to whom the Software is furnished to do so, subject to
11
- the following conditions:
12
-
13
- The above copyright notice and this permission notice shall be
14
- included in all copies or substantial portions of the Software.
15
-
16
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1
+ Copyright (c) 2015 Andy Meneely
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -1,14 +1,14 @@
1
- require "game_icons/version"
2
- require 'game_icons/finder'
3
- require 'game_icons/db'
4
- require 'game_icons/optional_deps'
5
-
6
- module GameIcons
7
- def self.get(name)
8
- Finder.new.find(name)
9
- end
10
-
11
- def self.names
12
- DB.names
13
- end
14
- end
1
+ require "game_icons/version"
2
+ require 'game_icons/finder'
3
+ require 'game_icons/db'
4
+ require 'game_icons/optional_deps'
5
+
6
+ module GameIcons
7
+ def self.get(name)
8
+ Finder.new.find(name)
9
+ end
10
+
11
+ def self.names
12
+ DB.names
13
+ end
14
+ end
@@ -1,26 +1,26 @@
1
- require 'game_icons'
2
- require 'cairo'
3
- require 'pango'
4
- require 'rsvg2'
5
-
6
- module GameIcons
7
- class SanityTest
8
- def self.run(size: 100)
9
- num = GameIcons.names.count
10
- cc = Cairo::Context.new(Cairo::ImageSurface.new(1200, ((num / 12) + 1) * size))
11
- scale = size / 512.0
12
- cc.scale(size / 512.0, size / 512.0)
13
- GameIcons.names.each_with_index do |icon, i|
14
- icon = GameIcons.get(icon).recolor(fg: '#CBB08B', bg: '#5F443A')
15
- svg = RSVG::Handle.new_from_data(icon.string)
16
- x = (i % 12) * size / scale
17
- y = (i / 12) * size / scale
18
- cc.translate(x, y)
19
- cc.render_rsvg_handle(svg)
20
- cc.translate(-x, -y)
21
- end
22
- cc.target.write_to_png('sanity_test.png')
23
- puts "Done!"
24
- end
25
- end
1
+ require 'game_icons'
2
+ require 'cairo'
3
+ require 'pango'
4
+ require 'rsvg2'
5
+
6
+ module GameIcons
7
+ class SanityTest
8
+ def self.run(size: 100)
9
+ num = GameIcons.names.count
10
+ cc = Cairo::Context.new(Cairo::ImageSurface.new(1200, ((num / 12) + 1) * size))
11
+ scale = size / 512.0
12
+ cc.scale(size / 512.0, size / 512.0)
13
+ GameIcons.names.each_with_index do |icon, i|
14
+ icon = GameIcons.get(icon).recolor(fg: '#CBB08B', bg: '#5F443A')
15
+ svg = RSVG::Handle.new_from_data(icon.string)
16
+ x = (i % 12) * size / scale
17
+ y = (i / 12) * size / scale
18
+ cc.translate(x, y)
19
+ cc.render_rsvg_handle(svg)
20
+ cc.translate(-x, -y)
21
+ end
22
+ cc.target.write_to_png('sanity_test.png')
23
+ puts "Done!"
24
+ end
25
+ end
26
26
  end
@@ -1,31 +1,31 @@
1
- require 'game_icons'
2
- require 'open-uri'
3
-
4
- module GameIcons
5
- class Update
6
- @@URL = 'http://game-icons.net/archives/svg/zip/ffffff/000000/game-icons.net.svg.zip'
7
- @@TMP_ZIP = 'game-icons.net.svg.zip'
8
-
9
- def self.run
10
- puts "Downloading..."
11
- download
12
- puts "Unzipping..."
13
- unzip
14
- puts "Done."
15
- end
16
-
17
- private
18
- def self.download
19
- File.open("resources/#{@@TMP_ZIP}", 'wb+') do |save_file|
20
- open(@@URL, 'rb') { |read_file| save_file.write(read_file.read) }
21
- end
22
- end
23
-
24
- def self.unzip
25
- Dir.chdir('./resources/') do
26
- `unzip -o game-icons.net.svg.zip`
27
- end
28
- end
29
-
30
- end
1
+ require 'game_icons'
2
+ require 'open-uri'
3
+
4
+ module GameIcons
5
+ class Update
6
+ @@URL = 'http://game-icons.net/archives/svg/zip/ffffff/000000/game-icons.net.svg.zip'
7
+ @@TMP_ZIP = 'game-icons.net.svg.zip'
8
+
9
+ def self.run
10
+ puts "Downloading..."
11
+ download
12
+ puts "Unzipping..."
13
+ unzip
14
+ puts "Done."
15
+ end
16
+
17
+ private
18
+ def self.download
19
+ File.open("resources/#{@@TMP_ZIP}", 'wb+') do |save_file|
20
+ open(@@URL, 'rb') { |read_file| save_file.write(read_file.read) }
21
+ end
22
+ end
23
+
24
+ def self.unzip
25
+ Dir.chdir('./resources/') do
26
+ `unzip -o game-icons.net.svg.zip`
27
+ end
28
+ end
29
+
30
+ end
31
31
  end
@@ -1,7 +1,7 @@
1
- module GameIcons
2
- # The next version of the GameIcons gem to be released
3
- # e.g. "0.1.0.20150413.alpha" will eventually become "0.1.0.20150413"
4
- # Uses semantic versioning: http://semver.org/
5
- # The date after the semver numbers is the build date from game-icons.net
6
- VERSION = '0.25.1.20151202'
7
- end
1
+ module GameIcons
2
+ # The next version of the GameIcons gem to be released
3
+ # e.g. "0.1.0.20150413.alpha" will eventually become "0.1.0.20150413"
4
+ # Uses semantic versioning: http://semver.org/
5
+ # The date after the semver numbers is the build date from game-icons.net
6
+ VERSION = '0.26.0'
7
+ end
@@ -1,6 +1,6 @@
1
- # Updating icons
2
-
3
- When a new update to game-icons.net comes out, this directory can be updated by:
4
-
5
- 1. Download the SVG zip file, white-on-black.
6
- 2. Extract into here, preferably with the same directory structure so individual files can be tracked.
1
+ # Updating icons
2
+
3
+ When a new update to game-icons.net comes out, this directory can be updated by:
4
+
5
+ 1. Download the SVG zip file, white-on-black.
6
+ 2. Extract into here, preferably with the same directory structure so individual files can be tracked.
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M0 0h512v512H0z"/><path fill="#fff" d="M143.55 44.06l1.403 87.88-37.092-29.74L128 153l-60.94 4.07 62.434 29.87h7.02l16-48h76.972l16 48h8.01l65.065-19.204-56.537-14.177L287 83.94l-49.953 46.595-3.512-54.168-46.047 49.252-43.94-81.56zm21.936 112.88l-10 30h71.028l-10-30h-51.028zM24 204.94v158h16.906l38.864-97.155 35.164 105.494 24.337-24.34H303v18H146.73l-25.06 25.058c15.133 6.527 26.447 20.33 29.498 36.94H326v-222H24zm197 23h36v30h30v36h-30v30h-36v-30h-30v-36h30v-30zm125 5.044V378.94h142v-46h-94.625l-15.777-94.672c-11.227-2.4-22.004-4.065-31.598-5.284zm50.637 10.037l3.26 19.568c28.086 8.33 51.377 27.818 67.593 52.35h17.844c-9.74-30.257-32.768-48.962-60.08-61.463-9.295-4.255-18.974-7.67-28.617-10.454zM78.23 318.095L53.094 380.94H24v46h28.832c4.202-22.882 24.097-40.426 48.023-40.97L78.23 318.093zM346 396.94v30h14.832c2.212-12.046 8.77-22.612 17.982-30H346zm95.186 0c9.21 7.388 15.77 17.954 17.982 30H488v-30h-46.814zm-339.186 7c-17.78 0-32 14.22-32 32s14.22 32 32 32 32-14.22 32-32-14.22-32-32-32zm308 0c-17.78 0-32 14.22-32 32s14.22 32 32 32 32-14.22 32-32-14.22-32-32-32z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M0 0h512v512H0z"/><path d="M144.734 22.04c-5.61-.035-11.163.12-16.634.456-43.77 2.7-82.904 17.003-103.862 44.996-7.506 10.027-5.682 23.91 2.95 31.42 8.635 7.51 23.004 8.053 36.234-.52 22.84-14.805 47.933-9.572 64.27 6.172 16.34 15.745 23.736 41.453 7.54 71.145-19.17 35.143-32.716 96.153-20.146 156.526 12.57 60.374 52.968 119.76 139.728 145.772 33.476 10.036 78.825 16.75 121.645 7.666 44.507-8.788 95.85-34.758 106.892-63.11-9.25 8.885-19.44 15.14-30.202 19.79 18.306-20.92 31.735-49.732 36.79-88.174l2.53-19.24-16.322 10.496c-10.503 6.755-20.585 13.403-30.093 18.396 2.638-5.872 5.038-13.22 7.73-22.777-11.097 15.19-23.73 25.355-38.598 31.472-9.234-.503-18.353-4.867-29.21-16.097-11.358-11.747-18.12-32.095-22.463-57.666-4.344-25.572-6.46-55.927-10.668-86.877-8.42-61.902-25.912-127.873-89.74-161.035-36.955-19.2-79.092-28.577-118.372-28.813zm-.123 18.01c36.462.255 76.11 9.065 110.197 26.774 56.393 29.3 71.994 87.14 80.203 147.488 4.104 30.175 6.186 60.554 10.758 87.465 1.316 7.753 2.835 15.242 4.693 22.385-15.448.04-27.254-8.307-41.704-24.717 7.385 30.41 11.99 36.534 25.705 55.55-28.22-8.235-60.64-34.74-80.95-64.063-3.274 40.047 20.223 71.574 33.275 83.93-25.176-14.196-60.713-41.536-84.623-88.655-1.016 41.426 11.93 87.732 36.45 116.465-34.515-11.536-64.97-99.472-85.42-127.633-13.04 33.217-2.948 89.085 16.072 130.122-19.628-22.838-30.887-49.375-36.555-76.596-11.524-55.342 1.75-113.847 18.325-144.238 19.55-35.842 10.915-71.75-10.85-92.726-21.768-20.976-56.854-27.564-86.554-8.315-8.56 5.55-12.688 3.732-14.626 2.045-1.94-1.687-2.76-3.84-.356-7.053 16.106-21.514 50.135-35.324 90.56-37.817 5.052-.312 10.195-.45 15.403-.414z" fill="#fff"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M0 0h512v512H0z"/><path fill="#fff" d="M256 21C126.426 21 21 126.426 21 256s105.426 235 235 235 235-105.426 235-235S385.574 21 256 21zm0 36c110.118 0 199 88.882 199 199s-88.882 199-199 199S57 366.118 57 256 145.882 57 256 57zm-7.352 36.744c-8.227 0-15.317 2.976-21.27 8.928-5.776 5.952-8.665 12.955-8.665 21.008 0 8.227 2.89 15.23 8.666 21.006 5.95 5.776 13.04 8.666 21.268 8.666 8.228 0 15.23-2.89 21.006-8.666 5.777-5.777 8.666-12.78 8.666-21.006 0-8.053-2.976-15.056-8.927-21.008-5.777-5.952-12.692-8.928-20.745-8.928zm-62.757 82.453v28.096h46.215v186.13H185.89v27.833h140.22v-27.834h-45.69V176.197h-94.53z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M0 0h512v512H0z"/><path fill="#fff" d="M247 73.098c-54.26 1.974-69.31 21.918-90.365 44.886-21.25 23.18-48.362 48.605-115.635 50.71v78.208h16v98H41v94h206V73.098zm18 0v365.804h206v-94h-16v-98h16v-78.207c-67.273-2.106-94.386-27.53-115.635-50.71C334.31 95.014 319.26 75.07 265 73.097zm-87 45.804h54v18h-54v-18zm102 0h54v18h-54v-18zm-136 32h88v18h-88v-18zm136 0h88v18h-88v-18zm-216 32h168v18H64v-18zm216 0h168v18H280v-18zm-216 32h168v18H64v-18zm216 0h168v18H280v-18zm-208 32h160v18H72v-18zm208 0h160v18H280v-18zm-255 18v62h14v-62H25zm448 0v62h14v-62h-14zm-401 14h160v18H72v-18zm208 0h160v18H280v-18zm-208 32h160v18H72v-18zm208 0h160v18H280v-18zm-208 32h160v18H64l8-18zm208 0h160l8 18H280v-18zm-216 32h168v18H64v-18zm216 0h168v18H280v-18zm-216 32h168v18H64v-18zm216 0h168v18H280v-18z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M0 0h512v512H0z"/><path d="M256 29c-11.642 0-22.985 7.432-32.006 21.607C214.974 64.783 209 85.247 209 108s5.973 43.217 14.994 57.393C233.014 179.568 244.358 187 256 187s22.985-7.432 32.006-21.607C297.026 151.217 303 130.753 303 108s-5.973-43.217-14.994-57.393C278.986 36.432 267.642 29 256 29zm-80 131c-32 0-48 144-48 144 0-16-16-64-32-96-16 0-76.002 16-76 26v22l60-16s32 128 48 128 48-112 48-112l16 234h128l16-234s32 112 48 112 48-128 48-128l60 16v-22c.027-10-60-26-76-26-16 32-32 80-32 96 0 0-16-144-48-144 0 0-10.902.02-25.727 1.74-2.092 4.725-4.453 9.187-7.082 13.317C291.945 192.73 275.287 205 256 205c-19.286 0-35.944-12.27-47.19-29.943-2.63-4.13-4.99-8.592-7.083-13.317C186.902 160.02 176 160 176 160z" fill="#fff"/></svg>
@@ -15,6 +15,7 @@ Each subfolders in this archive correspond to a different contributor :
15
15
  - Lord Berandas, http://berandas.deviantart.com
16
16
  - Irongamer, http://ecesisllc.wix.com/home
17
17
  - HeavenlyDog, http://www.gnomosygoblins.blogspot.com
18
+ - Lucas
18
19
 
19
20
  Please, include a mention "Icons made by {author}" in your derivative work.
20
21
 
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M0 0h512v512H0z"/><path fill="#fff" d="M128.912 21.563c-.507.012-1.01.043-1.504.11C97.753 25.525 74.6 57.76 74.6 96.662c0 21.547 7.39 40.787 18.767 54.5-61.678 11.593-66.342 115.44-66.342 188.347h42.772l11.348 152.158h108.68L199.86 339.51h40.593c0-73.108 1.47-178.783-65.904-189.22 10.89-13.647 17.893-32.613 17.893-53.628 0-41.496-26.445-74.99-58.923-74.99-1.523 0-3.087-.146-4.608-.11zm239.828 0c-.507.012-1.01.043-1.504.11-29.655 3.853-52.808 36.087-52.808 74.99 0 21.547 7.39 40.787 18.767 54.5-61.678 11.593-66.34 115.44-66.34 188.347h30.323l-10.17-11.422c-.31-51.837 1.858-95.18 24.008-135.484l-1.543 146.906h.152l11.348 152.158h86.013l-66.03-12.006c-11.876-104.37-18.402-205.544-4.09-308.36 0 0 9.455-6.07 24.03-13.396-14.157-12.08-23.552-33.24-23.552-57.345 0-37.564 22.797-68.013 50.918-68.013 8.887 0 17.24 3.046 24.51 8.392-10.45-11.98-24.28-19.268-39.424-19.268-1.523 0-3.087-.146-4.608-.11zm69.192 171.308l1.685 147.214 22.324-.262c.31-51.836-1.86-106.647-24.008-146.95zm1.685 147.214h-.002l.002.006v-.006z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M0 0h512v512H0z"/><path fill="#fff" d="M246.738 91.984l-44.953 43.407L347.02 334.49 106.937 282.41 86.11 340.076l31.74 6.885c17.262-26.41 34.672-37.897 46.46-37.66 14.697.293 20.643 18.788 6.653 49.182l40 8.676c12.832-19.568 26.904-28.186 37.736-28.418 14.894-.32 23.648 15.194 14.622 39.776l36.32 7.88c10.957-16.7 23.525-24.058 33.77-24.353 14.735-.425 24.645 13.735 18.057 35.592l34.675 7.523c6.048-8.434 14.044-11.92 21.76-11.808 12.196.178 23.67 9.336 25.61 22.082l58.415 12.672-34.893-47.833c-20.736 6.587-43.784-15.976-29.04-39.81l-20.77-28.472c-29.56 26.453-58.67-1.16-31.717-42.793l.953.62-22.527-30.88c-32.722 32.725-62.694 4.207-31.944-43.29l.695.455-24.603-33.73c-40.068 46.554-71.425 16.504-32.3-43.927l.486.317-19.532-26.776zM18.422 98.43v48.922l111.99 73.162.004.002c12.928 8.465 23.864 11.452 31.51 11.38 7.646-.07 11.722-2.722 13.844-6.033 2.12-3.31 2.867-8.28-.225-15.425-3.092-7.147-10.292-16.033-23.244-24.514L18.423 98.43zm169.797 50.06l-23.853 23.03c14.216 9.68 23.56 20.468 28.33 31.496 4.975 11.497 4.727 23.69-1.193 32.93-5.92 9.238-16.932 14.522-29.404 14.638-11.7.11-24.933-3.91-39.104-12.645l-9.658 26.744 189.648 41.136L188.22 148.49z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M0 0h512v512H0z"/><path fill="#fff" d="M256 126.97c-86.364 0-225.564 39.103-234.6 109.96-9.828 90.817 77.986 124.365 144.875 128.814v-78.592c-52.133 0-70.272-22.63-66.675-50.222 7.275-55.81 100.12-63.614 156.4-63.614s149.125 7.805 156.4 63.614c3.597 27.59-14.542 50.222-66.675 50.222v78.592c66.89-4.45 154.703-37.997 144.875-128.814-5.604-78.746-148.236-109.96-234.6-109.96zm71.656 152.257l-143.312.02V384.87l143.312.157V279.226zm-17.642 21.507v23.606h-82.29v19.592h82.29v21.523h-104.12V300.8h32.33l71.79-.066z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M0 0h512v512H0z"/><path fill="#fff" d="M256 23.316c-27.177 0-58.578 5.75-79.525 17.967-20.688 13.774-43.22 60.756-43.22 60.756-3.112 5.22-6.173 10.658-9.16 16.376-36.372 69.627-61.496 175.763-62.4 317.686 46.593 26.853 97.436 44.53 142.05 52.582-21.736-14.917-40.667-38.325-55.18-67.618 36.913-4.56 78.545-9.817 107.314-9.818 29.802 0 73.456 5.63 111.32 10.29-14.484 29.072-33.326 52.308-54.946 67.144 44.615-8.052 91.458-25.727 138.05-52.58-.903-141.923-26.027-248.06-62.4-317.686-2.986-5.718-6.047-11.156-9.16-16.375v-.003s-22.53-46.98-43.22-60.754c-23.52-11.95-52.347-17.967-79.524-17.967zm-.045 16.22c30.187 3.09 57.525 4.198 76.307 24.67-18.46 21.81-45.975 49.5-76.29 49.503-30.302.002-66.432-30.935-76.27-49.468 17.72-19.566 53.18-24.537 76.253-24.707zM170.57 80c5.43 12.588 52.522 49.167 85.375 49.25C289.09 129.333 336 91.16 342.32 80c0 0 12.28 18.68 18.594 31.057l4.55 10.906c20.518 45.148 32.614 92.753 32.614 158.1 0 45.65-8.408 88.144-22.873 123.724-32.45-4.387-73.958-7.39-119.205-7.39-43.513 0-83.54 2.78-115.408 6.896-14.34-35.48-22.67-77.792-22.67-123.23 0-65.347 8.096-112.952 28.613-158.1l4.55-10.906C157.378 98.725 170.57 80 170.57 80z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M0 0h512v512H0z"/><path fill="#fff" d="M256 17.12c-80.055 0-146.96 11.46-146.96 86.294 3.176 46.31 27.865 48.73 47.546 87.525 33.323 65.317 26.562 70.923 43.5 108.67 1.202 2.678 2.27 5.576 3.26 8.61 9.382 2.25 18.562 3.807 26.664 3.973l2.008-4.035-41.237-90.95c-23.33-59.194-65.534-81.684-65.303-112.478.303-40.477 28.157-69.41 129.843-68.84 105.162.587 130.883 27.404 132.082 68.973.612 21.207-44.356 58.01-64.32 115.63l-47.756 91.66c10.88-.37 23.584-3.116 36.098-6.678.71-1.71 1.687-3.282 2.213-4.96 12.574-40.15 12.044-45.83 43.636-107.757 21.512-38.208 40.718-48.8 45.686-89.344 0-74.833-66.905-86.295-146.96-86.295zm-3.834 277.737L237.834 324.6c-23.02-.476-55.97-13.1-74.252-19.473 1.806 12.728 15.387 42.465 16.162 58.176l-27.592 5.732 28.225 30.58c-.227 25.06-17.045 57.838-23.74 75.438 5.747-.733 31.057-9.59 37.44-10.155L191.3 494.88l49.374-27.892c-.48-1.364-.76-2.83-.76-4.36 0-6.958 5.38-12.63 12.25-13.14 6.87.51 12.248 6.182 12.248 13.14 0 1.532-.282 2.996-.758 4.36l49.375 27.893-2.776-29.982c6.384.567 31.694 9.422 37.44 10.155-6.694-17.6-23.5-50.38-23.74-75.438l28.224-30.58-27.592-5.732c.776-15.71 14.36-45.448 16.164-58.176-18.283 6.375-51.23 19-74.252 19.473l-14.332-29.743zm-75.957 24.247c15.53 6.215 39.34 14.43 56.194 14.992l-4.925 8.54c4.984 1.897 8.522 6.618 8.522 12.245 0 7.295-5.98 13.2-13.322 13.2-6.6 0-12.032-4.79-13.07-11.05l-19.952 4.18c-.7-11.076-8.67-30.437-13.45-42.106zm151.913 0c-4.78 11.67-12.75 31.03-13.45 42.107l-19.95-4.18c-1.04 6.26-6.472 11.05-13.07 11.05-7.343 0-13.323-5.905-13.323-13.2 0-5.626 3.538-10.345 8.524-12.243l-4.924-8.54c16.854-.562 40.66-8.778 56.193-14.993zm-75.955 35.242l10.922 18.93c-2.318.885-3.916 3.058-3.916 5.675 0 3.394 2.773 6.152 6.19 6.152 3.07 0 5.577-2.166 6.06-5.077l26.71 5.555-18.187 19.71c-1.13-1.54-2.988-2.448-5.05-2.448-3.416 0-6.188 2.7-6.188 6.092 0 3.392 2.772 6.152 6.186 6.152.7 0 1.332-.142 1.958-.36l3.093 26.758-22.92-10.392c.227-.634.254-1.26.254-1.973 0-3.045-2.194-5.5-5.112-5.974-2.916.476-5.115 2.93-5.115 5.973 0 .713.02 1.335.254 1.972l-22.918 10.392 3.092-26.757c.626.198 1.26.36 1.956.36 3.415 0 6.187-2.76 6.187-6.153s-2.77-6.092-6.188-6.092c-2.063 0-3.92.912-5.05 2.45l-18.184-19.712 26.707-5.555c.48 2.912 2.993 5.077 6.063 5.077 3.415 0 6.187-2.76 6.187-6.15 0-2.62-1.596-4.792-3.914-5.675l10.922-18.93zm50.93 51.252l-.04.05c4.358 0 8.262 1.917 10.796 4.9l.085-.087c.02.086.055.144.083.257 1.818 2.213 2.905 4.983 2.905 8.002 0 .616-.057 1.2-.114 1.792 4.52 14.428 8.95 30.55 12.565 39.3-2.733-.348-17.238-3.936-20.142-4.242l-2.78-23.89c-1.344.453-2.793.718-4.292.718-7.343 0-13.26-5.904-13.26-13.2 0-4.79 2.542-8.975 6.377-11.288.022-.022.113-.02.113-.084.114-.113.298-.142.442-.256.37-.226.744-.412 1.135-.6 1.854-.87 3.912-1.372 6.125-1.372zm-101.823.05c2.214 0 4.27.5 6.125 1.375.394.17.767.38 1.135.598.142.114.303.144.442.257.022.022.113.02.113.084 3.834 2.314 6.377 6.498 6.377 11.29 0 7.295-5.916 13.2-13.258 13.2-1.5 0-2.95-.254-4.296-.716l-2.78 23.89c-2.903.304-17.41 3.893-20.14 4.24 3.615-8.75 8.046-24.87 12.565-39.3-.115-.59-.115-1.173-.115-1.79 0-3.02 1.09-5.79 2.905-8.004.02-.085.055-.143.084-.256l.086.086c2.533-2.982 6.438-4.9 10.796-4.9l-.04-.052z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M0 0h512v512H0z"/><path fill="#fff" d="M255.973 22.965c-43.313 0-95.117 14.71-126.66 30.12-33.538 13.63-60.84 30.408-80.33 60.542-26.22 40.536-38.948 103.153-30.278 202.797 24.886 8.635 47.288 6.054 70.272-1.73-7.203-32.898-6.04-65.776 2.072-92.645 8.872-29.395 26.72-53.085 52.886-57.17l11.56-1.804.305 11.697c.226 8.523.38 17.397.485 26.434l.113 26.338c-.155 36.707-1.593 76.298-5.328 116.182 23.522 7.64 61.78 12.326 99.99 12.597l19.18-.244c35.59-1.145 69.858-6.043 90.4-12.78-4.562-61.128-4.866-122.812-6.34-172.464l-.407-13.7 13.267 3.44c26.03 6.746 44.022 30.776 53.246 60.528 8.425 27.166 9.814 59.957 2.668 92.833 17.938 5.68 35.678 7.15 53.602 4.926l18.355-2.453c4.31-78.49-5.98-156.066-26.157-193.04L450.48 96.767c-19.39-22.354-44.318-35.044-73.71-46.207-28.146-14.427-76.6-27.595-120.797-27.595zm0 12.724c27.095 0 55.783 8.103 80.42 18.845-13.03 11.505-29.087 19.462-46.176 24.008l-32.764 72.228-28.53-70.442c-19.852-3.88-38.642-12.34-53.34-25.76 25.763-11.032 54.585-18.88 80.39-18.88zm2.416 119.08l14.655 22.226-14.59 21.084-14.725-21.084 14.66-22.226zm0 49.603l14.655 22.23-14.59 21.083-14.725-21.084 14.66-22.23zm0 48.957l14.655 22.227-14.59 21.086-14.725-21.086 14.66-22.227zm0 49.553l14.655 22.228-14.59 21.085-14.725-21.084 14.66-22.227zm104.645 57.226c-27.583 8.572-66.045 12.127-105.467 12.314-39.638.188-79.132-3.107-108.078-12.07-.854 7.45-1.793 14.893-2.828 22.312 24.902 8.897 68.203 14.22 110.56 14.016 42.322-.205 84.93-6.02 108.116-14.32-.848-7.374-1.613-14.796-2.303-22.253zm5.71 37.913c-28.3 9.63-68.984 13.61-110.698 13.81-12.246.06-24.475-.22-36.402-.89l-17.637-1.314c-22.358-2.09-43.007-5.768-59.787-11.507-3.742 22.658-8.426 44.944-14.243 66.354 8.833 4.422 18.403 8.212 28.52 11.404l16.564 4.575c66.132 15.875 149.713 8.995 206.963-14.658-5.656-21.24-9.96-44.108-13.28-67.774z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M0 0h512v512H0z"/><path fill="#fff" d="M250.45 19.767c-44.556.187-87.24 7.376-118.562 21-16.176 147.458-32.792 298.827-46.72 425.75l123.344 24.814 34.157-262.844h20.63l34.25 263.75h.218l129.063-26.28c-15.71-141.714-31.023-283.473-46.724-425.19-38.697-14.307-85.098-21.17-129.655-21z"/></svg>
@@ -4,7 +4,7 @@ require 'game_icons'
4
4
  # These are tests that will change with each release, but might find brokenness as we go.
5
5
 
6
6
  describe GameIcons do
7
- it('has the expected number of icons') { expect(GameIcons.names.count).to eq(2011) }
7
+ it('has the expected number of icons') { expect(GameIcons.names.count).to eq(2022) }
8
8
 
9
9
  it 'loads known svg data' do
10
10
  exp = <<-EOSVG
metadata CHANGED
@@ -1,139 +1,139 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: game_icons
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.25.1.20151202
4
+ version: 0.26.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andy Meneely
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-12-04 00:00:00.000000000 Z
11
+ date: 2016-01-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ~>
18
18
  - !ruby/object:Gem::Version
19
19
  version: '1.7'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - ~>
25
25
  - !ruby/object:Gem::Version
26
26
  version: '1.7'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rake
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ">="
31
+ - - '>='
32
32
  - !ruby/object:Gem::Version
33
33
  version: '0'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ">="
38
+ - - '>='
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rspec
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - "~>"
45
+ - - ~>
46
46
  - !ruby/object:Gem::Version
47
47
  version: '3.2'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - "~>"
52
+ - - ~>
53
53
  - !ruby/object:Gem::Version
54
54
  version: '3.2'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: coveralls
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - ">="
59
+ - - '>='
60
60
  - !ruby/object:Gem::Version
61
61
  version: '0'
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - ">="
66
+ - - '>='
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: nokogiri
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
- - - "~>"
73
+ - - ~>
74
74
  - !ruby/object:Gem::Version
75
75
  version: 1.6.7
76
76
  type: :development
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
- - - "~>"
80
+ - - ~>
81
81
  - !ruby/object:Gem::Version
82
82
  version: 1.6.7
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: cairo
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
- - - ">="
87
+ - - '>='
88
88
  - !ruby/object:Gem::Version
89
89
  version: '0'
90
90
  type: :development
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
- - - ">="
94
+ - - '>='
95
95
  - !ruby/object:Gem::Version
96
96
  version: '0'
97
97
  - !ruby/object:Gem::Dependency
98
98
  name: pango
99
99
  requirement: !ruby/object:Gem::Requirement
100
100
  requirements:
101
- - - ">="
101
+ - - '>='
102
102
  - !ruby/object:Gem::Version
103
103
  version: '0'
104
104
  type: :development
105
105
  prerelease: false
106
106
  version_requirements: !ruby/object:Gem::Requirement
107
107
  requirements:
108
- - - ">="
108
+ - - '>='
109
109
  - !ruby/object:Gem::Version
110
110
  version: '0'
111
111
  - !ruby/object:Gem::Dependency
112
112
  name: rsvg2
113
113
  requirement: !ruby/object:Gem::Requirement
114
114
  requirements:
115
- - - ">="
115
+ - - '>='
116
116
  - !ruby/object:Gem::Version
117
117
  version: '0'
118
118
  type: :development
119
119
  prerelease: false
120
120
  version_requirements: !ruby/object:Gem::Requirement
121
121
  requirements:
122
- - - ">="
122
+ - - '>='
123
123
  - !ruby/object:Gem::Version
124
124
  version: '0'
125
125
  - !ruby/object:Gem::Dependency
126
126
  name: launchy
127
127
  requirement: !ruby/object:Gem::Requirement
128
128
  requirements:
129
- - - ">="
129
+ - - '>='
130
130
  - !ruby/object:Gem::Version
131
131
  version: '0'
132
132
  type: :development
133
133
  prerelease: false
134
134
  version_requirements: !ruby/object:Gem::Requirement
135
135
  requirements:
136
- - - ">="
136
+ - - '>='
137
137
  - !ruby/object:Gem::Version
138
138
  version: '0'
139
139
  description: Access and manipulate the scalable, free icons of game-icons.net
@@ -143,8 +143,8 @@ executables: []
143
143
  extensions: []
144
144
  extra_rdoc_files: []
145
145
  files:
146
- - ".gitignore"
147
- - ".travis.yml"
146
+ - .gitignore
147
+ - .travis.yml
148
148
  - CHANGELOG.md
149
149
  - Gemfile
150
150
  - LICENSE.txt
@@ -218,6 +218,7 @@ files:
218
218
  - resources/icons/delapouite/originals/svg/air-balloon.svg
219
219
  - resources/icons/delapouite/originals/svg/alarm-clock.svg
220
220
  - resources/icons/delapouite/originals/svg/all-seeing-eye.svg
221
+ - resources/icons/delapouite/originals/svg/ambulance.svg
221
222
  - resources/icons/delapouite/originals/svg/american-shield.svg
222
223
  - resources/icons/delapouite/originals/svg/amphora.svg
223
224
  - resources/icons/delapouite/originals/svg/ancient-ruins.svg
@@ -324,6 +325,7 @@ files:
324
325
  - resources/icons/delapouite/originals/svg/foot-plaster.svg
325
326
  - resources/icons/delapouite/originals/svg/forearm.svg
326
327
  - resources/icons/delapouite/originals/svg/forest.svg
328
+ - resources/icons/delapouite/originals/svg/fox-tail.svg
327
329
  - resources/icons/delapouite/originals/svg/freemasonry.svg
328
330
  - resources/icons/delapouite/originals/svg/full-motorcycle-helmet.svg
329
331
  - resources/icons/delapouite/originals/svg/gamepad.svg
@@ -362,6 +364,7 @@ files:
362
364
  - resources/icons/delapouite/originals/svg/ice-pop.svg
363
365
  - resources/icons/delapouite/originals/svg/igloo.svg
364
366
  - resources/icons/delapouite/originals/svg/indian-palace.svg
367
+ - resources/icons/delapouite/originals/svg/info.svg
365
368
  - resources/icons/delapouite/originals/svg/invisible-face.svg
366
369
  - resources/icons/delapouite/originals/svg/invisible.svg
367
370
  - resources/icons/delapouite/originals/svg/ionic-column.svg
@@ -484,6 +487,7 @@ files:
484
487
  - resources/icons/delapouite/originals/svg/safety-pin.svg
485
488
  - resources/icons/delapouite/originals/svg/sai.svg
486
489
  - resources/icons/delapouite/originals/svg/sailboat.svg
490
+ - resources/icons/delapouite/originals/svg/saloon-doors.svg
487
491
  - resources/icons/delapouite/originals/svg/sawed-off-shotgun.svg
488
492
  - resources/icons/delapouite/originals/svg/scooter.svg
489
493
  - resources/icons/delapouite/originals/svg/sea-star.svg
@@ -497,6 +501,7 @@ files:
497
501
  - resources/icons/delapouite/originals/svg/ship-wheel.svg
498
502
  - resources/icons/delapouite/originals/svg/shorts.svg
499
503
  - resources/icons/delapouite/originals/svg/shotgun-rounds.svg
504
+ - resources/icons/delapouite/originals/svg/shrug.svg
500
505
  - resources/icons/delapouite/originals/svg/sickle.svg
501
506
  - resources/icons/delapouite/originals/svg/siege-tower.svg
502
507
  - resources/icons/delapouite/originals/svg/silenced.svg
@@ -1599,6 +1604,7 @@ files:
1599
1604
  - resources/icons/lorc/originals/svg/sentry-gun.svg
1600
1605
  - resources/icons/lorc/originals/svg/serrated-slash.svg
1601
1606
  - resources/icons/lorc/originals/svg/sewing-needle.svg
1607
+ - resources/icons/lorc/originals/svg/shadow-follower.svg
1602
1608
  - resources/icons/lorc/originals/svg/shadow-grasp.svg
1603
1609
  - resources/icons/lorc/originals/svg/shard-sword.svg
1604
1610
  - resources/icons/lorc/originals/svg/shark-jaws.svg
@@ -1709,6 +1715,7 @@ files:
1709
1715
  - resources/icons/lorc/originals/svg/splurt.svg
1710
1716
  - resources/icons/lorc/originals/svg/spoon.svg
1711
1717
  - resources/icons/lorc/originals/svg/spoted-flower.svg
1718
+ - resources/icons/lorc/originals/svg/spotted-arrowhead.svg
1712
1719
  - resources/icons/lorc/originals/svg/spotted-mushroom.svg
1713
1720
  - resources/icons/lorc/originals/svg/spotted-wound.svg
1714
1721
  - resources/icons/lorc/originals/svg/spoutnik.svg
@@ -1959,6 +1966,11 @@ files:
1959
1966
  - resources/icons/lord-berandas/originals/svg/light-fighter.svg
1960
1967
  - resources/icons/lord-berandas/originals/svg/microscope.svg
1961
1968
  - resources/icons/lord-berandas/originals/svg/power-button.svg
1969
+ - resources/icons/lucasms/equipment/svg/belt.svg
1970
+ - resources/icons/lucasms/equipment/svg/cloak.svg
1971
+ - resources/icons/lucasms/equipment/svg/necklace.svg
1972
+ - resources/icons/lucasms/equipment/svg/shirt.svg
1973
+ - resources/icons/lucasms/equipment/svg/trousers.svg
1962
1974
  - resources/icons/priorblue/batteries/svg/battery-0.svg
1963
1975
  - resources/icons/priorblue/batteries/svg/battery-100.svg
1964
1976
  - resources/icons/priorblue/batteries/svg/battery-25.svg
@@ -2209,17 +2221,17 @@ require_paths:
2209
2221
  - lib
2210
2222
  required_ruby_version: !ruby/object:Gem::Requirement
2211
2223
  requirements:
2212
- - - ">="
2224
+ - - '>='
2213
2225
  - !ruby/object:Gem::Version
2214
2226
  version: 2.0.0
2215
2227
  required_rubygems_version: !ruby/object:Gem::Requirement
2216
2228
  requirements:
2217
- - - ">="
2229
+ - - '>='
2218
2230
  - !ruby/object:Gem::Version
2219
2231
  version: '0'
2220
2232
  requirements: []
2221
2233
  rubyforge_project:
2222
- rubygems_version: 2.4.6
2234
+ rubygems_version: 2.4.5
2223
2235
  signing_key:
2224
2236
  specification_version: 2
2225
2237
  summary: Icons from game-icons.net
@@ -2232,3 +2244,4 @@ test_files:
2232
2244
  - spec/optional_deps_spec.rb
2233
2245
  - spec/regression_spec.rb
2234
2246
  - spec/spec_helper.rb
2247
+ has_rdoc: