geoblacklight-icons 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 4a7546d7cf7ea779246f6f768451f5dbd9aa61a9
4
+ data.tar.gz: ffa585ea6668980007efc9f097f626b47c8ce1fd
5
+ SHA512:
6
+ metadata.gz: af13062be0d5b172e588d9c83fd9ce61f68b4ab5dbf994d6aa953f8a9f8c943c66f67eb5ddd1af887fc5110e08104aac2798f3396d9b45b1a03d9b6286aa5b84
7
+ data.tar.gz: de2fd679055f5a253fcb76d269a1c98a1a5b62c147d341f27acd6dd038830988663154b311beccbe36a5b1e4c78a5564b7dde982b1313f8fc62849bbeb521881
@@ -0,0 +1,136 @@
1
+ {
2
+ "checksum": {
3
+ "previous": "cae243ad4c5c8d5a8edb73a75fbc99c23b2b5fb9f131b5dde9d62276a3e69ad6",
4
+ "current": "cae243ad4c5c8d5a8edb73a75fbc99c23b2b5fb9f131b5dde9d62276a3e69ad6"
5
+ },
6
+ "fonts": [
7
+ "app/assets/fonts/geoblacklight-icons.ttf",
8
+ "app/assets/fonts/geoblacklight-icons.svg",
9
+ "app/assets/fonts/geoblacklight-icons.woff",
10
+ "app/assets/fonts/geoblacklight-icons.eot"
11
+ ],
12
+ "glyphs": {
13
+ "berkeley": {
14
+ "codepoint": 61697,
15
+ "source": "graphics/berkeley.svg"
16
+ },
17
+ "cd-rom": {
18
+ "codepoint": 61714,
19
+ "source": "graphics/cd-rom.svg"
20
+ },
21
+ "columbia": {
22
+ "codepoint": 61717,
23
+ "source": "graphics/columbia.svg"
24
+ },
25
+ "dvd-rom": {
26
+ "codepoint": 61715,
27
+ "source": "graphics/dvd-rom.svg"
28
+ },
29
+ "harvard": {
30
+ "codepoint": 61699,
31
+ "source": "graphics/harvard.svg"
32
+ },
33
+ "image": {
34
+ "codepoint": 61706,
35
+ "source": "graphics/image.svg"
36
+ },
37
+ "line": {
38
+ "codepoint": 61704,
39
+ "source": "graphics/line.svg"
40
+ },
41
+ "massgis": {
42
+ "codepoint": 61702,
43
+ "source": "graphics/massgis.svg"
44
+ },
45
+ "minnesota": {
46
+ "codepoint": 61718,
47
+ "source": "graphics/minnesota.svg"
48
+ },
49
+ "mit": {
50
+ "codepoint": 61700,
51
+ "source": "graphics/mit.svg"
52
+ },
53
+ "mixed": {
54
+ "codepoint": 61722,
55
+ "source": "graphics/mixed.svg"
56
+ },
57
+ "multipoint": {
58
+ "codepoint": 61721,
59
+ "source": "graphics/multipoint.svg"
60
+ },
61
+ "paper-map": {
62
+ "codepoint": 61712,
63
+ "source": "graphics/paper-map.svg"
64
+ },
65
+ "point": {
66
+ "codepoint": 61705,
67
+ "source": "graphics/point.svg"
68
+ },
69
+ "polygon": {
70
+ "codepoint": 61703,
71
+ "source": "graphics/polygon.svg"
72
+ },
73
+ "polyline": {
74
+ "codepoint": 61720,
75
+ "source": "graphics/polyline.svg"
76
+ },
77
+ "princeton": {
78
+ "codepoint": 61713,
79
+ "source": "graphics/princeton.svg"
80
+ },
81
+ "raster": {
82
+ "codepoint": 61709,
83
+ "source": "graphics/raster.svg"
84
+ },
85
+ "stanford": {
86
+ "codepoint": 61698,
87
+ "source": "graphics/stanford.svg"
88
+ },
89
+ "tufts": {
90
+ "codepoint": 61701,
91
+ "source": "graphics/tufts.svg"
92
+ },
93
+ "ucla": {
94
+ "codepoint": 61719,
95
+ "source": "graphics/ucla.svg"
96
+ },
97
+ "uva": {
98
+ "codepoint": 61723,
99
+ "source": "graphics/uva.svg"
100
+ }
101
+ },
102
+ "options": {
103
+ "autowidth": false,
104
+ "config": "fontcustom.yml",
105
+ "css_selector": ".geoblacklight-{{glyph}}",
106
+ "debug": false,
107
+ "font_ascent": 448,
108
+ "font_descent": 64,
109
+ "font_design_size": 16,
110
+ "font_em": 512,
111
+ "font_name": "geoblacklight-icons",
112
+ "force": false,
113
+ "input": {
114
+ "templates": "graphics",
115
+ "vectors": "graphics"
116
+ },
117
+ "no_hash": true,
118
+ "output": {
119
+ "css": "app/assets/stylesheets",
120
+ "fonts": "app/assets/fonts",
121
+ "preview": "docs/styleguide"
122
+ },
123
+ "preprocessor_path": "",
124
+ "quiet": false,
125
+ "templates": [
126
+ "scss-rails",
127
+ "scss",
128
+ "preview"
129
+ ]
130
+ },
131
+ "templates": [
132
+ "app/assets/stylesheets/_geoblacklight-icons-rails.scss",
133
+ "app/assets/stylesheets/_geoblacklight-icons.scss",
134
+ "docs/styleguide/geoblacklight-icons-preview.html"
135
+ ]
136
+ }
data/.gitignore ADDED
@@ -0,0 +1,10 @@
1
+ .DS_Store
2
+ /.bundle/
3
+ /.yardoc
4
+ /Gemfile.lock
5
+ /_yardoc/
6
+ /coverage/
7
+ /doc/
8
+ /pkg/
9
+ /spec/reports/
10
+ /tmp/
data/.travis.yml ADDED
@@ -0,0 +1,3 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.1.5
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in geoblacklight-icons.gemspec
4
+ gemspec
data/README.md ADDED
@@ -0,0 +1,48 @@
1
+ # Geoblacklight-Icons
2
+
3
+ Icon font set to be used with GeoBlacklight.
4
+
5
+ Built using [FontCustom](https://github.com/FontCustom/fontcustom/)
6
+
7
+ [Check out the icons](http://geoblacklight.org/geoblacklight-icons/app/views/styleguide/geoblacklight-preview.html)
8
+
9
+ ## Installation
10
+
11
+ Add this line to your application's Gemfile:
12
+
13
+ ```ruby
14
+ gem 'geoblacklight-icons'
15
+ ```
16
+
17
+ And then execute:
18
+
19
+ $ bundle
20
+
21
+ Or install it yourself as:
22
+
23
+ $ gem install geoblacklight-icons
24
+
25
+ For Rails applications, import the SCSS
26
+
27
+ ```scss
28
+ @import 'geoblacklight-icons-rails';
29
+ ```
30
+
31
+ ## Rebuilding fonts
32
+
33
+ Add svg to `graphics` directory. Rebuild font using:
34
+ `$ fontcustom compile`
35
+
36
+ Run a webserver like python's SimpleHTTPServer
37
+
38
+ `$ python -m SimpleHTTPServer`
39
+
40
+ Checkout the updated font previews: [http://127.0.0.1:8000/docs/geoblacklight-preview.html](http://127.0.0.1:8000/app/views/styleguide/geoblacklight-preview.html)
41
+
42
+ ## Contributing
43
+
44
+ 1. Fork it ( http://github.com/my-github-username/geoblacklight-icons/fork )
45
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
46
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
47
+ 4. Push to the branch (`git push origin my-new-feature`)
48
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,195 @@
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
3
+ <!--
4
+ 2015-4-28: Created with FontForge (http://fontforge.org)
5
+ -->
6
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
7
+ <metadata>
8
+ Created by FontForge 20150302 at Tue Apr 28 10:52:02 2015
9
+ By Jack Reed
10
+ Copyright (c) 2015, Jack Reed
11
+ </metadata>
12
+ <defs>
13
+ <font id="geoblacklight-icons" horiz-adv-x="512" >
14
+ <font-face
15
+ font-family="geoblacklight-icons"
16
+ font-weight="900"
17
+ font-stretch="normal"
18
+ units-per-em="512"
19
+ panose-1="2 0 10 3 0 0 0 0 0 0"
20
+ ascent="448"
21
+ descent="-64"
22
+ bbox="-0.12793 -82.7842 512.128 487.36"
23
+ underline-thickness="25.6"
24
+ underline-position="-51.2"
25
+ unicode-range="U+0020-F11B"
26
+ />
27
+ <missing-glyph />
28
+ <glyph glyph-name="space" unicode=" " horiz-adv-x="200"
29
+ />
30
+ <glyph glyph-name="uniF109" unicode="&#xf109;"
31
+ d="M323.564 341.075c0 20.1901 -7.1429 37.4281 -21.4287 51.7139s-31.5241 21.4287 -51.7148 21.4287c-20.1901 0 -37.4281 -7.1429 -51.7139 -21.4287s-21.4287 -31.5238 -21.4287 -51.7139c0 -20.1908 7.1429 -37.429 21.4287 -51.7148
32
+ c14.2858 -14.2852 31.5238 -21.4277 51.7139 -21.4277c20.1908 0 37.429 7.14258 51.7148 21.4277c14.2858 14.2858 21.4287 31.5241 21.4287 51.7148zM396.707 341.075c0 -20.7617 -3.1429 -37.8092 -9.42871 -51.1426l-104 -221.144
33
+ c-3.04753 -6.28581 -7.57129 -11.238 -13.5713 -14.8564c-6 -3.61914 -12.4287 -5.42871 -19.2861 -5.42871c-6.85677 0 -13.2852 1.80957 -19.2852 5.42871c-6 3.61849 -10.4287 8.57064 -13.2861 14.8564l-104.285 221.144
34
+ c-6.28581 13.3333 -9.42871 30.3809 -9.42871 51.1426c0 40.3809 14.2858 74.8571 42.8574 103.429c28.571 28.571 63.0469 42.8564 103.428 42.8564c40.3815 0 74.8577 -14.2855 103.429 -42.8564c28.5716 -28.5716 42.8574 -63.0479 42.8574 -103.429z" />
35
+ <glyph glyph-name="uniF10A" unicode="&#xf10a;"
36
+ d="M0 448zM0 384h512v-416h-512v416zM480 0v352h-448v-352h448zM352 272c0 26.5117 21.4883 48 48 48s48 -21.4883 48 -48s-21.4883 -48 -48 -48s-48 21.4883 -48 48zM448 32h-384l96 256l128 -160l64 48z" />
37
+ <glyph glyph-name="uniF117" unicode="&#xf117;"
38
+ d="M47.7275 91.7842c-1.33594 17.9199 0 43.3682 0 55.6875l26.1602 300.528h98.3604l-27.376 -302.848c-5.87207 -66.168 20.168 -112.336 85.3359 -112.336c66.5518 0 102.832 47.1279 108.48 105.664l27.7031 309.52h98.4805l-27.5039 -305.6
39
+ c-10.168 -118.152 -88.5039 -206.4 -214.376 -206.4c-98.5205 0 -162.128 63.8076 -175.265 155.784z" />
40
+ <glyph glyph-name="uniF118" unicode="&#xf118;"
41
+ d="M226.616 346.672v77.0098h77.0098v-77.0098h-77.0098zM202.298 322.354h125.646v125.646h-125.646v-125.646zM24.3184 -39.6807v77.0117h77.0098v-77.0117h-77.0098zM0 -63.999h125.646v125.648h-125.646v-125.648zM91.7363 60.3662l43.502 -21.752l142.515 285.022
42
+ l-43.5029 21.752zM409.007 103.485v77.0088h77.0088v-77.0088h-77.0088zM384.688 79.166h125.646v125.646h-125.646v-125.646zM381.7 171.21l38.9746 29.0967l-111.898 149.888l-38.9746 -29.0957z" />
43
+ <glyph glyph-name="uniF11B" unicode="&#xf11b;"
44
+ d="M354.591 24.7764v192.975h41.2588v-192.975h-41.2588v0zM131.83 24.7764v192.975h39.9492v-192.975h-39.9492v0zM185.528 24.7764v192.975h42.5811v-192.975h-42.5811v0zM241.883 24.7764v192.975h42.5928v-192.975h-42.5928v0zM340.83 217.751v-192.975h-42.6055
45
+ v192.975h42.6055v0zM378.135 231.401h-229.495l117.777 71.1689l111.718 -71.1689v0zM122.22 231.401h-98.2871v71.9033h217.301l-119.014 -71.9033v0zM290.731 303.305h211.693v-71.9033h-98.874l-112.819 71.9033v0zM472.148 316.919h-417.926
46
+ c40.916 72.5029 119.16 121.511 208.963 121.511c89.7656 0 168.01 -49.0078 208.963 -121.511v0zM92.1016 36.1748l-2.375 -7.21094l6.23145 4.45605l6.25684 -4.45605l-2.39941 7.21094l6.25586 4.45703h-7.72559l-2.375 7.18652l-2.375 -7.18652h-7.70117
47
+ l6.20703 -4.45703v0zM58.0547 80.752l-2.40039 -7.21094l6.23242 4.44336l6.25586 -4.44336l-2.375 7.21094l6.23145 4.45605h-7.70117l-2.39941 7.21094l-2.375 -7.21094h-7.70117l6.23242 -4.45605v0zM34.6211 135.159l-2.39941 -7.18652l6.23145 4.45703
48
+ l6.25586 -4.45703l-2.375 7.18652l6.23242 4.46875h-7.70117l-2.39941 7.18652l-2.375 -7.18652h-7.70117l6.23145 -4.46875v0zM118.069 24.7764h-94.1484v172.32l3.14648 -2.24023l-2.39941 -7.21094l6.23145 4.46777l6.25586 -4.46777l-2.375 7.21094l6.23145 4.45605
49
+ h-7.7002l-2.40039 7.21094l-2.375 -7.21094h-4.60352v18.4502h94.1484v-192.986h-0.0117188zM118.069 11.1377v-51.2119h-94.1484v51.2119h94.1484v0zM409.599 11.1377h92.8262v-51.2119h-92.8262v51.2119v0zM327.057 -25.334l6.25586 4.45703h-7.72461l-2.375 7.21094
50
+ l-2.37598 -7.21094h-7.7002l6.23145 -4.45703l-2.375 -7.21094l6.23145 4.44434l6.25586 -4.44434l-2.42383 7.21094v0zM382.211 -3.50488l6.25684 4.45703h-7.70117l-2.375 7.21094l-2.39941 -7.21094h-7.70117l6.23145 -4.45703l-2.375 -7.21094l6.25684 4.44434
51
+ l6.23145 -4.44434l-2.4248 7.21094v0zM199.302 -25.334l-2.40039 -7.21094l6.25684 4.44434l6.23145 -4.44434l-2.375 7.21094l6.23145 4.45703h-7.70117l-2.375 7.21094l-2.375 -7.21094h-7.72559l6.23242 -4.45703v0zM144.159 -3.50488l-2.39941 -7.21094l6.23145 4.44434
52
+ l6.25586 -4.44434l-2.375 7.21094l6.23145 4.45703h-7.7002l-2.40039 7.21094l-2.375 -7.21094h-7.7002l6.23145 -4.45703v0zM395.838 11.1377v-51.2119h-126.311l-2.17969 6.59863l6.23145 4.44434h-7.7002l-2.375 7.21094l-2.40039 -7.21094h-7.7002l6.25586 -4.44434
53
+ l-2.2041 -6.59863h-125.625v51.2119h264.008v0zM268.891 -40.0742h-10.8105l5.41113 3.85645l5.39941 -3.85645v0zM434.256 36.1748l6.23242 4.45703h-7.70117l-2.375 7.18652l-2.3877 -7.18652h-7.72559l6.25684 -4.45703l-2.375 -7.21094l6.23145 4.45605
54
+ l6.23145 -4.45605l-2.3877 7.21094v0zM468.316 80.752l6.25586 4.45605h-7.70117l-2.375 7.21094l-2.39941 -7.21094h-7.70117l6.23242 -4.45605l-2.375 -7.21094l6.25586 4.44336l6.23145 -4.44336l-2.42383 7.21094v0zM491.737 135.159l6.25586 4.46875h-7.70117
55
+ l-2.375 7.18652l-2.39941 -7.18652h-7.70117l6.21973 -4.46875l-2.375 -7.18652l6.25586 4.45703l6.23145 -4.45703l-2.41113 7.18652v0zM502.438 24.7764h-92.8262v192.975h92.8262v-18.4502h-4.60352l-2.3877 7.21094l-2.39941 -7.21094h-7.70117l6.23242 -4.45703
56
+ l-2.3877 -7.21094l6.25586 4.46875l6.23242 -4.46875l-2.40039 7.21094l3.14648 2.24023v-172.308h0.0126953z" />
57
+ <glyph glyph-name="uniF119" unicode="&#xf119;"
58
+ d="M184.373 175.006c0 13.7754 -4.87207 25.5361 -14.624 35.2793c-9.74414 9.75293 -21.5127 14.624 -35.2881 14.624c-13.7842 0 -25.5439 -4.87109 -35.2959 -14.624c-9.74414 -9.73535 -14.624 -21.5039 -14.624 -35.2793c0 -13.7842 4.87207 -25.5439 14.624 -35.2959
59
+ s21.5117 -14.6162 35.2959 -14.6162c13.7676 0 25.5361 4.86426 35.2881 14.6162s14.624 21.5195 14.624 35.2959zM234.284 175.006c0 -14.168 -2.14355 -25.8086 -6.43164 -34.8965l-70.9678 -150.903c-2.08008 -4.29688 -5.16797 -7.67285 -9.26367 -10.1445
60
+ c-4.08887 -2.47168 -8.47266 -3.7041 -13.1523 -3.7041c-4.68848 0 -9.07227 1.23242 -13.168 3.7041s-7.1123 5.83984 -9.06445 10.1445l-71.168 150.903c-4.28809 9.09668 -6.43164 20.7285 -6.43164 34.8965c0 27.5518 9.74414 51.0801 29.2402 70.5674
61
+ c19.4961 19.5039 43.0234 29.248 70.584 29.248c27.5439 0 51.0801 -9.74414 70.5762 -29.248c19.4951 -19.4873 29.2471 -43.0156 29.2471 -70.5674zM432.373 311.006c0 13.7754 -4.87207 25.5361 -14.624 35.2793c-9.75195 9.75293 -21.5127 14.624 -35.2803 14.624
62
+ c-13.7842 0 -25.5439 -4.87109 -35.2959 -14.624c-9.75195 -9.73535 -14.624 -21.5039 -14.624 -35.2793c0 -13.7842 4.87207 -25.5439 14.624 -35.2959s21.5117 -14.6162 35.2959 -14.6162c13.7676 0 25.5283 4.86426 35.2803 14.6162s14.624 21.5195 14.624 35.2959z
63
+ M482.284 311.006c0 -14.168 -2.14355 -25.8086 -6.43164 -34.8965l-70.9678 -150.903c-2.08008 -4.29688 -5.16797 -7.67285 -9.26367 -10.1445c-4.08887 -2.47168 -8.48047 -3.7041 -13.1523 -3.7041c-4.68848 0 -9.08008 1.23242 -13.168 3.7041
64
+ s-7.1123 5.83984 -9.06445 10.1445l-71.168 150.903c-4.28809 9.09668 -6.43164 20.7285 -6.43164 34.8965c0 27.5518 9.75195 51.0801 29.2402 70.5674c19.4961 19.5039 43.0234 29.248 70.584 29.248c27.5439 0 51.0801 -9.74414 70.5674 -29.248
65
+ c19.5039 -19.4873 29.2559 -43.0156 29.2559 -70.5674z" />
66
+ <glyph glyph-name="uniF107" unicode="&#xf107;"
67
+ d="M24.3184 346.672v77.0098h77.0098v-77.0098h-77.0098zM0 322.354h125.646v125.646h-125.646v-125.646zM410.671 346.672v77.0098h77.0117v-77.0098h-77.0117zM386.353 322.354h125.648v125.646h-125.648v-125.646zM24.3184 -39.6807v77.0117h77.0098v-77.0117h-77.0098z
68
+ M0 -63.999h125.646v125.648h-125.646v-125.648zM410.671 -39.6807v77.0098h77.0117v-77.0098h-77.0117zM386.353 -63.999h125.648v125.646h-125.648v-125.646zM113.487 409.495v-48.6367h285.024v48.6367h-285.024zM113.487 8.23633v-48.6367h285.024v48.6367h-285.024z
69
+ M424.859 49.4902h48.6367v285.022h-48.6367v-285.022zM38.5049 49.4902h48.6367v285.022h-48.6367v-285.022z" />
70
+ <glyph glyph-name="uniF116" unicode="&#xf116;"
71
+ d="M479.392 117.504h31.96v-77.6475h-152.151v77.6475h27.3359l-46.6963 77.624l-18.1035 -30.1123h17.3594v-77.6318h-166.823v77.6318h17.3594l-18.1035 30.1123l-46.6963 -77.624h27.3359v-77.6475h-152.168v77.6475h31.9756l89.6406 148.992h-24.6885v77.6475h149.2
72
+ v-77.6475h-24.6875l34.2314 -56.9199l34.2559 56.9199h-24.6875v77.6475h149.2v-77.6475h-24.6885zM404.472 334.192h-129.279v-57.752h32.3438l-51.8643 -86.168l-51.8398 86.168h32.3359v57.752h-129.288v-57.752h32.3359l-101.624 -168.904h-27.6396v-57.7363h132.264
73
+ v57.7363h-34.9922l64.2959 106.88l35.7129 -59.3682h-25.0244v-57.7275h146.928v57.7275h-25.0078l35.7119 59.3682l64.2881 -106.88h-34.9844v-57.7363h132.265v57.7363h-27.6484l-101.616 168.904h32.3281v57.752zM394.512 324.24v-37.8398h-39.9834l113.6 -188.816
74
+ h23.3203v-37.832h-112.36v37.832h42.6396l-81.8955 136.144l-53.3125 -88.624h32.6562v-37.8154h-127.016v37.8154h32.6719l-53.3125 88.624l-81.9033 -136.144h42.6396v-37.832h-112.352v37.832h23.3115l113.592 188.816h-39.9756v37.8398h109.376v-37.8398h-39.9922
75
+ l69.4482 -115.44l69.4639 115.44h-39.9922v37.8398h109.376z" />
76
+ <glyph glyph-name="uniF104" unicode="&#xf104;"
77
+ d="M107.952 448h-107.952v-512h107.952v512zM283.759 448h-107.951v-348.53h107.951v348.53zM459.566 448h-107.952v-512h107.952v512z" />
78
+ <glyph glyph-name="uniF113" unicode="&#xf113;"
79
+ d="M170.666 213.334c0 35.3428 28.6455 64 64 64c35.3535 0 64 -28.6572 64 -64c0 -35.3438 -28.6465 -64 -64 -64c-35.3545 0 -64 28.6562 -64 64zM277.332 213.334c0 23.5312 -19.1465 42.666 -42.666 42.666s-42.666 -19.1348 -42.666 -42.666
80
+ c0 -23.5332 19.1445 -42.668 42.666 -42.668c23.5195 0 42.666 19.1348 42.666 42.668zM276.187 334.312c37.25 -12.7812 66.667 -42.208 79.458 -79.458l-21.875 -2.73926c-10.834 27.5947 -32.7285 49.4893 -60.3115 60.3223zM398.646 260.229l-21.335 -2.66699
81
+ c-14.5615 46.833 -51.5811 83.8652 -98.415 98.417l2.66797 21.3438c56.5176 -16.1338 100.957 -60.583 117.082 -117.094zM170.666 -12.2715c-98.458 27.8857 -170.666 118.22 -170.666 225.605c0 129.604 105.062 234.666 234.666 234.666
82
+ c129.604 0 234.668 -105.062 234.668 -234.666c0 -22.2188 -3.29297 -43.625 -9.0625 -64h-44.8125c7.12305 20.0518 11.207 41.5303 11.207 64c0 105.864 -86.125 192 -192 192c-105.874 0 -192 -86.1357 -192 -192c0 -83.3975 53.542 -154.354 128 -180.803v-44.8027v0z
83
+ M185.916 119.386c-4.39648 -5.82422 -7.91602 -12.2412 -10.458 -19.209c-28.7295 15.0635 -51.1045 40.5322 -61.7715 71.6143l21.875 2.74023c9.45801 -24.0723 27.627 -43.3125 50.3545 -55.1455zM92.0215 169.092c12.4785 -40.1328 41.5205 -72.9355 79.0205 -90.6953
84
+ c-0.0615234 -1.26074 -0.375 -2.44922 -0.375 -3.72949v-19.2178c-48.2285 19.5723 -85.5 60.333 -99.9785 110.968zM458.541 20.0098c0 -14.5918 -6.18848 -25.5605 -19.542 -25.5605h-15.3545v53.7705h12.291c16.4805 -0.000976562 22.6055 -10.376 22.6055 -28.21z
85
+ M308.124 20.0098c0 -14.6758 -6.22949 -25.5605 -19.5205 -25.5605h-15.376v53.7705h12.3125c16.501 -0.000976562 22.584 -10.376 22.584 -28.21zM480 106.666c17.666 0 32 -14.3213 32 -32v-106.666c0 -17.6768 -14.334 -32 -32 -32h-234.666
86
+ c-17.667 0 -32 14.3232 -32 32v106.666c0 17.6787 14.333 32 32 32h234.666zM289.813 -21.332c23.167 0 35.54 17.5605 35.54 43.1455c0 27.2061 -14.375 42.1865 -35.54 42.1865h-33.8135v-85.332h33.8135zM373.729 -21.332l25.9805 85.332h-17.7285l-17.709 -60h-0.166016
87
+ l-17.459 60h-17.6875l25.3545 -85.332h19.415zM440.209 -21.332c23.166 0 35.541 17.5605 35.541 43.1455c0 27.2061 -14.3535 42.1865 -35.541 42.1865h-33.793v-85.332h33.793z" />
88
+ <glyph glyph-name="uniF115" unicode="&#xf115;"
89
+ d="M510.24 200.88c9.75195 -56.752 -31.0322 -100.376 -50.7998 -148.544c-6.28809 -15.208 -11.792 -35.6318 -10.8008 -53.2236c0 0 -161.655 0 -190.456 -0.0166016h-2.19141h-2.2002c-28.7998 0.0166016 -190.472 0.0166016 -190.472 0.0166016
90
+ c1 17.5918 -4.49609 38.0156 -10.7686 53.2236c-19.7842 48.168 -60.5518 91.7842 -50.8076 148.528c5.42383 31.5117 30.8877 53.4639 62.0479 55.9678c55.6719 4.48828 103.736 -25.3203 157.728 -34.8477c4.32812 -0.744141 10.1367 8.43945 15.3926 13.6953
91
+ c-25.0557 18.8887 -21.6562 55.8799 7.35156 71.8721c2.00879 2.2959 1.27246 23.6006 0.136719 24.5684c-2.36816 1.96777 -20.8564 -1.58398 -23.4961 0.704102c-2.61621 2.2793 -2.08789 24.4717 -0.416016 26.6074c1.6875 2.13672 22.5273 -0.151367 23.7041 1.27246
92
+ c1.17578 1.45605 -0.576172 21.3994 1.3916 22.9844c1.40039 1.12793 7.19238 1.23926 10.416 1.21582c3.21582 0.03125 9 -0.0878906 10.3916 -1.21582c1.95996 -1.57617 0.216797 -21.5283 1.38477 -22.9844c1.19141 -1.42383 22.0312 0.864258 23.7119 -1.27246
93
+ c1.67969 -2.12793 2.21582 -24.3281 -0.416016 -26.584c-2.64062 -2.30371 -21.1201 1.26465 -23.5039 -0.704102c-1.14453 -0.967773 -1.87207 -22.2871 0.12793 -24.5752c29.0156 -15.9844 32.4238 -52.9922 7.38379 -71.8721
94
+ c5.22363 -5.24805 11.04 -14.4482 15.3604 -13.6963c54.0156 9.55176 102.071 39.3359 157.752 34.8477c31.168 -2.51953 56.6152 -24.4561 62.0479 -55.9678zM232.968 75.2236c3.48047 19.8887 -4.8877 59.3447 -13.2715 77.8721
95
+ c-17.9521 39.7842 -7.07227 37.3359 -12.04 40.4082c-20.2402 12.5762 -54.5762 23.0322 -80.6162 30.7764c-24.8564 7.37598 -49.0957 12.3594 -72.1836 3.55176c-37.8965 -14.4561 -29.1924 -62.6719 -14.7529 -92.1523
96
+ c19.6484 -40.0801 52.7441 -97.9756 79.4404 -105.472c14.3125 -4 23.2881 1.94434 23.248 13.5039c-0.0244141 9.0957 -1.53613 17.9844 -7.25586 22.3359c0 0 -27.584 0.175781 -30.4082 2.64062c-2.83984 2.46387 -5.04785 19.0156 -4.53613 22.3516
97
+ c0.520508 3.32031 30.0566 -2.7041 31.624 0.496094c1.56836 3.20801 -7.5918 22.04 -5.95215 25.248c1.6084 3.16016 23.9199 -0.167969 23.9199 -0.167969c2.88867 -1.38379 5.52051 -23.9365 8.32031 -26.248c2.83203 -2.32812 23.9277 0.807617 26.5605 -1.49609
98
+ c2.64746 -2.36816 7.15918 -20.5918 5.49512 -22.8799c-1.66309 -2.33594 -25.0234 1.23145 -26.9434 -1.26465c-2.27246 -7.35938 4.80762 -19.8633 13.4873 -27.4316c6.28027 -5.52832 13.2246 -8.80762 21.8564 -8.75977
99
+ c13.1602 0.103516 28.9922 18.1914 34.0078 46.6875zM392.448 30.2002c-14.3203 -4 -23.2881 1.94336 -23.2646 13.5039c0.0400391 9.0957 1.53613 17.9844 7.27246 22.3359c0 0 27.584 0.175781 30.4082 2.63965c2.81543 2.46387 5.04004 19.0166 4.52734 22.3604
100
+ c-0.511719 3.31152 -30.0713 -2.71191 -31.624 0.496094c-1.55957 3.20801 7.59277 22.04 5.97656 25.248c-1.65625 3.16016 -23.9365 -0.167969 -23.9365 -0.167969c-2.8877 -1.38379 -5.51172 -23.9365 -8.33594 -26.248
101
+ c-2.82324 -2.30371 -23.9121 0.832031 -26.5596 -1.49609c-2.63965 -2.36816 -7.13574 -20.5918 -5.48047 -22.8799c1.64844 -2.33594 25.0166 1.22363 26.9521 -1.26465c2.26465 -7.35938 -4.81543 -19.8555 -13.5039 -27.4316
102
+ c-6.28027 -5.51953 -13.2002 -8.80762 -21.8477 -8.75977c-13.168 0.103516 -28.9844 18.1914 -33.9922 46.6875c-3.50391 19.8799 4.87207 59.3447 13.2158 77.8643c17.9766 39.7842 7.08789 37.3359 12.04 40.4082c20.248 12.5762 54.6006 23.0322 80.624 30.7764
103
+ c24.8643 7.36719 49.0879 12.376 72.2002 3.55176c37.8799 -14.4561 29.168 -62.6719 14.7363 -92.1523c-19.6328 -40.0801 -52.7363 -97.9756 -79.4082 -105.472z" />
104
+ <glyph glyph-name="uniF106" unicode="&#xf106;"
105
+ d="M88.1523 256.52h41.7598l6.42383 -225.407h-53.7998l5.61621 225.407v0zM48.7842 23.0078h414.432v-29.0234h24.832v-28.9766h24.0801v-29.0078h-512.256v28.9922h24.0801v28.9922h24.832v29.0234v0zM484.824 319.456v0v-17.7285h-457.664v17.7285l228.824 108.424z
106
+ M71.2725 293.632h369.447v-29h-369.447v29v0zM381.272 256.52h41.7754l6.42383 -225.407h-53.8154zM283.56 256.52h41.7686l6.42383 -225.407h-53.8076l5.61523 225.407v0zM185.856 256.52h41.7676l6.42383 -225.424h-53.8076z" />
107
+ <glyph glyph-name="uniF103" unicode="&#xf103;"
108
+ d="M18.7842 429.216h216.285h216.285v-162.951c0 -215.741 -136.625 -302.743 -216.285 -349.049c-79.6611 46.3057 -216.285 133.308 -216.285 349.049v162.951zM120.218 383.598v-45.082h14.9609v-215.748h-14.9609v-45.082h77.2832v45.082h-14.9609v84.1934h105.057
109
+ v-84.1934h-14.959v-45.082h77.2822v45.082h-14.96v215.748h14.96v45.082h-77.2822v-45.082h14.96v-84.1934h-105.057v84.1934h14.96v45.082h-77.2832z" />
110
+ <glyph glyph-name="uniF101" unicode="&#xf101;"
111
+ d="M7.83594 46.3564c0.90625 2.98145 3.26367 7.5498 5.60938 10.5586c4.52148 5.7959 11.9014 12.0781 21.9326 18.6719c15.4697 10.168 29.9355 16.6025 48.3701 21.5117c26.7402 7.12305 55.084 7.71973 79.5498 7.71973l1.30664 -0.00195312
112
+ c32.5635 -0.0292969 102.191 -4.13379 153.03 -7.13184c26.6807 -1.57031 47.7539 -2.81445 55.0947 -2.96484l1.31348 -0.03125c2.14844 -0.0556641 5.73926 -0.149414 10.0479 -0.149414c31.0244 0 41.6182 4.85645 46.4004 7.60254
113
+ c5.20605 2.9873 10.667 7.25293 10.2402 10.2402c-0.621094 4.34863 -11.5186 4.01074 -15.6006 4.67188c-16.2314 2.62695 -30.2236 9.06641 -40.2783 16.1699c-11.5205 8.13965 -18.7764 22.5234 -18.7764 22.5234l-7.61328 -5.05469
114
+ c-27.8779 -18.5049 -50.917 -27.125 -72.5068 -27.127c-1.1123 0 -2.23438 0.0234375 -3.33594 0.0712891c-12.4365 0.540039 -22.0293 5.61328 -24.7383 10.1152l-5.01465 8.33105l-7.3584 -6.35547c-9.87402 -8.53027 -23.6758 -11.0967 -29.1523 -11.8037
115
+ c-2.41504 -0.314453 -4.86328 -0.472656 -7.27734 -0.472656c-12.5879 0 -24.0352 4.23535 -32.2344 11.9229c-1.20898 1.13086 -5.66797 6.36523 -6.46973 7.53027l-5.24316 7.61621l-6.96777 -6.06348c-2.4502 -2.16504 -10.0859 -6.91211 -11.623 -7.74414
116
+ c-15.8818 -8.57324 -33.4453 -13.1074 -50.7891 -13.1074c-15.6289 0 -30.5928 3.83789 -43.2754 11.1016c-30.1055 17.2461 -34.666 50.9199 -33.1924 76.1289c2.0166 34.417 14.5586 68.7979 37.2764 102.182c19.5889 28.7852 46.6162 56.3037 78.1631 79.5801
117
+ c22.9746 16.9531 58.127 38.3789 95.1094 44.1895c6.50586 1.02246 13.4199 2.01953 20.1377 2.01953c7.59277 0 13.2822 -1.26953 17.3867 -3.88574c11.0742 -7.05176 11.3896 -20.8926 10.5918 -28.5156c-2.93848 -28.0029 -28.8223 -61.8262 -56.5605 -61.8281
118
+ c-5.12695 0.00390625 -9.70605 2 -12.29 5.33301c-2.0293 2.62012 -2.5918 5.76758 -1.66992 9.35547c2.34766 9.14648 10.9668 12.1455 24.8838 15.9971c1.11914 0.308594 2.22852 0.616211 3.32031 0.927734c22.1816 6.3125 25.749 20.1182 24.8379 30.5859
119
+ c-0.618164 7.11035 -5.61816 14.708 -17.8057 14.708c-11.4463 0 -25.1699 -6.69531 -26.6963 -7.45898c-30.3135 -15.1562 -50.6377 -40.1924 -70.4863 -66.6875c-40.8916 -54.5898 -60.0977 -106.883 -57.0859 -155.435
120
+ c1.32422 -21.332 16.0664 -44.3525 37.5771 -44.3525c7.28906 0 14.5273 2.63477 21.5146 7.83691c11.2207 8.34473 17.5547 21.2529 23.1475 32.6396c1.54785 3.15527 3.01172 6.1377 4.52539 8.93848c8.45605 15.6152 18.5078 29.5947 30.8174 41.1133
121
+ c13.5811 12.7061 27.8506 20.8252 43.5205 25.9404c8.3623 2.73145 15.8633 3.90527 25.0879 3.75586c8.69531 -0.140625 13.3115 -5.63281 15.3594 -9.2168c1.53613 2.9873 3.92578 8.27734 4.86426 9.04492c0.861328 0.705078 15.8086 0.635742 20.4805 0.427734
122
+ c3.83984 -0.170898 15.7217 -0.114258 17.1514 -1.66406c1.68555 -1.83008 -3.07129 -11.7764 -8.34863 -25.917c-2.44922 -6.56055 -6.05078 -14.5059 -9.79297 -24.2695c-1.45898 -3.80078 -2.94434 -7.58691 -4.39648 -11.2969
123
+ c-11.9102 -30.3779 -19.7773 -50.4492 -6.56738 -57.2803c2.57812 -1.33398 5.44922 -2.00977 8.54004 -2.00977c9.44531 0 18.9141 6.33594 25.8271 10.9619c0.808594 0.538086 1.57031 1.04785 2.28125 1.5127c8.0918 5.27344 12.6934 8.5293 16.9424 12.7793
124
+ l2.64258 2.63965l-0.262695 3.72363c-2.36816 33.7002 2.49512 70.4248 12.6865 95.8496c14.1592 35.3271 34.8906 67.2607 59.9463 92.3496c12.5625 12.5801 44.1133 35.4258 61.4473 35.8281c14.6768 0.34082 10.5527 -25.5029 9.21582 -31.5732
125
+ c-2.90039 -13.1826 -18.3535 -54.1475 -43.5479 -96.1377c-8.50977 -14.1836 -27.0498 -39.7314 -39.3174 -56.6377c-5.78223 -7.96973 -10.3506 -14.2646 -12.3564 -17.2744l-1.16699 -1.75l-0.179688 -2.09766c-1.7002 -20.0166 8.66504 -40.4355 19.6914 -51.8008
126
+ c10.3428 -10.6514 21.292 -14.501 31.8818 -18.2236c3.62891 -1.27832 7.38184 -2.5957 11.1846 -4.20312c3.26465 -1.38281 7.32324 -3.68848 8.12402 -6.84082c0.788086 -3.11426 -1.23828 -7.99512 -5.55957 -13.3936
127
+ c-22.0176 -27.5117 -50.2607 -36.2305 -77.5049 -41.5547c-15.668 -3.05957 -34.7119 -4.54688 -58.2266 -4.54883c-15.8223 0 -31.5938 0.635742 -46.8438 1.25c-5.80176 0.234375 -11.4756 0.461914 -16.9697 0.650391c-17.4824 0.588867 -36.667 1.71387 -55.2207 2.7998
128
+ c-16.293 0.956055 -33.1406 1.94141 -48.6807 2.55762c-12.3154 0.490234 -24.1914 0.734375 -35.2988 0.734375c-30.3213 0 -56.4004 -1.83691 -77.5127 -5.4541c-9.53516 -1.6377 -17.7725 -3.77637 -25.7402 -5.84863
129
+ c-2.3252 -0.606445 -4.63574 -1.20801 -6.95508 -1.78711c-1.01074 -0.251953 -2.22852 -0.625977 -3.63965 -1.05371c-2.9248 -0.894531 -7.50977 -2.29004 -10.9287 -2.69434v0zM273.565 251.52c-8.31934 -0.255859 -28.1602 -10.4951 -44.0244 -39.8389
130
+ c-3.70215 -6.84863 -15.1787 -35.332 -8.96094 -49.5508c1.87891 -4.29785 5.27734 -7.24609 9.56934 -8.29395c1.1084 -0.274414 2.25293 -0.410156 3.39355 -0.410156c13.9941 -0.00195312 23.7939 19.5781 33.4229 41.3965
131
+ c0.751953 1.70117 1.42969 3.23145 2.01855 4.5166c2.46387 5.37891 12.8584 29.3652 14.9111 38.3994c1.27637 5.63184 1.70215 14.1514 -10.3301 13.7812zM485.192 370.346c-3.27734 1.80859 -12.0264 -4.64258 -12.0264 -4.64258
132
+ c-16.7539 -13.3037 -29.3457 -29.7852 -40.1973 -48.7764c-28.6719 -50.1758 -26.0273 -89.5996 -26.0273 -89.5996s14.957 17.0273 18.4854 22.6035c4.81055 7.60449 22.9131 33.0596 33.0986 51.0078c10.9199 19.2422 23.4688 45.875 26.5791 55.0996
133
+ c0 -0.00195312 5.03711 11.5781 0.0878906 14.3076z" />
134
+ <glyph glyph-name="uniF108" unicode="&#xf108;"
135
+ d="M410.671 346.672v77.0098h77.0117v-77.0098h-77.0117zM386.353 322.354h125.648v125.646h-125.648v-125.646zM24.3184 -39.6807v77.0117h77.0098v-77.0117h-77.0098zM0 -63.999h125.646v125.648h-125.646v-125.648zM96.291 66.6865l34.3926 -34.3926l285.022 285.022
136
+ l-34.3926 34.3926z" />
137
+ <glyph glyph-name="uniF105" unicode="&#xf105;"
138
+ d="M73.3057 366.146v-116.948h-73.3057v198.802h458.019v-198.802h-72.0498v116.314h-97.7275v-357.704h78.6797v-71.8086h-276.963v71.8086h78.6846v358.338h-95.3369z" />
139
+ <glyph glyph-name="uniF10D" unicode="&#xf10d;"
140
+ d="M0 448zM437.024 373.024c48.3516 -48.3525 74.9756 -112.641 74.9756 -181.024s-26.624 -132.672 -74.9756 -181.024c-48.3525 -48.3516 -112.641 -74.9756 -181.024 -74.9756s-132.672 26.624 -181.024 74.9756c-48.3516 48.3525 -74.9756 112.641 -74.9756 181.024
141
+ s26.624 132.672 74.9756 181.024c48.3525 48.3516 112.641 74.9756 181.024 74.9756s132.672 -26.624 181.024 -74.9756zM414.384 33.5996c31.5361 31.5361 52.4961 70.8008 61.1357 113.536c-6.73535 -9.91992 -13.1836 -13.5996 -17.168 8.6084
142
+ c-4.11133 36.1914 -37.3594 13.0723 -58.2559 25.9355c-22 -14.832 -71.4561 28.832 -63.0557 -20.416c12.96 -22.208 70 29.7285 41.5684 -17.2637c-18.1445 -32.7998 -66.3203 -105.472 -60.0488 -143.136c0.78418 -54.8799 -56.0635 -11.4404 -75.6631 6.75195
143
+ c-13.1846 36.4639 -4.49609 100.191 -38.9443 118.048c-37.4082 1.63184 -69.5039 5.02441 -84 46.832c-8.71973 29.9199 9.28027 74.4482 41.3438 81.3281c46.9277 29.4873 63.6797 -34.5283 107.696 -35.7119c13.6641 14.3037 50.9121 18.8477 54 34.8799
144
+ c-28.8799 5.08789 36.6396 24.2715 -2.76855 35.1836c-21.7275 -2.55957 -35.7432 -22.5439 -24.1914 -39.4717c-42.1123 -9.82422 -43.4727 60.9443 -83.9521 38.624c-1.02441 -35.2959 -66.1123 -11.4404 -22.5117 -4.28809
145
+ c14.9756 6.54395 -24.4326 25.5039 -3.13672 22.0635c10.4648 0.576172 45.6641 12.9121 36.1445 21.2002c19.5996 12.1768 36.0801 -29.1514 55.2637 0.944336c13.8564 23.1357 -5.80762 27.4082 -23.168 15.6797c-9.79199 10.96 17.2803 34.6406 41.168 44.8643
146
+ c7.95215 3.4082 15.5684 5.26367 21.376 4.73633c12.0322 -13.8887 34.2725 -16.3047 35.4404 1.66406c-29.792 14.2715 -62.6406 21.8076 -96.6406 21.8076c-48.8154 0 -95.2314 -15.5039 -133.647 -44.1924c10.3203 -4.73535 16.1914 -10.624 6.24023 -18.1436
147
+ c-7.72852 -23.0244 -39.0889 -53.9365 -66.6084 -49.5684c-14.2881 -24.6396 -23.7119 -51.8076 -27.7275 -80.2715c23.0557 -7.63184 28.3672 -22.7207 23.4238 -27.7764c-11.7441 -10.2402 -18.96 -24.7676 -22.6885 -40.6562
148
+ c7.50391 -45.9199 29.0879 -88.2393 62.6406 -121.792c42.3037 -42.3037 98.5596 -65.5996 158.384 -65.5996s116.08 23.2959 158.384 65.5996h-0.0322266z" />
149
+ <glyph glyph-name="uniF111" unicode="&#xf111;"
150
+ d="M236.241 -53.5957c-39.2422 19.7959 -84 51.4355 -114.856 81.1934c-67.5645 65.1572 -106.971 141.55 -119.299 231.273c-2.74121 19.9512 -1.61914 107.34 1.52637 118.825l1.40332 5.12305l15.5615 -5.44434c30.9717 -10.8359 71.543 -14.4951 101.728 -9.1748
151
+ c43.5264 7.67285 86.2246 31.6787 117.77 66.2139c6.83691 7.4834 13.2295 13.6074 14.207 13.6074s4.1875 -2.86133 7.13184 -6.3584c10.2627 -12.1855 32.1816 -31.8555 45.915 -41.2041c39.8291 -27.1123 85.4346 -38.8242 131.687 -33.8174
152
+ c19.4805 2.10938 52.6992 10.3691 58.4971 14.5459c2.11914 1.52734 3.92188 1.79395 4.8457 0.717773c6.82617 -7.95801 8.51758 -95.6689 2.56348 -132.948c-17.3984 -108.918 -77.3057 -199.904 -177.038 -268.885c-28.71 -19.8574 -66.4463 -40.6914 -73.7041 -40.6914
153
+ c-2.20898 0 -10.2803 3.16113 -17.9375 7.02344v0zM269.591 -50.1523c33.1006 16.8311 70.7471 42.3232 99.6113 67.4492l14.5205 12.6396l-64.8115 46.6934l-64.8105 46.6943l-64.5576 -46.4883l-64.5566 -46.4873l11.0137 -10.2803
154
+ c18.458 -17.2295 66.0986 -50.6211 91.7832 -64.3311c13.3584 -7.13086 25.0996 -12.9648 26.0908 -12.9648s8.06445 3.18359 15.7168 7.0752v0zM161.711 166.989l92.3789 66.5391l92.9023 -66.916c58.1553 -41.8887 93.7041 -66.2998 95.0459 -65.2676
155
+ c3.6416 2.80176 18.0664 27.8662 26.9551 46.8389c12.75 27.2109 20.8135 51.6875 28.8213 87.4805l1.23242 5.50977h-245.009c-232.207 0 -244.95 -0.154297 -243.872 -2.9668c0.625977 -1.63184 1.82422 -6.78125 2.66309 -11.4443
156
+ c2.6123 -14.5166 14.8213 -52.1904 22.5928 -69.7168c11.373 -25.6494 28.9111 -56.5957 32.0732 -56.5957c1.01074 0 43.4082 29.9434 94.2158 66.5391v0zM496.618 238.45c-0.393555 -1.43164 -2.15723 -8.58984 -3.94727 -16.002
157
+ c-8.49609 -35.2314 -19.0225 -62.7461 -35.9414 -93.9385c-7.63281 -14.0684 -14.0596 -23.623 -15.666 -24.8281c-3.73047 1.45508 -27.6641 18.0264 -103.541 72.041c-45.334 32.2725 -82.2363 58.8691 -84.042 58.8691c-1.81641 0 -42.9307 -29.876 -93.4189 -66.1582
158
+ c-47.3145 -33.999 -87.249 -62.2432 -92.5254 -65.543c-1.15918 1.00391 -2.89453 3.19434 -4.60938 5.90234c-20.6338 32.6279 -37.3516 73.1865 -47.7021 115.796l-3.47754 14.3145zM12.8613 224.016c10.4082 -42.8477 27.21 -83.6299 48.0107 -116.522
159
+ c2.21582 -3.50098 4.61133 -7.18945 6.68652 -7.18945c2.03418 0 43.457 29.8916 93.9219 66.1543c46.9766 33.7598 86.3662 61.792 92.0059 65.502c4.98438 -3.23535 40.498 -28.2285 82.626 -58.2178c80.2793 -57.1484 101.706 -72.543 105.031 -72.543
160
+ c3.10742 0 9.52832 11.0459 17.7236 26.1514c17.0039 31.3496 27.6318 59.1309 36.168 94.5273c1.7832 7.38574 3.5625 14.5996 3.92773 15.9277l1.11328 4.04395l-242.931 -0.3125c-132.885 -0.173828 -242.193 -0.501953 -244.269 -1.04688l-3.77637 -0.992188z
161
+ M160.501 -0.358398c28.1416 -21.1934 53.5537 -37.5586 77.5508 -49.9316c7.70117 -3.97168 14.251 -7.27832 15.9443 -7.27832c2.50488 0 15.248 6.43652 30.0918 14.5684c28.1689 15.4277 61.5088 39.1455 92.6777 65.9229l8.38379 7.2041l-131.033 94.418
162
+ l-64.5205 -46.4805c-34.7969 -25.0664 -64.3545 -45.7471 -64.2881 -47.8936c0.105469 -3.06934 18.708 -18.1143 35.1934 -30.5293zM161.964 1.58398c-14.8516 11.1846 -31.0029 24.9629 -33.8848 28.3955c5.11133 4.125 31.376 23.375 62.9375 46.1113l63.0996 45.457
163
+ l127.106 -91.5889l-6.04199 -5.19141c-31.0557 -26.6807 -64.2979 -50.3193 -92.2607 -65.6357c-14.2607 -7.81152 -26.8184 -13.8145 -28.8838 -14.2617c-1.31836 0.357422 -7.87695 3.39355 -14.8701 7.00098c-23.8408 12.2939 -49.1416 28.5801 -77.2021 49.7129z" />
164
+ <glyph glyph-name="uniF112" unicode="&#xf112;"
165
+ d="M185.916 119.387c-4.39648 -5.8252 -7.91602 -12.2422 -10.458 -19.209c-28.7295 15.0625 -51.1045 40.5303 -61.7715 71.6133l21.875 2.74023c9.45801 -24.0723 27.627 -43.3125 50.3545 -55.1445zM92.0215 169.093c12.4785 -40.1338 41.5205 -72.9365 79.0205 -90.6963
166
+ c-0.0615234 -1.26074 -0.375 -2.4502 -0.375 -3.73047v-19.2178c-48.2285 19.5732 -85.5 60.333 -99.9785 110.969zM398.646 260.229l-21.333 -2.66504c-14.5625 46.833 -51.582 83.8643 -98.417 98.417l2.66699 21.3428c56.5205 -16.1367 100.955 -60.584 117.083 -117.095
167
+ zM276.188 334.312c37.25 -12.7803 66.665 -42.2061 79.458 -79.458l-21.875 -2.73926c-10.835 27.5947 -32.7305 49.4893 -60.3125 60.3223zM234.667 149.334c-35.3555 0 -64 28.6562 -64 64s28.6445 64 64 64c35.3545 0 64 -28.6562 64 -64
168
+ c-0.000976562 -35.3438 -28.6455 -64 -64 -64zM234.667 170.666c23.5215 0 42.667 19.1348 42.667 42.667c0 23.5303 -19.1455 42.667 -42.667 42.667c-23.5225 0 -42.667 -19.1357 -42.667 -42.667c0 -23.5322 19.1465 -42.667 42.667 -42.667zM403.875 46.9805
169
+ c16.3535 0 25.0215 -7.80273 25.0215 -26.959c0 -14.377 -7.14648 -24.4492 -21.6465 -24.4492h-17v51.4082h13.625zM512 74.666v-106.666c0 -17.6768 -14.334 -32 -32 -32h-234.667c-17.666 0 -32 14.3232 -32 32v106.666c0 17.6787 14.334 32 32 32h234.667
170
+ c17.666 0 32 -14.3213 32 -32zM358.146 11.9062h-18.4609c-1.45703 -10.9062 -7.9375 -18.2812 -19.7051 -18.2812c-15.7295 0 -23.5645 11.8438 -23.5645 27.3018c0 15.9287 7.5625 27.9883 23.5645 27.9883c10.123 0 17.7705 -6.82129 18.9775 -14.2705h18.46
171
+ c-2.27148 18.9912 -18.5439 29.3555 -37.4395 29.3555c-26.3965 0 -42.6455 -18.4688 -42.6455 -43.0732c0 -24.5293 16.6475 -42.2598 42.6455 -42.2598c22.4385 0 36.418 13.7402 38.168 33.2393zM448 21.7402c0 25.8525 -15.791 40.3105 -39.3965 40.3105h-37.4375
172
+ v-81.5615h37.4375c25.0215 0.000976562 39.3965 16.167 39.3965 41.251zM42.667 213.333c0 -83.3965 53.541 -154.354 128 -180.802v-44.8027c-98.459 27.8848 -170.667 118.219 -170.667 225.604c0 129.605 105.062 234.667 234.667 234.667
173
+ c129.604 0 234.667 -105.062 234.668 -234.667c0 -22.2188 -3.29199 -43.626 -9.0625 -64h-44.8125c7.12402 20.0527 11.207 41.5312 11.207 64c0 105.865 -86.125 192 -192 192s-192 -86.1348 -192 -192z" />
174
+ <glyph glyph-name="uniF102" unicode="&#xf102;"
175
+ d="M92.2803 367.832l71.1113 70.6562h187.185l69.1436 -70.7207l-0.015625 -99.8477h-123.456v46.6396h-75.0078v-67.6875h135.527l62.9521 -60.7998v-183.872l-61.7998 -61.7041h-203.464l-62.04 62.5283v99.3438h133.392v-41.168h75.9121v63.1201l-147.655 -0.0166016
176
+ l-61.7842 61.8086v181.72zM100.272 364.168v-174.848l56.9512 -56.9766s137.712 0 152.48 0.0078125v-79.5518c-12.9043 0 -79.4404 0 -92.3604 -0.0322266v41.168h-116.943v-87.6396l57.1279 -57.7842h196.783l56.9521 56.9521v177.08l-58.2637 55.9199h-140.24
177
+ c0.0078125 12.6318 0.0078125 71.4883 0 84.1279h91.4727v-46.6396h107.031v88.168l-64.3115 65.9355h-180.488zM169.832 421.232h173.776l59.4561 -61.1602l-0.0166016 -76.4805h-90.5518v46.6406h-107.937l0.00878906 -100.601h144.976l53.5205 -51l-0.0166016 -170.296
178
+ l-52.0635 -52.1758h-190.088l-52.2324 53.0234v75.9287h100.479v-41.1602h108.824l0.0166016 96.0322h-157.312l-52.1201 52.1357v167.952z" />
179
+ <glyph glyph-name="uniF11A" unicode="&#xf11a;"
180
+ d="M24.3184 162.326v28.6611h28.6611v-28.6611h-28.6611zM0 138.008h77.2979v77.2979h-77.2979v-77.2979zM226.325 162.326v28.6611h28.6631v-28.6611h-28.6631zM202.007 138.008h77.2998v77.2979h-77.2998v-77.2979zM24.3184 -39.6826v28.6631h28.6611v-28.6631h-28.6611z
181
+ M0 -64.001h77.2979v77.2998h-77.2979v-77.2998zM226.325 -39.6826v28.6631h28.6631v-28.6631h-28.6631zM202.007 -64.001h77.2998v77.2998h-77.2998v-77.2998zM65.1387 190.845v-28.3721h149.027v28.3721h-149.027zM65.1387 -18.958v-28.3711h149.027v28.3711h-149.027z
182
+ M226.47 1.13965h28.3721v149.027h-28.3721v-149.027zM24.4648 1.13965h28.3721v149.027h-28.3721v-149.027zM123.416 91.8896zM470.358 406.354c26.8516 -26.8564 41.6416 -62.5664 41.6416 -100.548c0 -37.9775 -14.79 -73.6924 -41.6416 -100.552
183
+ c-26.8604 -26.8525 -62.5742 -41.6416 -100.552 -41.6416c-37.9814 0 -73.6924 14.7891 -100.548 41.6416c-26.8584 26.8594 -41.6455 62.5742 -41.6455 100.552c0 37.9814 14.7871 73.6914 41.6455 100.548c26.8535 26.8574 62.5664 41.6455 100.548 41.6455
184
+ c37.9775 0 73.6914 -14.7881 100.552 -41.6455zM457.775 217.821c17.5215 17.5137 29.1602 39.332 33.9688 63.0586c-3.75098 -5.50195 -7.3252 -7.55078 -9.54688 4.79102c-2.27344 20.0986 -20.7412 7.25488 -32.3555 14.4062
185
+ c-12.2188 -8.24414 -39.6885 16.0117 -35.0273 -11.3447c7.2041 -12.3311 38.8818 16.5146 23.0947 -9.58984c-10.0781 -18.2139 -36.8428 -58.5811 -33.3535 -79.4971c0.433594 -30.4902 -31.1396 -6.36328 -42.0264 3.74902
186
+ c-7.32422 20.2471 -2.49902 55.6494 -21.6318 65.5605c-20.7783 0.910156 -38.6094 2.79492 -46.6572 26.0195c-4.84375 16.6152 5.15527 41.3496 22.9648 45.1738c26.0654 16.377 35.3691 -19.1816 59.8242 -19.8398c7.58301 7.94629 28.2744 10.4707 29.9932 19.376
187
+ c-16.0469 2.8252 20.3428 13.4824 -1.54492 19.542c-12.0635 -1.41895 -19.8574 -12.5205 -13.4355 -21.9229c-23.3887 -5.4541 -24.1445 33.8516 -46.6309 21.4551c-0.567383 -19.6074 -36.7197 -6.35352 -12.502 -2.38379
188
+ c8.31641 3.63574 -13.5742 14.168 -1.74512 12.2549c5.81641 0.320312 25.3643 7.17383 20.0791 11.7783c10.8828 6.76074 20.0391 -16.1943 30.6963 0.524414c7.68848 12.8506 -3.23047 15.2236 -12.873 8.71094c-5.43652 6.08789 9.59863 19.2402 22.8701 24.916
189
+ c4.4082 1.89746 8.64355 2.9248 11.8711 2.63477c6.68164 -7.71484 19.0342 -9.05664 19.6846 0.923828c-16.543 7.92383 -34.7939 12.1133 -53.6797 12.1133c-27.1113 0 -52.8975 -8.61133 -74.2324 -24.5479c5.73047 -2.63086 8.99316 -5.89746 3.4668 -10.0762
190
+ c-4.29199 -12.79 -21.71 -29.959 -36.999 -27.5352c-7.9375 -13.6855 -13.1699 -28.7725 -15.4014 -44.582c12.8057 -4.23926 15.7568 -12.623 13.0107 -15.4307c-6.52344 -5.68652 -10.5322 -13.7559 -12.6016 -22.584c4.16895 -25.5059 16.1562 -49.0098 34.792 -67.6504
191
+ c23.498 -23.4932 54.748 -36.4355 87.9727 -36.4355c33.2295 0 64.4736 12.9424 87.9668 36.4355h-0.0117188v-0.00390625z" />
192
+ <glyph glyph-name="uniF110" unicode="&#xf110;"
193
+ d="M0 448zM0 352l160 64v-384l-160 -64v384zM352 352v-384l-160 53.3281v384zM512 416v-384l-128 -51.2002v384z" />
194
+ </font>
195
+ </defs></svg>
@@ -0,0 +1,83 @@
1
+ //
2
+ // Icon Font: geoblacklight-icons
3
+ //
4
+
5
+ @font-face {
6
+ font-family: "geoblacklight-icons";
7
+ src: font-url("geoblacklight-icons.eot");
8
+ src: font-url("geoblacklight-icons.eot?#iefix") format("embedded-opentype"),
9
+ font-url("geoblacklight-icons.woff") format("woff"),
10
+ font-url("geoblacklight-icons.ttf") format("truetype"),
11
+ font-url("geoblacklight-icons.svg#geoblacklight-icons") format("svg");
12
+ font-weight: normal;
13
+ font-style: normal;
14
+ }
15
+
16
+ @media screen and (-webkit-min-device-pixel-ratio:0) {
17
+ @font-face {
18
+ font-family: "geoblacklight-icons";
19
+ src: font-url("geoblacklight-icons.svg#geoblacklight-icons") format("svg");
20
+ }
21
+ }
22
+
23
+ [data-icon]:before { content: attr(data-icon); }
24
+
25
+ [data-icon]:before,
26
+ .geoblacklight-berkeley:before,
27
+ .geoblacklight-cd-rom:before,
28
+ .geoblacklight-columbia:before,
29
+ .geoblacklight-dvd-rom:before,
30
+ .geoblacklight-harvard:before,
31
+ .geoblacklight-image:before,
32
+ .geoblacklight-line:before,
33
+ .geoblacklight-massgis:before,
34
+ .geoblacklight-minnesota:before,
35
+ .geoblacklight-mit:before,
36
+ .geoblacklight-mixed:before,
37
+ .geoblacklight-multipoint:before,
38
+ .geoblacklight-paper-map:before,
39
+ .geoblacklight-point:before,
40
+ .geoblacklight-polygon:before,
41
+ .geoblacklight-polyline:before,
42
+ .geoblacklight-princeton:before,
43
+ .geoblacklight-raster:before,
44
+ .geoblacklight-stanford:before,
45
+ .geoblacklight-tufts:before,
46
+ .geoblacklight-ucla:before,
47
+ .geoblacklight-uva:before {
48
+ display: inline-block;
49
+ font-family: "geoblacklight-icons";
50
+ font-style: normal;
51
+ font-weight: normal;
52
+ font-variant: normal;
53
+ line-height: 1;
54
+ text-decoration: inherit;
55
+ text-rendering: optimizeLegibility;
56
+ text-transform: none;
57
+ -moz-osx-font-smoothing: grayscale;
58
+ -webkit-font-smoothing: antialiased;
59
+ font-smoothing: antialiased;
60
+ }
61
+
62
+ .geoblacklight-berkeley:before { content: "\f101"; }
63
+ .geoblacklight-cd-rom:before { content: "\f112"; }
64
+ .geoblacklight-columbia:before { content: "\f115"; }
65
+ .geoblacklight-dvd-rom:before { content: "\f113"; }
66
+ .geoblacklight-harvard:before { content: "\f103"; }
67
+ .geoblacklight-image:before { content: "\f10a"; }
68
+ .geoblacklight-line:before { content: "\f108"; }
69
+ .geoblacklight-massgis:before { content: "\f106"; }
70
+ .geoblacklight-minnesota:before { content: "\f116"; }
71
+ .geoblacklight-mit:before { content: "\f104"; }
72
+ .geoblacklight-mixed:before { content: "\f11a"; }
73
+ .geoblacklight-multipoint:before { content: "\f119"; }
74
+ .geoblacklight-paper-map:before { content: "\f110"; }
75
+ .geoblacklight-point:before { content: "\f109"; }
76
+ .geoblacklight-polygon:before { content: "\f107"; }
77
+ .geoblacklight-polyline:before { content: "\f118"; }
78
+ .geoblacklight-princeton:before { content: "\f111"; }
79
+ .geoblacklight-raster:before { content: "\f10d"; }
80
+ .geoblacklight-stanford:before { content: "\f102"; }
81
+ .geoblacklight-tufts:before { content: "\f105"; }
82
+ .geoblacklight-ucla:before { content: "\f117"; }
83
+ .geoblacklight-uva:before { content: "\f11b"; }
@@ -0,0 +1,106 @@
1
+ //
2
+ // Icon Font: geoblacklight-icons
3
+ //
4
+
5
+ @font-face {
6
+ font-family: "geoblacklight-icons";
7
+ src: url("geoblacklight-icons.eot");
8
+ src: url("geoblacklight-icons.eot?#iefix") format("embedded-opentype"),
9
+ url("geoblacklight-icons.woff") format("woff"),
10
+ url("geoblacklight-icons.ttf") format("truetype"),
11
+ url("geoblacklight-icons.svg#geoblacklight-icons") format("svg");
12
+ font-weight: normal;
13
+ font-style: normal;
14
+ }
15
+
16
+ @media screen and (-webkit-min-device-pixel-ratio:0) {
17
+ @font-face {
18
+ font-family: "geoblacklight-icons";
19
+ src: url("geoblacklight-icons.svg#geoblacklight-icons") format("svg");
20
+ }
21
+ }
22
+
23
+ [data-icon]:before { content: attr(data-icon); }
24
+
25
+ [data-icon]:before,
26
+ .geoblacklight-berkeley:before,
27
+ .geoblacklight-cd-rom:before,
28
+ .geoblacklight-columbia:before,
29
+ .geoblacklight-dvd-rom:before,
30
+ .geoblacklight-harvard:before,
31
+ .geoblacklight-image:before,
32
+ .geoblacklight-line:before,
33
+ .geoblacklight-massgis:before,
34
+ .geoblacklight-minnesota:before,
35
+ .geoblacklight-mit:before,
36
+ .geoblacklight-mixed:before,
37
+ .geoblacklight-multipoint:before,
38
+ .geoblacklight-paper-map:before,
39
+ .geoblacklight-point:before,
40
+ .geoblacklight-polygon:before,
41
+ .geoblacklight-polyline:before,
42
+ .geoblacklight-princeton:before,
43
+ .geoblacklight-raster:before,
44
+ .geoblacklight-stanford:before,
45
+ .geoblacklight-tufts:before,
46
+ .geoblacklight-ucla:before,
47
+ .geoblacklight-uva:before {
48
+ display: inline-block;
49
+ font-family: "geoblacklight-icons";
50
+ font-style: normal;
51
+ font-weight: normal;
52
+ font-variant: normal;
53
+ line-height: 1;
54
+ text-decoration: inherit;
55
+ text-rendering: optimizeLegibility;
56
+ text-transform: none;
57
+ -moz-osx-font-smoothing: grayscale;
58
+ -webkit-font-smoothing: antialiased;
59
+ font-smoothing: antialiased;
60
+ }
61
+
62
+ .geoblacklight-berkeley:before { content: "\f101"; }
63
+ .geoblacklight-cd-rom:before { content: "\f112"; }
64
+ .geoblacklight-columbia:before { content: "\f115"; }
65
+ .geoblacklight-dvd-rom:before { content: "\f113"; }
66
+ .geoblacklight-harvard:before { content: "\f103"; }
67
+ .geoblacklight-image:before { content: "\f10a"; }
68
+ .geoblacklight-line:before { content: "\f108"; }
69
+ .geoblacklight-massgis:before { content: "\f106"; }
70
+ .geoblacklight-minnesota:before { content: "\f116"; }
71
+ .geoblacklight-mit:before { content: "\f104"; }
72
+ .geoblacklight-mixed:before { content: "\f11a"; }
73
+ .geoblacklight-multipoint:before { content: "\f119"; }
74
+ .geoblacklight-paper-map:before { content: "\f110"; }
75
+ .geoblacklight-point:before { content: "\f109"; }
76
+ .geoblacklight-polygon:before { content: "\f107"; }
77
+ .geoblacklight-polyline:before { content: "\f118"; }
78
+ .geoblacklight-princeton:before { content: "\f111"; }
79
+ .geoblacklight-raster:before { content: "\f10d"; }
80
+ .geoblacklight-stanford:before { content: "\f102"; }
81
+ .geoblacklight-tufts:before { content: "\f105"; }
82
+ .geoblacklight-ucla:before { content: "\f117"; }
83
+ .geoblacklight-uva:before { content: "\f11b"; }
84
+
85
+ $font-geoblacklight-icons-berkeley: "\f101";
86
+ $font-geoblacklight-icons-cd-rom: "\f112";
87
+ $font-geoblacklight-icons-columbia: "\f115";
88
+ $font-geoblacklight-icons-dvd-rom: "\f113";
89
+ $font-geoblacklight-icons-harvard: "\f103";
90
+ $font-geoblacklight-icons-image: "\f10a";
91
+ $font-geoblacklight-icons-line: "\f108";
92
+ $font-geoblacklight-icons-massgis: "\f106";
93
+ $font-geoblacklight-icons-minnesota: "\f116";
94
+ $font-geoblacklight-icons-mit: "\f104";
95
+ $font-geoblacklight-icons-mixed: "\f11a";
96
+ $font-geoblacklight-icons-multipoint: "\f119";
97
+ $font-geoblacklight-icons-paper-map: "\f110";
98
+ $font-geoblacklight-icons-point: "\f109";
99
+ $font-geoblacklight-icons-polygon: "\f107";
100
+ $font-geoblacklight-icons-polyline: "\f118";
101
+ $font-geoblacklight-icons-princeton: "\f111";
102
+ $font-geoblacklight-icons-raster: "\f10d";
103
+ $font-geoblacklight-icons-stanford: "\f102";
104
+ $font-geoblacklight-icons-tufts: "\f105";
105
+ $font-geoblacklight-icons-ucla: "\f117";
106
+ $font-geoblacklight-icons-uva: "\f11b";
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "geoblacklight/icons"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
data/bin/setup ADDED
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
data/fontcustom.yml ADDED
@@ -0,0 +1,42 @@
1
+ # --------------------------------------------------------------------------- #
2
+ # Project Info
3
+ # Defaults shown. Learn more about these options by running
4
+ # `fontcustom help` or visiting <http://fontcustom.com>.
5
+ # --------------------------------------------------------------------------- #
6
+
7
+ font_name: geoblacklight-icons
8
+ css_selector: .geoblacklight-{{glyph}}
9
+ preprocessor_path: ""
10
+ autowidth: false
11
+ no_hash: true
12
+ force: false
13
+ debug: false
14
+ quiet: false
15
+
16
+ # --------------------------------------------------------------------------- #
17
+ # Input Paths
18
+ # --------------------------------------------------------------------------- #
19
+
20
+ input:
21
+ vectors: graphics
22
+
23
+ # --------------------------------------------------------------------------- #
24
+ # Output Paths
25
+ # --------------------------------------------------------------------------- #
26
+
27
+ output:
28
+ fonts: app/assets/fonts # required
29
+ css: app/assets/stylesheets
30
+ preview: docs/styleguide
31
+
32
+ # --------------------------------------------------------------------------- #
33
+ # Templates
34
+ # Included in Font Custom: preview, css, scss, scss-rails
35
+ # Custom templates should be saved in the INPUT[:templates] directory and
36
+ # referenced by their baserame.
37
+ # --------------------------------------------------------------------------- #
38
+
39
+ templates:
40
+ - scss-rails
41
+ - scss
42
+ - preview
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'geoblacklight/icons/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'geoblacklight-icons'
8
+ spec.version = Geoblacklight::Icons::VERSION
9
+ spec.authors = ['Wayne Graham', 'Eliot Jordan', 'Jack Reed']
10
+ spec.email = ['wayne.graham@virginia.edu', 'eliotj@princeton.edu', 'pjreed@stanford.edu']
11
+
12
+ spec.summary = %q{A useful icon font set for geospatial applications.}
13
+ spec.description = %q{Icon font set to be used with GeoBlacklight or other Rails applications.}
14
+ spec.homepage = 'https://github.com/geoblacklight/geoblacklight-icons'
15
+
16
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features|graphics|docs)/}) }
17
+ spec.bindir = 'exe'
18
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
19
+ spec.require_paths = ['lib']
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.9"
22
+ spec.add_development_dependency "rake", "~> 10.0"
23
+ end
@@ -0,0 +1,7 @@
1
+ require 'geoblacklight/icons/version'
2
+ require 'geoblacklight/icons/engine'
3
+
4
+ module Geoblacklight
5
+ module Icons
6
+ end
7
+ end
@@ -0,0 +1,6 @@
1
+ module Geoblacklight::Icons
2
+ module Rails
3
+ class Engine < ::Rails::Engine
4
+ end
5
+ end
6
+ end
@@ -0,0 +1,5 @@
1
+ module Geoblacklight
2
+ module Icons
3
+ VERSION = '0.2.0'
4
+ end
5
+ end
metadata ADDED
@@ -0,0 +1,95 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: geoblacklight-icons
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.0
5
+ platform: ruby
6
+ authors:
7
+ - Wayne Graham
8
+ - Eliot Jordan
9
+ - Jack Reed
10
+ autorequire:
11
+ bindir: exe
12
+ cert_chain: []
13
+ date: 2015-04-28 00:00:00.000000000 Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: bundler
17
+ requirement: !ruby/object:Gem::Requirement
18
+ requirements:
19
+ - - "~>"
20
+ - !ruby/object:Gem::Version
21
+ version: '1.9'
22
+ type: :development
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ requirements:
26
+ - - "~>"
27
+ - !ruby/object:Gem::Version
28
+ version: '1.9'
29
+ - !ruby/object:Gem::Dependency
30
+ name: rake
31
+ requirement: !ruby/object:Gem::Requirement
32
+ requirements:
33
+ - - "~>"
34
+ - !ruby/object:Gem::Version
35
+ version: '10.0'
36
+ type: :development
37
+ prerelease: false
38
+ version_requirements: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - "~>"
41
+ - !ruby/object:Gem::Version
42
+ version: '10.0'
43
+ description: Icon font set to be used with GeoBlacklight or other Rails applications.
44
+ email:
45
+ - wayne.graham@virginia.edu
46
+ - eliotj@princeton.edu
47
+ - pjreed@stanford.edu
48
+ executables: []
49
+ extensions: []
50
+ extra_rdoc_files: []
51
+ files:
52
+ - ".fontcustom-manifest.json"
53
+ - ".gitignore"
54
+ - ".travis.yml"
55
+ - Gemfile
56
+ - README.md
57
+ - Rakefile
58
+ - app/assets/fonts/geoblacklight-icons.eot
59
+ - app/assets/fonts/geoblacklight-icons.svg
60
+ - app/assets/fonts/geoblacklight-icons.ttf
61
+ - app/assets/fonts/geoblacklight-icons.woff
62
+ - app/assets/stylesheets/_geoblacklight-icons-rails.scss
63
+ - app/assets/stylesheets/_geoblacklight-icons.scss
64
+ - bin/console
65
+ - bin/setup
66
+ - fontcustom.yml
67
+ - geoblacklight-icons.gemspec
68
+ - lib/geoblacklight-icons.rb
69
+ - lib/geoblacklight/icons/engine.rb
70
+ - lib/geoblacklight/icons/version.rb
71
+ homepage: https://github.com/geoblacklight/geoblacklight-icons
72
+ licenses: []
73
+ metadata: {}
74
+ post_install_message:
75
+ rdoc_options: []
76
+ require_paths:
77
+ - lib
78
+ required_ruby_version: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ required_rubygems_version: !ruby/object:Gem::Requirement
84
+ requirements:
85
+ - - ">="
86
+ - !ruby/object:Gem::Version
87
+ version: '0'
88
+ requirements: []
89
+ rubyforge_project:
90
+ rubygems_version: 2.4.6
91
+ signing_key:
92
+ specification_version: 4
93
+ summary: A useful icon font set for geospatial applications.
94
+ test_files: []
95
+ has_rdoc: