font_awesome-sass-rails 2.0.3 → 2.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/README.md CHANGED
@@ -24,7 +24,14 @@ On IE7
24
24
  ```
25
25
 
26
26
  The assets contains the `font-awesome` stylesheet in: LESS, SASS, SCSS and CSS.
27
- The fonts are available in `assets/fonts`.
27
+ The fonts are available in `assets/fonts`. To load the font in a particular format, specify as one of the following:
28
+
29
+ ```css
30
+ *= require font-awesome-sass
31
+ *= require font-awesome-less
32
+ *= require font-awesome-scss
33
+ ```
34
+
28
35
 
29
36
  ## View helpers
30
37
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 2.0.3
1
+ 2.1.0
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "font_awesome-sass-rails"
8
- s.version = "2.0.3"
8
+ s.version = "2.1.0"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Kristian Mandrup"]
12
- s.date = "2012-09-07"
12
+ s.date = "2012-10-11"
13
13
  s.description = "Use Font Awesome in your Rails app :)"
14
14
  s.email = "kmandrup@gmail.com"
15
15
  s.extra_rdoc_files = [
@@ -39,10 +39,11 @@ Gem::Specification.new do |s|
39
39
  "vendor/assets/fonts/fontawesome-webfont.ttf",
40
40
  "vendor/assets/fonts/fontawesome-webfont.woff",
41
41
  "vendor/assets/stylesheets/font-awesome-ie7.css",
42
+ "vendor/assets/stylesheets/font-awesome-less.less.erb",
43
+ "vendor/assets/stylesheets/font-awesome-sass.sass",
44
+ "vendor/assets/stylesheets/font-awesome-scss.scss",
42
45
  "vendor/assets/stylesheets/font-awesome.css.erb",
43
- "vendor/assets/stylesheets/font-awesome.less.erb",
44
- "vendor/assets/stylesheets/font-awesome.sass",
45
- "vendor/assets/stylesheets/font-awesome.scss"
46
+ "vendor/assets/stylesheets/font-awesome.sass"
46
47
  ]
47
48
  s.homepage = "http://github.com/kristianmandrup/font_awesome-sass-rails"
48
49
  s.licenses = ["MIT"]
@@ -0,0 +1,846 @@
1
+ /* Font Awesome
2
+ * the iconic font designed for use with Twitter Bootstrap
3
+ * -------------------------------------------------------
4
+ * The full suite of pictographic icons, examples, and documentation
5
+ * can be found at: http://fortawesome.github.com/Font-Awesome/
6
+ *
7
+ * License
8
+ * -------------------------------------------------------
9
+ * The Font Awesome webfont, CSS, and LESS files are licensed under CC BY 3.0:
10
+ * http://creativecommons.org/licenses/by/3.0/ A mention of
11
+ * 'Font Awesome - http://fortawesome.github.com/Font-Awesome' in human-readable
12
+ * source code is considered acceptable attribution (most common on the web).
13
+ * If human readable source code is not available to the end user, a mention in
14
+ * an 'About' or 'Credits' screen is considered acceptable (most common in desktop
15
+ * or mobile software).
16
+ *
17
+ * Contact
18
+ * -------------------------------------------------------
19
+ * Email: dave@davegandy.com
20
+ * Twitter: http://twitter.com/fortaweso_me
21
+ * Work: Lead Product Designer @ http://kyruus.com
22
+ *
23
+ * Using asset_path (sass)
24
+
25
+ @import compass/css3/font-face
26
+
27
+ $font_path: asset-path("fontawesome-webfont", font) !default
28
+
29
+ +font-face("FontAwesome", font-files("#{$font_path}.woff", woff, "#{$font_path}.ttf", truetype, "#{$font_path}.otf", opentype, "#{$font_path}.svgz#FontAwesomeRegular", svg, "#{$font_path}.svg#FontAwesomeRegular", svg), "#{$font_path}.eot", normal, normal)
30
+
31
+ /* Font Awesome styles
32
+ * -------------------------------------------------------
33
+
34
+ [class^="icon-"]:before,
35
+ [class*=" icon-"]:before
36
+ font-family: FontAwesome
37
+ font-weight: normal
38
+ font-style: normal
39
+ display: inline-block
40
+ text-decoration: inherit
41
+
42
+ a [class^="icon-"],
43
+ a [class*=" icon-"]
44
+ display: inline-block
45
+ text-decoration: inherit
46
+
47
+ /* makes the font 33% larger relative to the icon container
48
+ .icon-large:before
49
+ vertical-align: middle
50
+ font-size: 4 / 3em
51
+
52
+ .btn, .nav-tabs
53
+ [class^="icon-"],
54
+ [class*=" icon-"]
55
+ /* keeps button heights with and without icons the same
56
+ line-height: .9em
57
+
58
+ li
59
+ [class^="icon-"],
60
+ [class*=" icon-"]
61
+ display: inline-block
62
+ width: 1.25em
63
+ text-align: center
64
+ .icon-large:before,
65
+ .icon-large:before
66
+ /* 1.5 increased font size for icon-large * 1.25 width
67
+ width: 1.5 * 1.25em
68
+
69
+ ul.icons
70
+ list-style-type: none
71
+ margin-left: 2em
72
+ text-indent: -0.8em
73
+ li
74
+ [class^="icon-"],
75
+ [class*=" icon-"]
76
+ width: .8em
77
+ .icon-large:before,
78
+ .icon-large:before
79
+ /* 1.5 increased font size for icon-large * 1.25 width
80
+ vertical-align: initial
81
+ // width: 1.5*1.25em;
82
+
83
+ /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
84
+ * readers do not read off random characters that represent icons
85
+ .icon-glass:before
86
+ content: "\f000"
87
+
88
+ .icon-music:before
89
+ content: "\f001"
90
+
91
+ .icon-search:before
92
+ content: "\f002"
93
+
94
+ .icon-envelope:before
95
+ content: "\f003"
96
+
97
+ .icon-heart:before
98
+ content: "\f004"
99
+
100
+ .icon-star:before
101
+ content: "\f005"
102
+
103
+ .icon-star-empty:before
104
+ content: "\f006"
105
+
106
+ .icon-user:before
107
+ content: "\f007"
108
+
109
+ .icon-film:before
110
+ content: "\f008"
111
+
112
+ .icon-th-large:before
113
+ content: "\f009"
114
+
115
+ .icon-th:before
116
+ content: "\f00a"
117
+
118
+ .icon-th-list:before
119
+ content: "\f00b"
120
+
121
+ .icon-ok:before
122
+ content: "\f00c"
123
+
124
+ .icon-remove:before
125
+ content: "\f00d"
126
+
127
+ .icon-zoom-in:before
128
+ content: "\f00e"
129
+
130
+ .icon-zoom-out:before
131
+ content: "\f010"
132
+
133
+ .icon-off:before
134
+ content: "\f011"
135
+
136
+ .icon-signal:before
137
+ content: "\f012"
138
+
139
+ .icon-cog:before
140
+ content: "\f013"
141
+
142
+ .icon-trash:before
143
+ content: "\f014"
144
+
145
+ .icon-home:before
146
+ content: "\f015"
147
+
148
+ .icon-file:before
149
+ content: "\f016"
150
+
151
+ .icon-time:before
152
+ content: "\f017"
153
+
154
+ .icon-road:before
155
+ content: "\f018"
156
+
157
+ .icon-download-alt:before
158
+ content: "\f019"
159
+
160
+ .icon-download:before
161
+ content: "\f01a"
162
+
163
+ .icon-upload:before
164
+ content: "\f01b"
165
+
166
+ .icon-inbox:before
167
+ content: "\f01c"
168
+
169
+ .icon-play-circle:before
170
+ content: "\f01d"
171
+
172
+ .icon-repeat:before
173
+ content: "\f01e"
174
+
175
+ /* \f020 is not a valid unicode character. all shifted one down
176
+ .icon-refresh:before
177
+ content: "\f021"
178
+
179
+ .icon-list-alt:before
180
+ content: "\f022"
181
+
182
+ .icon-lock:before
183
+ content: "\f023"
184
+
185
+ .icon-flag:before
186
+ content: "\f024"
187
+
188
+ .icon-headphones:before
189
+ content: "\f025"
190
+
191
+ .icon-volume-off:before
192
+ content: "\f026"
193
+
194
+ .icon-volume-down:before
195
+ content: "\f027"
196
+
197
+ .icon-volume-up:before
198
+ content: "\f028"
199
+
200
+ .icon-qrcode:before
201
+ content: "\f029"
202
+
203
+ .icon-barcode:before
204
+ content: "\f02a"
205
+
206
+ .icon-tag:before
207
+ content: "\f02b"
208
+
209
+ .icon-tags:before
210
+ content: "\f02c"
211
+
212
+ .icon-book:before
213
+ content: "\f02d"
214
+
215
+ .icon-bookmark:before
216
+ content: "\f02e"
217
+
218
+ .icon-print:before
219
+ content: "\f02f"
220
+
221
+ .icon-camera:before
222
+ content: "\f030"
223
+
224
+ .icon-font:before
225
+ content: "\f031"
226
+
227
+ .icon-bold:before
228
+ content: "\f032"
229
+
230
+ .icon-italic:before
231
+ content: "\f033"
232
+
233
+ .icon-text-height:before
234
+ content: "\f034"
235
+
236
+ .icon-text-width:before
237
+ content: "\f035"
238
+
239
+ .icon-align-left:before
240
+ content: "\f036"
241
+
242
+ .icon-align-center:before
243
+ content: "\f037"
244
+
245
+ .icon-align-right:before
246
+ content: "\f038"
247
+
248
+ .icon-align-justify:before
249
+ content: "\f039"
250
+
251
+ .icon-list:before
252
+ content: "\f03a"
253
+
254
+ .icon-indent-left:before
255
+ content: "\f03b"
256
+
257
+ .icon-indent-right:before
258
+ content: "\f03c"
259
+
260
+ .icon-facetime-video:before
261
+ content: "\f03d"
262
+
263
+ .icon-picture:before
264
+ content: "\f03e"
265
+
266
+ .icon-pencil:before
267
+ content: "\f040"
268
+
269
+ .icon-map-marker:before
270
+ content: "\f041"
271
+
272
+ .icon-adjust:before
273
+ content: "\f042"
274
+
275
+ .icon-tint:before
276
+ content: "\f043"
277
+
278
+ .icon-edit:before
279
+ content: "\f044"
280
+
281
+ .icon-share:before
282
+ content: "\f045"
283
+
284
+ .icon-check:before
285
+ content: "\f046"
286
+
287
+ .icon-move:before
288
+ content: "\f047"
289
+
290
+ .icon-step-backward:before
291
+ content: "\f048"
292
+
293
+ .icon-fast-backward:before
294
+ content: "\f049"
295
+
296
+ .icon-backward:before
297
+ content: "\f04a"
298
+
299
+ .icon-play:before
300
+ content: "\f04b"
301
+
302
+ .icon-pause:before
303
+ content: "\f04c"
304
+
305
+ .icon-stop:before
306
+ content: "\f04d"
307
+
308
+ .icon-forward:before
309
+ content: "\f04e"
310
+
311
+ .icon-fast-forward:before
312
+ content: "\f050"
313
+
314
+ .icon-step-forward:before
315
+ content: "\f051"
316
+
317
+ .icon-eject:before
318
+ content: "\f052"
319
+
320
+ .icon-chevron-left:before
321
+ content: "\f053"
322
+
323
+ .icon-chevron-right:before
324
+ content: "\f054"
325
+
326
+ .icon-plus-sign:before
327
+ content: "\f055"
328
+
329
+ .icon-minus-sign:before
330
+ content: "\f056"
331
+
332
+ .icon-remove-sign:before
333
+ content: "\f057"
334
+
335
+ .icon-ok-sign:before
336
+ content: "\f058"
337
+
338
+ .icon-question-sign:before
339
+ content: "\f059"
340
+
341
+ .icon-info-sign:before
342
+ content: "\f05a"
343
+
344
+ .icon-screenshot:before
345
+ content: "\f05b"
346
+
347
+ .icon-remove-circle:before
348
+ content: "\f05c"
349
+
350
+ .icon-ok-circle:before
351
+ content: "\f05d"
352
+
353
+ .icon-ban-circle:before
354
+ content: "\f05e"
355
+
356
+ .icon-arrow-left:before
357
+ content: "\f060"
358
+
359
+ .icon-arrow-right:before
360
+ content: "\f061"
361
+
362
+ .icon-arrow-up:before
363
+ content: "\f062"
364
+
365
+ .icon-arrow-down:before
366
+ content: "\f063"
367
+
368
+ .icon-share-alt:before
369
+ content: "\f064"
370
+
371
+ .icon-resize-full:before
372
+ content: "\f065"
373
+
374
+ .icon-resize-small:before
375
+ content: "\f066"
376
+
377
+ .icon-plus:before
378
+ content: "\f067"
379
+
380
+ .icon-minus:before
381
+ content: "\f068"
382
+
383
+ .icon-asterisk:before
384
+ content: "\f069"
385
+
386
+ .icon-exclamation-sign:before
387
+ content: "\f06a"
388
+
389
+ .icon-gift:before
390
+ content: "\f06b"
391
+
392
+ .icon-leaf:before
393
+ content: "\f06c"
394
+
395
+ .icon-fire:before
396
+ content: "\f06d"
397
+
398
+ .icon-eye-open:before
399
+ content: "\f06e"
400
+
401
+ .icon-eye-close:before
402
+ content: "\f070"
403
+
404
+ .icon-warning-sign:before
405
+ content: "\f071"
406
+
407
+ .icon-plane:before
408
+ content: "\f072"
409
+
410
+ .icon-calendar:before
411
+ content: "\f073"
412
+
413
+ .icon-random:before
414
+ content: "\f074"
415
+
416
+ .icon-comment:before
417
+ content: "\f075"
418
+
419
+ .icon-magnet:before
420
+ content: "\f076"
421
+
422
+ .icon-chevron-up:before
423
+ content: "\f077"
424
+
425
+ .icon-chevron-down:before
426
+ content: "\f078"
427
+
428
+ .icon-retweet:before
429
+ content: "\f079"
430
+
431
+ .icon-shopping-cart:before
432
+ content: "\f07a"
433
+
434
+ .icon-folder-close:before
435
+ content: "\f07b"
436
+
437
+ .icon-folder-open:before
438
+ content: "\f07c"
439
+
440
+ .icon-resize-vertical:before
441
+ content: "\f07d"
442
+
443
+ .icon-resize-horizontal:before
444
+ content: "\f07e"
445
+
446
+ .icon-bar-chart:before
447
+ content: "\f080"
448
+
449
+ .icon-twitter-sign:before
450
+ content: "\f081"
451
+
452
+ .icon-facebook-sign:before
453
+ content: "\f082"
454
+
455
+ .icon-camera-retro:before
456
+ content: "\f083"
457
+
458
+ .icon-key:before
459
+ content: "\f084"
460
+
461
+ .icon-cogs:before
462
+ content: "\f085"
463
+
464
+ .icon-comments:before
465
+ content: "\f086"
466
+
467
+ .icon-thumbs-up:before
468
+ content: "\f087"
469
+
470
+ .icon-thumbs-down:before
471
+ content: "\f088"
472
+
473
+ .icon-star-half:before
474
+ content: "\f089"
475
+
476
+ .icon-heart-empty:before
477
+ content: "\f08a"
478
+
479
+ .icon-signout:before
480
+ content: "\f08b"
481
+
482
+ .icon-linkedin-sign:before
483
+ content: "\f08c"
484
+
485
+ .icon-pushpin:before
486
+ content: "\f08d"
487
+
488
+ .icon-external-link:before
489
+ content: "\f08e"
490
+
491
+ .icon-signin:before
492
+ content: "\f090"
493
+
494
+ .icon-trophy:before
495
+ content: "\f091"
496
+
497
+ .icon-github-sign:before
498
+ content: "\f092"
499
+
500
+ .icon-upload-alt:before
501
+ content: "\f093"
502
+
503
+ .icon-lemon:before
504
+ content: "\f094"
505
+
506
+ .icon-phone:before
507
+ content: "\f095"
508
+
509
+ .icon-check-empty:before
510
+ content: "\f096"
511
+
512
+ .icon-bookmark-empty:before
513
+ content: "\f097"
514
+
515
+ .icon-phone-sign:before
516
+ content: "\f098"
517
+
518
+ .icon-twitter:before
519
+ content: "\f099"
520
+
521
+ .icon-facebook:before
522
+ content: "\f09a"
523
+
524
+ .icon-github:before
525
+ content: "\f09b"
526
+
527
+ .icon-unlock:before
528
+ content: "\f09c"
529
+
530
+ .icon-credit-card:before
531
+ content: "\f09d"
532
+
533
+ .icon-rss:before
534
+ content: "\f09e"
535
+
536
+ .icon-hdd:before
537
+ content: "\f0a0"
538
+
539
+ .icon-bullhorn:before
540
+ content: "\f0a1"
541
+
542
+ .icon-bell:before
543
+ content: "\f0a2"
544
+
545
+ .icon-certificate:before
546
+ content: "\f0a3"
547
+
548
+ .icon-hand-right:before
549
+ content: "\f0a4"
550
+
551
+ .icon-hand-left:before
552
+ content: "\f0a5"
553
+
554
+ .icon-hand-up:before
555
+ content: "\f0a6"
556
+
557
+ .icon-hand-down:before
558
+ content: "\f0a7"
559
+
560
+ .icon-circle-arrow-left:before
561
+ content: "\f0a8"
562
+
563
+ .icon-circle-arrow-right:before
564
+ content: "\f0a9"
565
+
566
+ .icon-circle-arrow-up:before
567
+ content: "\f0aa"
568
+
569
+ .icon-circle-arrow-down:before
570
+ content: "\f0ab"
571
+
572
+ .icon-globe:before
573
+ content: "\f0ac"
574
+
575
+ .icon-wrench:before
576
+ content: "\f0ad"
577
+
578
+ .icon-tasks:before
579
+ content: "\f0ae"
580
+
581
+ .icon-filter:before
582
+ content: "\f0b0"
583
+
584
+ .icon-briefcase:before
585
+ content: "\f0b1"
586
+
587
+ .icon-fullscreen:before
588
+ content: "\f0b2"
589
+
590
+ .icon-group:before
591
+ content: "\f0c0"
592
+
593
+ .icon-link:before
594
+ content: "\f0c1"
595
+
596
+ .icon-cloud:before
597
+ content: "\f0c2"
598
+
599
+ .icon-beaker:before
600
+ content: "\f0c3"
601
+
602
+ .icon-cut:before
603
+ content: "\f0c4"
604
+
605
+ .icon-copy:before
606
+ content: "\f0c5"
607
+
608
+ .icon-paper-clip:before
609
+ content: "\f0c6"
610
+
611
+ .icon-save:before
612
+ content: "\f0c7"
613
+
614
+ .icon-sign-blank:before
615
+ content: "\f0c8"
616
+
617
+ .icon-reorder:before
618
+ content: "\f0c9"
619
+
620
+ .icon-list-ul:before
621
+ content: "\f0ca"
622
+
623
+ .icon-list-ol:before
624
+ content: "\f0cb"
625
+
626
+ .icon-strikethrough:before
627
+ content: "\f0cc"
628
+
629
+ .icon-underline:before
630
+ content: "\f0cd"
631
+
632
+ .icon-table:before
633
+ content: "\f0ce"
634
+
635
+ .icon-magic:before
636
+ content: "\f0d0"
637
+
638
+ .icon-truck:before
639
+ content: "\f0d1"
640
+
641
+ .icon-pinterest:before
642
+ content: "\f0d2"
643
+
644
+ .icon-pinterest-sign:before
645
+ content: "\f0d3"
646
+
647
+ .icon-google-plus-sign:before
648
+ content: "\f0d4"
649
+
650
+ .icon-google-plus:before
651
+ content: "\f0d5"
652
+
653
+ .icon-money:before
654
+ content: "\f0d6"
655
+
656
+ .icon-caret-down:before
657
+ content: "\f0d7"
658
+
659
+ .icon-caret-up:before
660
+ content: "\f0d8"
661
+
662
+ .icon-caret-left:before
663
+ content: "\f0d9"
664
+
665
+ .icon-caret-right:before
666
+ content: "\f0da"
667
+
668
+ .icon-columns:before
669
+ content: "\f0db"
670
+
671
+ .icon-sort:before
672
+ content: "\f0dc"
673
+
674
+ .icon-sort-down:before
675
+ content: "\f0dd"
676
+
677
+ .icon-sort-up:before
678
+ content: "\f0de"
679
+
680
+ .icon-envelope-alt:before
681
+ content: "\f0e0"
682
+
683
+ .icon-linkedin:before
684
+ content: "\f0e1"
685
+
686
+ .icon-undo:before
687
+ content: "\f0e2"
688
+
689
+ .icon-legal:before
690
+ content: "\f0e3"
691
+
692
+ .icon-dashboard:before
693
+ content: "\f0e4"
694
+
695
+ .icon-comment-alt:before
696
+ content: "\f0e5"
697
+
698
+ .icon-comments-alt:before
699
+ content: "\f0e6"
700
+
701
+ .icon-bolt:before
702
+ content: "\f0e7"
703
+
704
+ .icon-sitemap:before
705
+ content: "\f0e8"
706
+
707
+ .icon-umbrella:before
708
+ content: "\f0e9"
709
+
710
+ .icon-paste:before
711
+ content: "\f0ea"
712
+
713
+ .icon-user-md:before
714
+ content: "\f200"
715
+
716
+ .icon-apple-logo:before
717
+ content: "\f500"
718
+
719
+ .icon-windows-8:before
720
+ content: "\f501"
721
+
722
+ .icon-js-fiddle:before
723
+ content: "\f502"
724
+
725
+ .icon-skype:before
726
+ content: "\f503"
727
+
728
+ .icon-youtube-sign:before
729
+ content: "\f504"
730
+
731
+ .icon-youtube:before
732
+ content: "\f505"
733
+
734
+ .icon-vimeo-sign:before
735
+ content: "\f506"
736
+
737
+ .icon-vimeo:before
738
+ content: "\f507"
739
+
740
+ .icon-lastfm-sign:before
741
+ content: "\f508"
742
+
743
+ .icon-lastfm:before
744
+ content: "\f509"
745
+
746
+ .icon-rss-sign:before
747
+ content: "\f50a"
748
+
749
+ .icon-reddit:before
750
+ content: "\f50b"
751
+
752
+ .icon-delicious-sign:before
753
+ content: "\f50c"
754
+
755
+ .icon-wordpress-sign:before
756
+ content: "\f50d"
757
+
758
+ .icon-wordpress:before
759
+ content: "\f50e"
760
+
761
+ .icon-git-fork:before
762
+ content: "\f50f"
763
+
764
+ .icon-blogger-sign:before
765
+ content: "\f510"
766
+
767
+ .icon-blogger:before
768
+ content: "\f511"
769
+
770
+ .icon-tumblr-sign:before
771
+ content: "\f512"
772
+
773
+ .icon-tumblr:before
774
+ content: "\f513"
775
+
776
+ .icon-flickr-sign:before
777
+ content: "\f514"
778
+
779
+ .icon-flickr:before
780
+ content: "\f515"
781
+
782
+ .icon-picasa-sign:before
783
+ content: "\f516"
784
+
785
+ .icon-picasa:before
786
+ content: "\f517"
787
+
788
+ .icon-amazon-sign:before
789
+ content: "\f518"
790
+
791
+ .icon-amazon:before
792
+ content: "\f519"
793
+
794
+ .icon-yelp-sign:before
795
+ content: "\f51a"
796
+
797
+ .icon-yelp:before
798
+ content: "\f51b"
799
+
800
+ .icon-soundcloud:before
801
+ content: "\f51c"
802
+
803
+ .icon-spotify:before
804
+ content: "\f51d"
805
+
806
+ .icon-yahoo-sign:before
807
+ content: "\f520"
808
+
809
+ .icon-yahoo:before
810
+ content: "\f521"
811
+
812
+ .icon-evernote-sign:before
813
+ content: "\f522"
814
+
815
+ .icon-evernote:before
816
+ content: "\f523"
817
+
818
+ .icon-google-sign:before
819
+ content: "\f524"
820
+
821
+ .icon-google:before
822
+ content: "\f525"
823
+
824
+ .icon-hacker-news:before
825
+ content: "\f526"
826
+
827
+ .icon-map:before
828
+ content: "\f529"
829
+
830
+ .icon-bus-sign:before
831
+ content: "\f52a"
832
+
833
+ .icon-bike-sign:before
834
+ content: "\f52b"
835
+
836
+ .icon-car-sign:before
837
+ content: "\f52c"
838
+
839
+ .icon-taxi-sign:before
840
+ content: "\f52d"
841
+
842
+ .icon-truck-sign:before
843
+ content: "\f52e"
844
+
845
+ .icon-handicap-sign:before
846
+ content: "\f52f"
@@ -714,133 +714,133 @@ ul.icons
714
714
  content: "\f200"
715
715
 
716
716
  .icon-apple-logo:before
717
- content: "\f500"
718
-
717
+ content: "\f500"
718
+
719
719
  .icon-windows-8:before
720
- content: "\f501"
721
-
720
+ content: "\f501"
721
+
722
722
  .icon-js-fiddle:before
723
- content: "\f502"
724
-
723
+ content: "\f502"
724
+
725
725
  .icon-skype:before
726
- content: "\f503"
726
+ content: "\f503"
727
727
 
728
728
  .icon-youtube-sign:before
729
- content: "\f504"
729
+ content: "\f504"
730
730
 
731
731
  .icon-youtube:before
732
- content: "\f505"
732
+ content: "\f505"
733
733
 
734
734
  .icon-vimeo-sign:before
735
- content: "\f506"
735
+ content: "\f506"
736
736
 
737
737
  .icon-vimeo:before
738
- content: "\f507"
738
+ content: "\f507"
739
739
 
740
740
  .icon-lastfm-sign:before
741
- content: "\f508"
741
+ content: "\f508"
742
742
 
743
743
  .icon-lastfm:before
744
- content: "\f509"
744
+ content: "\f509"
745
745
 
746
746
  .icon-rss-sign:before
747
- content: "\f50a"
748
-
747
+ content: "\f50a"
748
+
749
749
  .icon-reddit:before
750
- content: "\f50b"
750
+ content: "\f50b"
751
751
 
752
752
  .icon-delicious-sign:before
753
- content: "\f50c"
753
+ content: "\f50c"
754
754
 
755
755
  .icon-wordpress-sign:before
756
- content: "\f50d"
756
+ content: "\f50d"
757
757
 
758
758
  .icon-wordpress:before
759
- content: "\f50e"
759
+ content: "\f50e"
760
760
 
761
761
  .icon-git-fork:before
762
- content: "\f50f"
762
+ content: "\f50f"
763
763
 
764
764
  .icon-blogger-sign:before
765
- content: "\f510"
765
+ content: "\f510"
766
766
 
767
767
  .icon-blogger:before
768
- content: "\f511"
768
+ content: "\f511"
769
769
 
770
770
  .icon-tumblr-sign:before
771
- content: "\f512"
771
+ content: "\f512"
772
772
 
773
773
  .icon-tumblr:before
774
- content: "\f513"
774
+ content: "\f513"
775
775
 
776
776
  .icon-flickr-sign:before
777
- content: "\f514"
777
+ content: "\f514"
778
778
 
779
779
  .icon-flickr:before
780
- content: "\f515"
780
+ content: "\f515"
781
781
 
782
782
  .icon-picasa-sign:before
783
- content: "\f516"
783
+ content: "\f516"
784
784
 
785
785
  .icon-picasa:before
786
- content: "\f517"
786
+ content: "\f517"
787
787
 
788
788
  .icon-amazon-sign:before
789
- content: "\f518"
789
+ content: "\f518"
790
790
 
791
791
  .icon-amazon:before
792
- content: "\f519"
792
+ content: "\f519"
793
793
 
794
794
  .icon-yelp-sign:before
795
- content: "\f51a"
795
+ content: "\f51a"
796
796
 
797
797
  .icon-yelp:before
798
- content: "\f51b"
798
+ content: "\f51b"
799
799
 
800
800
  .icon-soundcloud:before
801
- content: "\f51c"
801
+ content: "\f51c"
802
802
 
803
803
  .icon-spotify:before
804
- content: "\f51d"
804
+ content: "\f51d"
805
805
 
806
806
  .icon-yahoo-sign:before
807
- content: "\f520"
807
+ content: "\f520"
808
808
 
809
809
  .icon-yahoo:before
810
- content: "\f521"
810
+ content: "\f521"
811
811
 
812
812
  .icon-evernote-sign:before
813
- content: "\f522"
813
+ content: "\f522"
814
814
 
815
815
  .icon-evernote:before
816
- content: "\f523"
816
+ content: "\f523"
817
817
 
818
818
  .icon-google-sign:before
819
- content: "\f524"
819
+ content: "\f524"
820
820
 
821
821
  .icon-google:before
822
- content: "\f525"
822
+ content: "\f525"
823
823
 
824
824
  .icon-hacker-news:before
825
- content: "\f526"
825
+ content: "\f526"
826
826
 
827
827
  .icon-map:before
828
- content: "\f529"
828
+ content: "\f529"
829
829
 
830
830
  .icon-bus-sign:before
831
- content: "\f52a"
831
+ content: "\f52a"
832
832
 
833
833
  .icon-bike-sign:before
834
- content: "\f52b"
834
+ content: "\f52b"
835
835
 
836
836
  .icon-car-sign:before
837
- content: "\f52c"
837
+ content: "\f52c"
838
838
 
839
839
  .icon-taxi-sign:before
840
- content: "\f52d"
840
+ content: "\f52d"
841
841
 
842
842
  .icon-truck-sign:before
843
- content: "\f52e"
843
+ content: "\f52e"
844
844
 
845
845
  .icon-handicap-sign:before
846
- content: "\f52f"
846
+ content: "\f52f"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: font_awesome-sass-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.3
4
+ version: 2.1.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-09-07 00:00:00.000000000 Z
12
+ date: 2012-10-11 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
@@ -169,10 +169,11 @@ files:
169
169
  - vendor/assets/fonts/fontawesome-webfont.ttf
170
170
  - vendor/assets/fonts/fontawesome-webfont.woff
171
171
  - vendor/assets/stylesheets/font-awesome-ie7.css
172
+ - vendor/assets/stylesheets/font-awesome-less.less.erb
173
+ - vendor/assets/stylesheets/font-awesome-sass.sass
174
+ - vendor/assets/stylesheets/font-awesome-scss.scss
172
175
  - vendor/assets/stylesheets/font-awesome.css.erb
173
- - vendor/assets/stylesheets/font-awesome.less.erb
174
176
  - vendor/assets/stylesheets/font-awesome.sass
175
- - vendor/assets/stylesheets/font-awesome.scss
176
177
  homepage: http://github.com/kristianmandrup/font_awesome-sass-rails
177
178
  licenses:
178
179
  - MIT
@@ -188,7 +189,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
188
189
  version: '0'
189
190
  segments:
190
191
  - 0
191
- hash: -1212960726032649144
192
+ hash: 4306389019651255960
192
193
  required_rubygems_version: !ruby/object:Gem::Requirement
193
194
  none: false
194
195
  requirements: