entypo-rails 1.0.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.
data/.gitignore ADDED
@@ -0,0 +1,20 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ .buildpath
19
+ .project
20
+ .settings
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in entypo-rails.gemspec
4
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,24 @@
1
+ Copyright (c) 2012 by Lukas Westermann
2
+
3
+ This license ONLY applies to files NOT IN the vendor/ directory.
4
+
5
+ MIT License
6
+
7
+ Permission is hereby granted, free of charge, to any person obtaining
8
+ a copy of this software and associated documentation files (the
9
+ "Software"), to deal in the Software without restriction, including
10
+ without limitation the rights to use, copy, modify, merge, publish,
11
+ distribute, sublicense, and/or sell copies of the Software, and to
12
+ permit persons to whom the Software is furnished to do so, subject to
13
+ the following conditions:
14
+
15
+ The above copyright notice and this permission notice shall be
16
+ included in all copies or substantial portions of the Software.
17
+
18
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
22
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,60 @@
1
+ # entypo-rails
2
+
3
+ An asset pipeline plugin for Rails to easily add the [Entypo](http://www.entypo.com/)
4
+ icon font faces and an initial set of icon classes.
5
+
6
+ ## Entypo
7
+
8
+ The [Entypo](http://www.entypo.com/) pictograms by Daniel Bruce http://www.entypo.com/
9
+ are provided in `vendor`. These pictograms are licensed under
10
+ [CC BY 3.0](http://creativecommons.org/licenses/by-sa/3.0/) and the font unter
11
+ [SIL Open Font License](http://scripts.sil.org/OFL).
12
+
13
+ ## Installation
14
+
15
+ Add this line to your application's Gemfile:
16
+
17
+ gem 'entypo-rails'
18
+
19
+ And then execute:
20
+
21
+ $ bundle
22
+
23
+ ## Usage
24
+
25
+ Either use the provided mappings, based on `icons-...` and the `:before`:
26
+
27
+ ```scss
28
+ // application.css[.scss]
29
+ //= require entypo
30
+ ```
31
+
32
+ ```html
33
+ <!-- some_template.html... -->
34
+ This is cool <i class="icon-thumbs-up"></i>.
35
+ ```
36
+
37
+ or just include the entypo and entypo-social font faces and do the font face
38
+ mappings yourself, see http://www.entypo.com/characters/ for possible characters:
39
+
40
+ ```scss
41
+ // application.css[.scss]
42
+ //= require entypo-fonts
43
+
44
+ // icons.css.scss (or wherever)
45
+ i.cool { font-family: 'entypo' }
46
+ i.cool:before { content: "\1F44D"; }
47
+ ```
48
+
49
+ ```html
50
+ <!-- some_template.html... -->
51
+ This is cool <i class="cool"></i>.
52
+ ```
53
+
54
+ ## Contributing
55
+
56
+ 1. Fork it
57
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
58
+ 3. Commit your changes (`git commit -am 'Added some feature'`)
59
+ 4. Push to the branch (`git push origin my-new-feature`)
60
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env rake
2
+ require "bundler/gem_tasks"
@@ -0,0 +1,21 @@
1
+ # -*- encoding: utf-8 -*-
2
+ require File.expand_path('../lib/entypo-rails/version', __FILE__)
3
+
4
+ Gem::Specification.new do |gem|
5
+ gem.authors = ["Lukas Westermann", "Marco Pluess"]
6
+ gem.email = ["lukas@at-point.ch", "marco@at-point.ch"]
7
+ gem.description = %q{Rails asset pipeline plugin and CSS mappings for the Entypo pictograms by Daniel Bruce http://www.entypo.com}
8
+ gem.summary = %q{Rails asset pipeline plugin to provide Entypo icons.}
9
+ gem.homepage = ""
10
+
11
+ gem.licenses = ['MIT', 'CC BY 3.0', 'SIL Open Font License']
12
+
13
+ gem.files = `git ls-files`.split($\)
14
+ gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
15
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
16
+ gem.name = "entypo-rails"
17
+ gem.require_paths = ["lib"]
18
+ gem.version = Entypo::VERSION
19
+
20
+ gem.add_dependency "railties", "~> 3.1"
21
+ end
@@ -0,0 +1,21 @@
1
+ @charset "UTF-8";
2
+
3
+ @font-face {
4
+ font-family: 'entypo';
5
+ src: url(<%= asset_path 'entypo.eot' %>);
6
+ src: url(<%= asset_path 'entypo.eot' %>?#iefix) format('embedded-opentype'),
7
+ url(<%= asset_path 'entypo.woff' %>) format('woff'),
8
+ url(<%= asset_path 'entypo.ttf' %>) format('truetype'),
9
+ url(<%= asset_path 'entypo.svg' %>#entypo) format('svg');
10
+ font-weight: normal; font-style: normal;
11
+ }
12
+
13
+ @font-face {
14
+ font-family: 'entypo-social';
15
+ src: url(<%= asset_path 'entypo-social.eot' %>);
16
+ src: url(<%= asset_path 'entypo-social.eot' %>?#iefix) format('embedded-opentype'),
17
+ url(<%= asset_path 'entypo-social.woff' %>) format('woff'),
18
+ url(<%= asset_path 'entypo-social.ttf' %>) format('truetype'),
19
+ url(<%= asset_path 'entypo-social.svg' %>#entypo) format('svg');
20
+ font-weight: normal; font-style: normal;
21
+ }
@@ -0,0 +1,303 @@
1
+ @import "entypo-fonts";
2
+ @charset "UTF-8";
3
+
4
+ [class^="icon-"], [class*=" icon-"] {
5
+ font-family: entypo;
6
+ font-style: normal;
7
+ display: inline-block;
8
+ width: 1.1em;
9
+ margin-right: .1em;
10
+ text-align: center;
11
+ }
12
+
13
+ [class^="icon-social-"], [class*=" icon-social-"] {
14
+ font-family: entypo-social;
15
+ }
16
+
17
+ /* main icon map */
18
+ .icon-phone:before { content: "📞"; } /* U+1F4DE - &#128222; */
19
+ .icon-mobile:before { content: "📱"; } /* U+1F4F1 - &#128241; */
20
+ .icon-mouse:before { content: ""; } /* U+E789 - &#59273; */
21
+ .icon-address:before { content: ""; } /* U+E723 - &#59171; */
22
+ .icon-mail:before { content: "✉"; } /* U+2709 - &#9993; */
23
+ .icon-paper-plane:before { content: "🔿"; } /* U+1F53F - &#128319; */
24
+ .icon-pencil:before { content: "✎"; } /* U+270E - &#9998; */
25
+ .icon-feather:before { content: "✒"; } /* U+2712 - &#10002; */
26
+ .icon-attach:before { content: "📎"; } /* U+1F4CE - &#128206; */
27
+ .icon-inbox:before { content: ""; } /* U+E777 - &#59255; */
28
+ .icon-reply:before { content: ""; } /* U+E712 - &#59154; */
29
+ .icon-reply-all:before { content: ""; } /* U+E713 - &#59155; */
30
+ .icon-forward:before { content: "➦"; } /* U+27A6 - &#10150; */
31
+ .icon-user:before { content: "👤"; } /* U+1F464 - &#128100; */
32
+ .icon-users:before { content: "👥"; } /* U+1F465 - &#128101; */
33
+ .icon-add-user:before { content: ""; } /* U+E700 - &#59136; */
34
+ .icon-vcard:before { content: ""; } /* U+E722 - &#59170; */
35
+ .icon-export:before { content: ""; } /* U+E715 - &#59157; */
36
+ .icon-location:before { content: ""; } /* U+E724 - &#59172; */
37
+ .icon-map:before { content: ""; } /* U+E727 - &#59175; */
38
+ .icon-compass:before { content: ""; } /* U+E728 - &#59176; */
39
+ .icon-direction:before { content: "➢"; } /* U+27A2 - &#10146; */
40
+ .icon-hair-cross:before { content: "🎯"; } /* U+1F3AF - &#127919; */
41
+ .icon-share:before { content: ""; } /* U+E73C - &#59196; */
42
+ .icon-shareable:before { content: ""; } /* U+E73E - &#59198; */
43
+ .icon-heart:before { content: "♥"; } /* U+2665 - &amp;hearts; */
44
+ .icon-heart-empty:before { content: "♡"; } /* U+2661 - &#9825; */
45
+ .icon-star:before { content: "★"; } /* U+2605 - &#9733; */
46
+ .icon-star-empty:before { content: "☆"; } /* U+2606 - &#9734; */
47
+ .icon-thumbs-up:before { content: "👍"; } /* U+1F44D - &#128077; */
48
+ .icon-thumbs-down:before { content: "👎"; } /* U+1F44E - &#128078; */
49
+ .icon-chat:before { content: ""; } /* U+E720 - &#59168; */
50
+ .icon-comment:before { content: ""; } /* U+E718 - &#59160; */
51
+ .icon-quote:before { content: "❞"; } /* U+275E - &#10078; */
52
+ .icon-home:before { content: "⌂"; } /* U+2302 - &#8962; */
53
+ .icon-popup:before { content: ""; } /* U+E74C - &#59212; */
54
+ .icon-search:before { content: "🔍"; } /* U+1F50D - &#128269; */
55
+ .icon-flashlight:before { content: "🔦"; } /* U+1F526 - &#128294; */
56
+ .icon-print:before { content: ""; } /* U+E716 - &#59158; */
57
+ .icon-bell:before { content: "🔔"; } /* U+1F514 - &#128276; */
58
+ .icon-link:before { content: "🔗"; } /* U+1F517 - &#128279; */
59
+ .icon-flag:before { content: "⚑"; } /* U+2691 - &#9873; */
60
+ .icon-cog:before { content: "⚙"; } /* U+2699 - &#9881; */
61
+ .icon-tools:before { content: "⚒"; } /* U+2692 - &#9874; */
62
+ .icon-trophy:before { content: "🏆"; } /* U+1F3C6 - &#127942; */
63
+ .icon-tag:before { content: ""; } /* U+E70C - &#59148; */
64
+ .icon-camera:before { content: "📷"; } /* U+1F4F7 - &#128247; */
65
+ .icon-megaphone:before { content: "📣"; } /* U+1F4E3 - &#128227; */
66
+ .icon-moon:before { content: "☽"; } /* U+263D - &#9789; */
67
+ .icon-palette:before { content: "🎨"; } /* U+1F3A8 - &#127912; */
68
+ .icon-leaf:before { content: "🍂"; } /* U+1F342 - &#127810; */
69
+ .icon-note:before { content: "♪"; } /* U+266A - &#9834; */
70
+ .icon-beamed-note:before { content: "♫"; } /* U+266B - &#9835; */
71
+ .icon-new:before { content: "💥"; } /* U+1F4A5 - &#128165; */
72
+ .icon-graduation-cap:before { content: "🎓"; } /* U+1F393 - &#127891; */
73
+ .icon-book:before { content: "📕"; } /* U+1F4D5 - &#128213; */
74
+ .icon-newspaper:before { content: "📰"; } /* U+1F4F0 - &#128240; */
75
+ .icon-bag:before { content: "👜"; } /* U+1F45C - &#128092; */
76
+ .icon-airplane:before { content: "✈"; } /* U+2708 - &#9992; */
77
+ .icon-lifebuoy:before { content: ""; } /* U+E788 - &#59272; */
78
+ .icon-eye:before { content: ""; } /* U+E70A - &#59146; */
79
+ .icon-clock:before { content: " 🕔 "; } /* U+1F554 - &#128340; */
80
+ .icon-mic:before { content: "🎤"; } /* U+1F3A4 - &#127908; */
81
+ .icon-calendar:before { content: "📅"; } /* U+1F4C5 - &#128197; */
82
+ .icon-flash:before { content: "⚡"; } /* U+26A1 - &#9889; */
83
+ .icon-thunder-cloud:before { content: "⛈"; } /* U+26C8 - &#9928; */
84
+ .icon-droplet:before { content: "💧"; } /* U+1F4A7 - &#128167; */
85
+ .icon-cd:before { content: "💿"; } /* U+1F4BF - &#128191; */
86
+ .icon-briefcase:before { content: "💼"; } /* U+1F4BC - &#128188; */
87
+ .icon-air:before { content: "💨"; } /* U+1F4A8 - &#128168; */
88
+ .icon-hourglass:before { content: "⏳"; } /* U+23F3 - &#9203; */
89
+ .icon-gauge:before { content: "🛇"; } /* U+1F6C7 - &#128711; */
90
+ .icon-language:before { content: "🎔"; } /* U+1F394 - &#127892; */
91
+ .icon-network:before { content: ""; } /* U+E776 - &#59254; */
92
+ .icon-key:before { content: "🔑"; } /* U+1F511 - &#128273; */
93
+ .icon-battery:before { content: "🔋"; } /* U+1F50B - &#128267; */
94
+ .icon-bucket:before { content: "📾"; } /* U+1F4FE - &#128254; */
95
+ .icon-magnet:before { content: ""; } /* U+E7A1 - &#59297; */
96
+ .icon-drive:before { content: "📽"; } /* U+1F4FD - &#128253; */
97
+ .icon-cup:before { content: "☕"; } /* U+2615 - &#9749; */
98
+ .icon-rocket:before { content: "🚀"; } /* U+1F680 - &#128640; */
99
+ .icon-brush:before { content: ""; } /* U+E79A - &#59290; */
100
+ .icon-suitcase:before { content: "🛆"; } /* U+1F6C6 - &#128710; */
101
+ .icon-traffic-cone:before { content: "🛈"; } /* U+1F6C8 - &#128712; */
102
+ .icon-globe:before { content: "🌎"; } /* U+1F30E - &#127758; */
103
+ .icon-keyboard:before { content: "⌨"; } /* U+2328 - &#9000; */
104
+ .icon-browser:before { content: ""; } /* U+E74E - &#59214; */
105
+ .icon-publish:before { content: ""; } /* U+E74D - &#59213; */
106
+ .icon-progress-3:before { content: ""; } /* U+E76B - &#59243; */
107
+ .icon-progress-2:before { content: ""; } /* U+E76A - &#59242; */
108
+ .icon-progress-1:before { content: ""; } /* U+E769 - &#59241; */
109
+ .icon-progress-0:before { content: ""; } /* U+E768 - &#59240; */
110
+ .icon-light-down:before { content: "🔅"; } /* U+1F505 - &#128261; */
111
+ .icon-light-up:before { content: "🔆"; } /* U+1F506 - &#128262; */
112
+ .icon-adjust:before { content: "◑"; } /* U+25D1 - &#9681; */
113
+ .icon-code:before { content: ""; } /* U+E714 - &#59156; */
114
+ .icon-monitor:before { content: "💻"; } /* U+1F4BB - &#128187; */
115
+ .icon-infinity:before { content: "∞"; } /* U+221E - &amp;infin; */
116
+ .icon-light-bulb:before { content: "💡"; } /* U+1F4A1 - &#128161; */
117
+ .icon-credit-card:before { content: "💳"; } /* U+1F4B3 - &#128179; */
118
+ .icon-database:before { content: "📸"; } /* U+1F4F8 - &#128248; */
119
+ .icon-voicemail:before { content: "✇"; } /* U+2707 - &#9991; */
120
+ .icon-clipboard:before { content: "📋"; } /* U+1F4CB - &#128203; */
121
+ .icon-cart:before { content: ""; } /* U+E73D - &#59197; */
122
+ .icon-box:before { content: "📦"; } /* U+1F4E6 - &#128230; */
123
+ .icon-ticket:before { content: "🎫"; } /* U+1F3AB - &#127915; */
124
+ .icon-rss:before { content: ""; } /* U+E73A - &#59194; */
125
+ .icon-signal:before { content: "📶"; } /* U+1F4F6 - &#128246; */
126
+ .icon-thermometer:before { content: "📿"; } /* U+1F4FF - &#128255; */
127
+ .icon-water:before { content: "💦"; } /* U+1F4A6 - &#128166; */
128
+ .icon-sweden:before { content: ""; } /* U+F601 - &#62977; */
129
+ .icon-line-graph:before { content: "📈"; } /* U+1F4C8 - &#128200; */
130
+ .icon-pie-chart:before { content: "◴"; } /* U+25F4 - &#9716; */
131
+ .icon-bar-graph:before { content: "📊"; } /* U+1F4CA - &#128202; */
132
+ .icon-area-graph:before { content: "🔾"; } /* U+1F53E - &#128318; */
133
+ .icon-lock:before { content: "🔒"; } /* U+1F512 - &#128274; */
134
+ .icon-lock-open:before { content: "🔓"; } /* U+1F513 - &#128275; */
135
+ .icon-logout:before { content: ""; } /* U+E741 - &#59201; */
136
+ .icon-login:before { content: ""; } /* U+E740 - &#59200; */
137
+ .icon-check:before { content: "✓"; } /* U+2713 - &#10003; */
138
+ .icon-cross:before { content: "❌"; } /* U+274C - &#10060; */
139
+ .icon-squared-minus:before { content: "⊟"; } /* U+229F - &#8863; */
140
+ .icon-squared-plus:before { content: "⊞"; } /* U+229E - &#8862; */
141
+ .icon-squared-cross:before { content: "❎"; } /* U+274E - &#10062; */
142
+ .icon-circled-minus:before { content: "⊖"; } /* U+2296 - &#8854; */
143
+ .icon-circled-plus:before { content: "⊕"; } /* U+2295 - &amp;oplus; */
144
+ .icon-circled-cross:before { content: "✖"; } /* U+2716 - &#10006; */
145
+ .icon-minus:before { content: "➖"; } /* U+2796 - &#10134; */
146
+ .icon-plus:before { content: "➕"; } /* U+2795 - &#10133; */
147
+ .icon-erase:before { content: "⌫"; } /* U+232B - &#9003; */
148
+ .icon-block:before { content: "🚫"; } /* U+1F6AB - &#128683; */
149
+ .icon-info:before { content: "ℹ"; } /* U+2139 - &#8505; */
150
+ .icon-circled-info:before { content: ""; } /* U+E705 - &#59141; */
151
+ .icon-help:before { content: "❓"; } /* U+2753 - &#10067; */
152
+ .icon-circled-help:before { content: ""; } /* U+E704 - &#59140; */
153
+ .icon-warning:before { content: "⚠"; } /* U+26A0 - &#9888; */
154
+ .icon-cycle:before { content: "🔄"; } /* U+1F504 - &#128260; */
155
+ .icon-cw:before { content: "⟳"; } /* U+27F3 - &#10227; */
156
+ .icon-ccw:before { content: "⟲"; } /* U+27F2 - &#10226; */
157
+ .icon-shuffle:before { content: "🔀"; } /* U+1F500 - &#128256; */
158
+ .icon-back:before { content: "🔙"; } /* U+1F519 - &#128281; */
159
+ .icon-level-down:before { content: "↳"; } /* U+21B3 - &#8627; */
160
+ .icon-retweet:before { content: ""; } /* U+E717 - &#59159; */
161
+ .icon-loop:before { content: "🔁"; } /* U+1F501 - &#128257; */
162
+ .icon-back-in-time:before { content: ""; } /* U+E771 - &#59249; */
163
+ .icon-level-up:before { content: "↰"; } /* U+21B0 - &#8624; */
164
+ .icon-switch:before { content: "⇆"; } /* U+21C6 - &#8646; */
165
+ .icon-numbered-list:before { content: ""; } /* U+E005 - &#57349; */
166
+ .icon-add-to-list:before { content: ""; } /* U+E003 - &#57347; */
167
+ .icon-layout:before { content: "⚏"; } /* U+268F - &#9871; */
168
+ .icon-list:before { content: "☰"; } /* U+2630 - &#9776; */
169
+ .icon-text-doc:before { content: "📄"; } /* U+1F4C4 - &#128196; */
170
+ .icon-text-doc-inverted:before { content: ""; } /* U+E731 - &#59185; */
171
+ .icon-doc:before { content: ""; } /* U+E730 - &#59184; */
172
+ .icon-docs:before { content: ""; } /* U+E736 - &#59190; */
173
+ .icon-landscape-doc:before { content: ""; } /* U+E737 - &#59191; */
174
+ .icon-picture:before { content: "🌄"; } /* U+1F304 - &#127748; */
175
+ .icon-video:before { content: "🎬"; } /* U+1F3AC - &#127916; */
176
+ .icon-music:before { content: "🎵"; } /* U+1F3B5 - &#127925; */
177
+ .icon-folder:before { content: "📁"; } /* U+1F4C1 - &#128193; */
178
+ .icon-archive:before { content: "  "; } /* U+E800 - &#59392; */
179
+ .icon-trash:before { content: ""; } /* U+E729 - &#59177; */
180
+ .icon-upload:before { content: "📤"; } /* U+1F4E4 - &#128228; */
181
+ .icon-download:before { content: "📥"; } /* U+1F4E5 - &#128229; */
182
+ .icon-save:before { content: "💾"; } /* U+1F4BE - &#128190; */
183
+ .icon-install:before { content: ""; } /* U+E778 - &#59256; */
184
+ .icon-cloud:before { content: "☁"; } /* U+2601 - &#9729; */
185
+ .icon-upload-cloud:before { content: ""; } /* U+E711 - &#59153; */
186
+ .icon-bookmark:before { content: "🔖"; } /* U+1F516 - &#128278; */
187
+ .icon-bookmarks:before { content: "📑"; } /* U+1F4D1 - &#128209; */
188
+ .icon-open-book:before { content: "📖"; } /* U+1F4D6 - &#128214; */
189
+ .icon-play:before { content: "▶"; } /* U+25B6 - &#9654; */
190
+ .icon-paus:before { content: "‖"; } /* U+2016 - &#8214; */
191
+ .icon-record:before { content: "●"; } /* U+25CF - &#9679; */
192
+ .icon-stop:before { content: "■"; } /* U+25A0 - &#9632; */
193
+ .icon-ff:before { content: "⏩"; } /* U+23E9 - &#9193; */
194
+ .icon-fb:before { content: "⏪"; } /* U+23EA - &#9194; */
195
+ .icon-to-start:before { content: "⏮"; } /* U+23EE - &#9198; */
196
+ .icon-to-end:before { content: "⏭"; } /* U+23ED - &#9197; */
197
+ .icon-resize-full:before { content: ""; } /* U+E744 - &#59204; */
198
+ .icon-resize-small:before { content: ""; } /* U+E746 - &#59206; */
199
+ .icon-volume:before { content: "⏷"; } /* U+23F7 - &#9207; */
200
+ .icon-sound:before { content: "🔊"; } /* U+1F50A - &#128266; */
201
+ .icon-mute:before { content: "🔇"; } /* U+1F507 - &#128263; */
202
+ .icon-flow-cascade:before { content: "🕨"; } /* U+1F568 - &#128360; */
203
+ .icon-flow-branch:before { content: "🕩"; } /* U+1F569 - &#128361; */
204
+ .icon-flow-tree:before { content: "🕪"; } /* U+1F56A - &#128362; */
205
+ .icon-flow-line:before { content: "🕫"; } /* U+1F56B - &#128363; */
206
+ .icon-flow-parallel:before { content: "🕬"; } /* U+1F56C - &#128364; */
207
+ .icon-left-bold:before { content: ""; } /* U+E4AD - &#58541; */
208
+ .icon-down-bold:before { content: ""; } /* U+E4B0 - &#58544; */
209
+ .icon-up-bold:before { content: ""; } /* U+E4AF - &#58543; */
210
+ .icon-right-bold:before { content: ""; } /* U+E4AE - &#58542; */
211
+ .icon-left:before { content: "⬅"; } /* U+2B05 - &#11013; */
212
+ .icon-down:before { content: "⬇"; } /* U+2B07 - &#11015; */
213
+ .icon-up:before { content: "⬆"; } /* U+2B06 - &#11014; */
214
+ .icon-right:before { content: "➡"; } /* U+27A1 - &#10145; */
215
+ .icon-circled-left:before { content: ""; } /* U+E759 - &#59225; */
216
+ .icon-circled-down:before { content: ""; } /* U+E758 - &#59224; */
217
+ .icon-circled-up:before { content: ""; } /* U+E75B - &#59227; */
218
+ .icon-circled-right:before { content: ""; } /* U+E75A - &#59226; */
219
+ .icon-triangle-left:before { content: "◂"; } /* U+25C2 - &#9666; */
220
+ .icon-triangle-down:before { content: "▾"; } /* U+25BE - &#9662; */
221
+ .icon-triangle-up:before { content: "▴"; } /* U+25B4 - &#9652; */
222
+ .icon-triangle-right:before { content: "▸"; } /* U+25B8 - &#9656; */
223
+ .icon-chevron-left:before { content: ""; } /* U+E75D - &#59229; */
224
+ .icon-chevron-down:before { content: ""; } /* U+E75C - &#59228; */
225
+ .icon-chevron-up:before { content: ""; } /* U+E75F - &#59231; */
226
+ .icon-chevron-right:before { content: ""; } /* U+E75E - &#59230; */
227
+ .icon-chevron-small-left:before { content: ""; } /* U+E761 - &#59233; */
228
+ .icon-chevron-small-down:before { content: ""; } /* U+E760 - &#59232; */
229
+ .icon-chevron-small-up:before { content: ""; } /* U+E763 - &#59235; */
230
+ .icon-chevron-small-right:before { content: ""; } /* U+E762 - &#59234; */
231
+ .icon-chevron-thin-left:before { content: ""; } /* U+E765 - &#59237; */
232
+ .icon-chevron-thin-down:before { content: ""; } /* U+E764 - &#59236; */
233
+ .icon-chevron-thin-up:before { content: ""; } /* U+E767 - &#59239; */
234
+ .icon-chevron-thin-right:before { content: ""; } /* U+E766 - &#59238; */
235
+ .icon-left-thin:before { content: "←"; } /* U+2190 - &amp;larr; */
236
+ .icon-down-thin:before { content: "↓"; } /* U+2193 - &amp;darr; */
237
+ .icon-up-thin:before { content: "↑"; } /* U+2191 - &amp;uarr; */
238
+ .icon-right-thin:before { content: "→"; } /* U+2192 - &amp;rarr; */
239
+ .icon-arrow-combo:before { content: ""; } /* U+E74F - &#59215; */
240
+ .icon-three-dots:before { content: "⏶"; } /* U+23F6 - &#9206; */
241
+ .icon-two-dots:before { content: "⏵"; } /* U+23F5 - &#9205; */
242
+ .icon-dot:before { content: "⏴"; } /* U+23F4 - &#9204; */
243
+ .icon-cc:before { content: "🕅"; } /* U+1F545 - &#128325; */
244
+ .icon-cc-by:before { content: "🕆"; } /* U+1F546 - &#128326; */
245
+ .icon-cc-nc:before { content: "🕇"; } /* U+1F547 - &#128327; */
246
+ .icon-cc-nc-eu:before { content: "🕈"; } /* U+1F548 - &#128328; */
247
+ .icon-cc-nc-jp:before { content: "🕉"; } /* U+1F549 - &#128329; */
248
+ .icon-cc-sa:before { content: "🕊"; } /* U+1F54A - &#128330; */
249
+ .icon-cc-nd:before { content: "🕋"; } /* U+1F54B - &#128331; */
250
+ .icon-cc-pd:before { content: "🕌"; } /* U+1F54C - &#128332; */
251
+ .icon-cc-zero:before { content: "🕍"; } /* U+1F54D - &#128333; */
252
+ .icon-cc-share:before { content: "🕎"; } /* U+1F54E - &#128334; */
253
+ .icon-cc-remix:before { content: "🕏"; } /* U+1F54F - &#128335; */
254
+ .icon-db-logo:before { content: "🗹"; } /* U+1F5F9 - &#128505; */
255
+ .icon-db-shape:before { content: "🗺"; } /* U+1F5FA - &#128506; */
256
+
257
+ /* social extention map */
258
+ .icon-social-github:before { content: ""; } /* U+F300 - &#62208; */
259
+ .icon-social-c-github:before { content: ""; } /* U+F301 - &#62209; */
260
+ .icon-social-flickr:before { content: ""; } /* U+F303 - &#62211; */
261
+ .icon-social-c-flickr:before { content: ""; } /* U+F304 - &#62212; */
262
+ .icon-social-vimeo:before { content: ""; } /* U+F306 - &#62214; */
263
+ .icon-social-c-vimeo:before { content: ""; } /* U+F307 - &#62215; */
264
+ .icon-social-twitter:before { content: ""; } /* U+F309 - &#62217; */
265
+ .icon-social-c-twitter:before { content: ""; } /* U+F30A - &#62218; */
266
+ .icon-social-facebook:before { content: ""; } /* U+F30C - &#62220; */
267
+ .icon-social-c-facebook:before { content: ""; } /* U+F30D - &#62221; */
268
+ .icon-social-s-facebook:before { content: ""; } /* U+F30E - &#62222; */
269
+ .icon-social-google+:before { content: ""; } /* U+F30F - &#62223; */
270
+ .icon-social-c-google+:before { content: ""; } /* U+F310 - &#62224; */
271
+ .icon-social-pinterest:before { content: ""; } /* U+F312 - &#62226; */
272
+ .icon-social-c-pinterest:before { content: ""; } /* U+F313 - &#62227; */
273
+ .icon-social-tumblr:before { content: ""; } /* U+F315 - &#62229; */
274
+ .icon-social-c-tumblr:before { content: ""; } /* U+F316 - &#62230; */
275
+ .icon-social-linkedin:before { content: ""; } /* U+F318 - &#62232; */
276
+ .icon-social-c-linkedin:before { content: ""; } /* U+F319 - &#62233; */
277
+ .icon-social-dribbble:before { content: ""; } /* U+F31B - &#62235; */
278
+ .icon-social-c-dribbble:before { content: ""; } /* U+F31C - &#62236; */
279
+ .icon-social-stumbleupon:before { content: ""; } /* U+F31E - &#62238; */
280
+ .icon-social-c-stumbleupon:before { content: ""; } /* U+F31F - &#62239; */
281
+ .icon-social-lastfm:before { content: ""; } /* U+F321 - &#62241; */
282
+ .icon-social-c-lastfm:before { content: ""; } /* U+F322 - &#62242; */
283
+ .icon-social-rdio:before { content: ""; } /* U+F324 - &#62244; */
284
+ .icon-social-c-rdio:before { content: ""; } /* U+F325 - &#62245; */
285
+ .icon-social-spotify:before { content: ""; } /* U+F327 - &#62247; */
286
+ .icon-social-c-spotify:before { content: ""; } /* U+F328 - &#62248; */
287
+ .icon-social-qq:before { content: ""; } /* U+F32A - &#62250; */
288
+ .icon-social-instagram:before { content: ""; } /* U+F32D - &#62253; */
289
+ .icon-social-dropbox:before { content: ""; } /* U+F330 - &#62256; */
290
+ .icon-social-evernote:before { content: ""; } /* U+F333 - &#62259; */
291
+ .icon-social-flattr:before { content: ""; } /* U+F336 - &#62262; */
292
+ .icon-social-skype:before { content: ""; } /* U+F339 - &#62265; */
293
+ .icon-social-c-skype:before { content: ""; } /* U+F33A - &#62266; */
294
+ .icon-social-renren:before { content: ""; } /* U+F33C - &#62268; */
295
+ .icon-social-sina-weibo:before { content: ""; } /* U+F33F - &#62271; */
296
+ .icon-social-paypal:before { content: ""; } /* U+F342 - &#62274; */
297
+ .icon-social-picasa:before { content: ""; } /* U+F345 - &#62277; */
298
+ .icon-social-soundcloud:before { content: ""; } /* U+F348 - &#62280; */
299
+ .icon-social-mixi:before { content: ""; } /* U+F34B - &#62283; */
300
+ .icon-social-behance:before { content: ""; } /* U+F34E - &#62286; */
301
+ .icon-social-google-circles:before { content: ""; } /* U+F351 - &#62289; */
302
+ .icon-social-vk:before { content: ""; } /* U+F354 - &#62292; */
303
+ .icon-social-smashing:before { content: ""; } /* U+F357 - &#62295; */
@@ -0,0 +1,9 @@
1
+ # The entypo-rails plugin provides access to the Entypo pictograms
2
+ # by Daniel Bruce http://www.entypo.com in the Rails asset pipeline.
3
+ module Entypo
4
+
5
+ # Dummy engine so that lib/assets/stylesheets and vendor/assets/fonts
6
+ # are picked up by Rails asset pipeline.
7
+ class Engine < ::Rails::Engine
8
+ end
9
+ end
@@ -0,0 +1,8 @@
1
+ module Entypo
2
+
3
+ # Gem version
4
+ VERSION = "1.0.1"
5
+
6
+ # Entypo font version
7
+ FONT_VERSION = "2.0-20121031"
8
+ end
data/vendor/.DS_Store ADDED
Binary file
@@ -0,0 +1,13 @@
1
+ <?xml version="1.0" standalone="no"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd" > <svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%">
2
+ <defs >
3
+ <font id="entypo-social" horiz-adv-x="555" ><font-face
4
+ font-family="Entypo Social"
5
+ units-per-em="1000"
6
+ panose-1="0 0 0 0 0 0 0 0 0 0"
7
+ ascent="750"
8
+ descent="-250"
9
+ alphabetic="0" />
10
+ <missing-glyph horiz-adv-x="500" />
11
+ </font>
12
+ </defs>
13
+ </svg>
Binary file
@@ -0,0 +1,13 @@
1
+ <?xml version="1.0" standalone="no"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd" > <svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%">
2
+ <defs >
3
+ <font id="entypo" horiz-adv-x="508" ><font-face
4
+ font-family="Entypo"
5
+ units-per-em="1000"
6
+ panose-1="0 0 0 0 0 0 0 0 0 0"
7
+ ascent="750"
8
+ descent="-250"
9
+ alphabetic="0" />
10
+ <missing-glyph horiz-adv-x="500" />
11
+ </font>
12
+ </defs>
13
+ </svg>
Binary file
Binary file
metadata ADDED
@@ -0,0 +1,102 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: entypo-rails
3
+ version: !ruby/object:Gem::Version
4
+ hash: 21
5
+ prerelease:
6
+ segments:
7
+ - 1
8
+ - 0
9
+ - 1
10
+ version: 1.0.1
11
+ platform: ruby
12
+ authors:
13
+ - Lukas Westermann
14
+ - Marco Pluess
15
+ autorequire:
16
+ bindir: bin
17
+ cert_chain: []
18
+
19
+ date: 2012-11-24 00:00:00 Z
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
22
+ requirement: &id001 !ruby/object:Gem::Requirement
23
+ none: false
24
+ requirements:
25
+ - - ~>
26
+ - !ruby/object:Gem::Version
27
+ hash: 5
28
+ segments:
29
+ - 3
30
+ - 1
31
+ version: "3.1"
32
+ prerelease: false
33
+ type: :runtime
34
+ name: railties
35
+ version_requirements: *id001
36
+ description: Rails asset pipeline plugin and CSS mappings for the Entypo pictograms by Daniel Bruce http://www.entypo.com
37
+ email:
38
+ - lukas@at-point.ch
39
+ - marco@at-point.ch
40
+ executables: []
41
+
42
+ extensions: []
43
+
44
+ extra_rdoc_files: []
45
+
46
+ files:
47
+ - .gitignore
48
+ - Gemfile
49
+ - LICENSE
50
+ - README.md
51
+ - Rakefile
52
+ - entypo-rails.gemspec
53
+ - lib/assets/stylesheets/entypo-fonts.css.erb
54
+ - lib/assets/stylesheets/entypo.css.scss
55
+ - lib/entypo-rails.rb
56
+ - lib/entypo-rails/version.rb
57
+ - vendor/.DS_Store
58
+ - vendor/assets/fonts/entypo-social.eot
59
+ - vendor/assets/fonts/entypo-social.svg
60
+ - vendor/assets/fonts/entypo-social.ttf
61
+ - vendor/assets/fonts/entypo-social.woff
62
+ - vendor/assets/fonts/entypo.eot
63
+ - vendor/assets/fonts/entypo.svg
64
+ - vendor/assets/fonts/entypo.ttf
65
+ - vendor/assets/fonts/entypo.woff
66
+ homepage: ""
67
+ licenses:
68
+ - MIT
69
+ - CC BY 3.0
70
+ - SIL Open Font License
71
+ post_install_message:
72
+ rdoc_options: []
73
+
74
+ require_paths:
75
+ - lib
76
+ required_ruby_version: !ruby/object:Gem::Requirement
77
+ none: false
78
+ requirements:
79
+ - - ">="
80
+ - !ruby/object:Gem::Version
81
+ hash: 3
82
+ segments:
83
+ - 0
84
+ version: "0"
85
+ required_rubygems_version: !ruby/object:Gem::Requirement
86
+ none: false
87
+ requirements:
88
+ - - ">="
89
+ - !ruby/object:Gem::Version
90
+ hash: 3
91
+ segments:
92
+ - 0
93
+ version: "0"
94
+ requirements: []
95
+
96
+ rubyforge_project:
97
+ rubygems_version: 1.8.24
98
+ signing_key:
99
+ specification_version: 3
100
+ summary: Rails asset pipeline plugin to provide Entypo icons.
101
+ test_files: []
102
+