font-awesome-rails 4.1.0.0 → 4.2.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,27 +1,26 @@
1
1
  /*!
2
- * Font Awesome 4.1.0 by @davegandy - http://fontawesome.io - @fontawesome
2
+ * Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome
3
3
  * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4
4
  */
5
5
  /* FONT PATH
6
6
  * -------------------------- */
7
7
  //= depend_on_asset "fontawesome-webfont.eot"
8
8
  //= depend_on_asset "fontawesome-webfont.woff"
9
- //= depend_on_asset "fontawesome-webfont.svg"
10
9
  //= depend_on_asset "fontawesome-webfont.ttf"
11
- //= depend_on_asset "fontawesome-webfont.woff"
10
+ //= depend_on_asset "fontawesome-webfont.svg"
11
+ <% v = FontAwesome::Rails::FA_VERSION %>
12
12
  @font-face {
13
13
  font-family: 'FontAwesome';
14
- src: url('<%= font_path('fontawesome-webfont.eot') %>');
15
- src: url('<%= font_path('fontawesome-webfont.eot') %>?#iefix') format('embedded-opentype'), url('<%= font_path('fontawesome-webfont.woff') %>') format('woff'), url('<%= font_path('fontawesome-webfont.ttf') %>') format('truetype'), url('<%= font_path('fontawesome-webfont.svg') %>#fontawesomeregular') format('svg');
14
+ src: url('<%= font_path('fontawesome-webfont.eot') %>?v=<%= v %>');
15
+ src: url('<%= font_path('fontawesome-webfont.eot') %>?#iefix&v=<%= v %>') format('embedded-opentype'), url('<%= font_path('fontawesome-webfont.woff') %>?v=<%= v %>') format('woff'), url('<%= font_path('fontawesome-webfont.ttf') %>?v=<%= v %>') format('truetype'), url('<%= font_path('fontawesome-webfont.svg') %>?v=<%= v %>#fontawesomeregular') format('svg');
16
16
  font-weight: normal;
17
17
  font-style: normal;
18
18
  }
19
19
  .fa {
20
20
  display: inline-block;
21
- font-family: FontAwesome;
22
- font-style: normal;
23
- font-weight: normal;
24
- line-height: 1;
21
+ font: normal normal normal 14px/1 FontAwesome;
22
+ font-size: inherit;
23
+ text-rendering: auto;
25
24
  -webkit-font-smoothing: antialiased;
26
25
  -moz-osx-font-smoothing: grayscale;
27
26
  }
@@ -83,36 +82,20 @@
83
82
  margin-left: .3em;
84
83
  }
85
84
  .fa-spin {
86
- -webkit-animation: spin 2s infinite linear;
87
- -moz-animation: spin 2s infinite linear;
88
- -o-animation: spin 2s infinite linear;
89
- animation: spin 2s infinite linear;
85
+ -webkit-animation: fa-spin 2s infinite linear;
86
+ animation: fa-spin 2s infinite linear;
90
87
  }
91
- @-moz-keyframes spin {
92
- 0% {
93
- -moz-transform: rotate(0deg);
94
- }
95
- 100% {
96
- -moz-transform: rotate(359deg);
97
- }
98
- }
99
- @-webkit-keyframes spin {
88
+ @-webkit-keyframes fa-spin {
100
89
  0% {
101
90
  -webkit-transform: rotate(0deg);
91
+ transform: rotate(0deg);
102
92
  }
103
93
  100% {
104
94
  -webkit-transform: rotate(359deg);
95
+ transform: rotate(359deg);
105
96
  }
106
97
  }
107
- @-o-keyframes spin {
108
- 0% {
109
- -o-transform: rotate(0deg);
110
- }
111
- 100% {
112
- -o-transform: rotate(359deg);
113
- }
114
- }
115
- @keyframes spin {
98
+ @keyframes fa-spin {
116
99
  0% {
117
100
  -webkit-transform: rotate(0deg);
118
101
  transform: rotate(0deg);
@@ -125,43 +108,40 @@
125
108
  .fa-rotate-90 {
126
109
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
127
110
  -webkit-transform: rotate(90deg);
128
- -moz-transform: rotate(90deg);
129
111
  -ms-transform: rotate(90deg);
130
- -o-transform: rotate(90deg);
131
112
  transform: rotate(90deg);
132
113
  }
133
114
  .fa-rotate-180 {
134
115
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
135
116
  -webkit-transform: rotate(180deg);
136
- -moz-transform: rotate(180deg);
137
117
  -ms-transform: rotate(180deg);
138
- -o-transform: rotate(180deg);
139
118
  transform: rotate(180deg);
140
119
  }
141
120
  .fa-rotate-270 {
142
121
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
143
122
  -webkit-transform: rotate(270deg);
144
- -moz-transform: rotate(270deg);
145
123
  -ms-transform: rotate(270deg);
146
- -o-transform: rotate(270deg);
147
124
  transform: rotate(270deg);
148
125
  }
149
126
  .fa-flip-horizontal {
150
127
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
151
128
  -webkit-transform: scale(-1, 1);
152
- -moz-transform: scale(-1, 1);
153
129
  -ms-transform: scale(-1, 1);
154
- -o-transform: scale(-1, 1);
155
130
  transform: scale(-1, 1);
156
131
  }
157
132
  .fa-flip-vertical {
158
133
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
159
134
  -webkit-transform: scale(1, -1);
160
- -moz-transform: scale(1, -1);
161
135
  -ms-transform: scale(1, -1);
162
- -o-transform: scale(1, -1);
163
136
  transform: scale(1, -1);
164
137
  }
138
+ :root .fa-rotate-90,
139
+ :root .fa-rotate-180,
140
+ :root .fa-rotate-270,
141
+ :root .fa-flip-horizontal,
142
+ :root .fa-flip-vertical {
143
+ filter: none;
144
+ }
165
145
  .fa-stack {
166
146
  position: relative;
167
147
  display: inline-block;
@@ -227,6 +207,8 @@
227
207
  .fa-check:before {
228
208
  content: "\f00c";
229
209
  }
210
+ .fa-remove:before,
211
+ .fa-close:before,
230
212
  .fa-times:before {
231
213
  content: "\f00d";
232
214
  }
@@ -556,7 +538,8 @@
556
538
  .fa-arrows-h:before {
557
539
  content: "\f07e";
558
540
  }
559
- .fa-bar-chart-o:before {
541
+ .fa-bar-chart-o:before,
542
+ .fa-bar-chart:before {
560
543
  content: "\f080";
561
544
  }
562
545
  .fa-twitter-square:before {
@@ -1385,7 +1368,6 @@
1385
1368
  .fa-digg:before {
1386
1369
  content: "\f1a6";
1387
1370
  }
1388
- .fa-pied-piper-square:before,
1389
1371
  .fa-pied-piper:before {
1390
1372
  content: "\f1a7";
1391
1373
  }
@@ -1502,6 +1484,7 @@
1502
1484
  content: "\f1cc";
1503
1485
  }
1504
1486
  .fa-life-bouy:before,
1487
+ .fa-life-buoy:before,
1505
1488
  .fa-life-saver:before,
1506
1489
  .fa-support:before,
1507
1490
  .fa-life-ring:before {
@@ -1569,3 +1552,126 @@
1569
1552
  .fa-bomb:before {
1570
1553
  content: "\f1e2";
1571
1554
  }
1555
+ .fa-soccer-ball-o:before,
1556
+ .fa-futbol-o:before {
1557
+ content: "\f1e3";
1558
+ }
1559
+ .fa-tty:before {
1560
+ content: "\f1e4";
1561
+ }
1562
+ .fa-binoculars:before {
1563
+ content: "\f1e5";
1564
+ }
1565
+ .fa-plug:before {
1566
+ content: "\f1e6";
1567
+ }
1568
+ .fa-slideshare:before {
1569
+ content: "\f1e7";
1570
+ }
1571
+ .fa-twitch:before {
1572
+ content: "\f1e8";
1573
+ }
1574
+ .fa-yelp:before {
1575
+ content: "\f1e9";
1576
+ }
1577
+ .fa-newspaper-o:before {
1578
+ content: "\f1ea";
1579
+ }
1580
+ .fa-wifi:before {
1581
+ content: "\f1eb";
1582
+ }
1583
+ .fa-calculator:before {
1584
+ content: "\f1ec";
1585
+ }
1586
+ .fa-paypal:before {
1587
+ content: "\f1ed";
1588
+ }
1589
+ .fa-google-wallet:before {
1590
+ content: "\f1ee";
1591
+ }
1592
+ .fa-cc-visa:before {
1593
+ content: "\f1f0";
1594
+ }
1595
+ .fa-cc-mastercard:before {
1596
+ content: "\f1f1";
1597
+ }
1598
+ .fa-cc-discover:before {
1599
+ content: "\f1f2";
1600
+ }
1601
+ .fa-cc-amex:before {
1602
+ content: "\f1f3";
1603
+ }
1604
+ .fa-cc-paypal:before {
1605
+ content: "\f1f4";
1606
+ }
1607
+ .fa-cc-stripe:before {
1608
+ content: "\f1f5";
1609
+ }
1610
+ .fa-bell-slash:before {
1611
+ content: "\f1f6";
1612
+ }
1613
+ .fa-bell-slash-o:before {
1614
+ content: "\f1f7";
1615
+ }
1616
+ .fa-trash:before {
1617
+ content: "\f1f8";
1618
+ }
1619
+ .fa-copyright:before {
1620
+ content: "\f1f9";
1621
+ }
1622
+ .fa-at:before {
1623
+ content: "\f1fa";
1624
+ }
1625
+ .fa-eyedropper:before {
1626
+ content: "\f1fb";
1627
+ }
1628
+ .fa-paint-brush:before {
1629
+ content: "\f1fc";
1630
+ }
1631
+ .fa-birthday-cake:before {
1632
+ content: "\f1fd";
1633
+ }
1634
+ .fa-area-chart:before {
1635
+ content: "\f1fe";
1636
+ }
1637
+ .fa-pie-chart:before {
1638
+ content: "\f200";
1639
+ }
1640
+ .fa-line-chart:before {
1641
+ content: "\f201";
1642
+ }
1643
+ .fa-lastfm:before {
1644
+ content: "\f202";
1645
+ }
1646
+ .fa-lastfm-square:before {
1647
+ content: "\f203";
1648
+ }
1649
+ .fa-toggle-off:before {
1650
+ content: "\f204";
1651
+ }
1652
+ .fa-toggle-on:before {
1653
+ content: "\f205";
1654
+ }
1655
+ .fa-bicycle:before {
1656
+ content: "\f206";
1657
+ }
1658
+ .fa-bus:before {
1659
+ content: "\f207";
1660
+ }
1661
+ .fa-ioxhost:before {
1662
+ content: "\f208";
1663
+ }
1664
+ .fa-angellist:before {
1665
+ content: "\f209";
1666
+ }
1667
+ .fa-cc:before {
1668
+ content: "\f20a";
1669
+ }
1670
+ .fa-shekel:before,
1671
+ .fa-sheqel:before,
1672
+ .fa-ils:before {
1673
+ content: "\f20b";
1674
+ }
1675
+ .fa-meanpath:before {
1676
+ content: "\f20c";
1677
+ }
@@ -1,5 +1,6 @@
1
1
  module FontAwesome
2
2
  module Rails
3
- VERSION = "4.1.0.0"
3
+ FA_VERSION = "4.2.0"
4
+ VERSION = "4.2.0.0"
4
5
  end
5
6
  end
@@ -2913,3 +2913,1048 @@ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-05-15 00:04:39 -040
2913
2913
  FontAwesomeRailsTest: test_stylesheets_contain_asset_pipeline_references_to_fonts
2914
2914
  ---------------------------------------------------------------------------------
2915
2915
  Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-05-15 00:04:40 -0400
2916
+ ---------------------------------------------------------------------------------------------
2917
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_be_able_to_put_the_icon_on_the_right
2918
+ ---------------------------------------------------------------------------------------------
2919
+ -------------------------------------------------------------------------
2920
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_html_escape_text
2921
+ -------------------------------------------------------------------------
2922
+ ----------------------------------------------------------------------------------
2923
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_a_text_suffix
2924
+ ----------------------------------------------------------------------------------
2925
+ --------------------------------------------------------------------------------------------
2926
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_additional_class_styles
2927
+ --------------------------------------------------------------------------------------------
2928
+ ----------------------------------------------------------------------------------
2929
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_not_html_escape_safe_text
2930
+ ----------------------------------------------------------------------------------
2931
+ ---------------------------------------------------------------------------------------
2932
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pass_all_other_options_through
2933
+ ---------------------------------------------------------------------------------------
2934
+ -----------------------------------------------------------------------------
2935
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pull_it_all_together
2936
+ -----------------------------------------------------------------------------
2937
+ ------------------------------------------------------------------------------------------
2938
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_different_individual_icons
2939
+ ------------------------------------------------------------------------------------------
2940
+ ------------------------------------------------------------------------------------------
2941
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_array_modifiers
2942
+ ------------------------------------------------------------------------------------------
2943
+ ---------------------------------------------------------------------------------------------
2944
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_multiple_modifiers
2945
+ ---------------------------------------------------------------------------------------------
2946
+ ----------------------------------------------------------------------------------------
2947
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_with_no_args_should_render_a_flag_icon
2948
+ ----------------------------------------------------------------------------------------
2949
+ -------------------------------------------------------------------------------------------------------
2950
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_accept_options_for_base_and_main_icons
2951
+ -------------------------------------------------------------------------------------------------------
2952
+ -----------------------------------------------------------------------------------------------------
2953
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_be_able_to_put_the_icon_on_the_right
2954
+ -----------------------------------------------------------------------------------------------------
2955
+ ---------------------------------------------------------------------------------
2956
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_html_escape_text
2957
+ ---------------------------------------------------------------------------------
2958
+ ----------------------------------------------------------------------------------------------------
2959
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_incorporate_additional_class_styles
2960
+ ----------------------------------------------------------------------------------------------------
2961
+ ------------------------------------------------------------------------------------------
2962
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_not_html_escape_safe_text
2963
+ ------------------------------------------------------------------------------------------
2964
+ -----------------------------------------------------------------------------------------------
2965
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_pass_all_other_options_through
2966
+ -----------------------------------------------------------------------------------------------
2967
+ --------------------------------------------------------------------------------------
2968
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_render_a_stacked_icon
2969
+ --------------------------------------------------------------------------------------
2970
+ ----------------------------------------------------------------------------------
2971
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_reverse_the_stack
2972
+ ----------------------------------------------------------------------------------
2973
+ ------------------------------------------------------------------------------------------------
2974
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_with_no_args_should_render_a_flag_icon
2975
+ ------------------------------------------------------------------------------------------------
2976
+ -------------------------------------------
2977
+ FontAwesomeRailsTest: test_engine_is_loaded
2978
+ -------------------------------------------
2979
+ -------------------------------------------
2980
+ FontAwesomeRailsTest: test_fonts_are_served
2981
+ -------------------------------------------
2982
+ Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2014-07-18 10:36:36 -0400
2983
+ Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2014-07-18 10:36:36 -0400
2984
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-07-18 10:36:36 -0400
2985
+ ------------------------------------------------------------------
2986
+ FontAwesomeRailsTest: test_helpers_should_be_available_in_the_view
2987
+ ------------------------------------------------------------------
2988
+ Started GET "/icons" for 127.0.0.1 at 2014-07-18 10:36:36 -0400
2989
+ Processing by PagesController#icons as HTML
2990
+ Completed 200 OK in 6ms (Views: 6.3ms)
2991
+ -----------------------------------------------------------------------------
2992
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_css_sprockets_require
2993
+ -----------------------------------------------------------------------------
2994
+ Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2014-07-18 10:36:36 -0400
2995
+ -------------------------------------------------------------------
2996
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_sass_import
2997
+ -------------------------------------------------------------------
2998
+ Started GET "/assets/sass-import.css" for 127.0.0.1 at 2014-07-18 10:36:36 -0400
2999
+ -------------------------------------------------------------------
3000
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_scss_import
3001
+ -------------------------------------------------------------------
3002
+ Started GET "/assets/scss-import.css" for 127.0.0.1 at 2014-07-18 10:36:36 -0400
3003
+ -------------------------------------------------
3004
+ FontAwesomeRailsTest: test_stylesheets_are_served
3005
+ -------------------------------------------------
3006
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-07-18 10:36:37 -0400
3007
+ ---------------------------------------------------------------------------------
3008
+ FontAwesomeRailsTest: test_stylesheets_contain_asset_pipeline_references_to_fonts
3009
+ ---------------------------------------------------------------------------------
3010
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-07-18 10:36:37 -0400
3011
+ ---------------------------------------------------------------------------------------------
3012
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_be_able_to_put_the_icon_on_the_right
3013
+ ---------------------------------------------------------------------------------------------
3014
+ -------------------------------------------------------------------------
3015
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_html_escape_text
3016
+ -------------------------------------------------------------------------
3017
+ ----------------------------------------------------------------------------------
3018
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_a_text_suffix
3019
+ ----------------------------------------------------------------------------------
3020
+ --------------------------------------------------------------------------------------------
3021
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_additional_class_styles
3022
+ --------------------------------------------------------------------------------------------
3023
+ ----------------------------------------------------------------------------------
3024
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_not_html_escape_safe_text
3025
+ ----------------------------------------------------------------------------------
3026
+ ---------------------------------------------------------------------------------------
3027
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pass_all_other_options_through
3028
+ ---------------------------------------------------------------------------------------
3029
+ -----------------------------------------------------------------------------
3030
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pull_it_all_together
3031
+ -----------------------------------------------------------------------------
3032
+ ------------------------------------------------------------------------------------------
3033
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_different_individual_icons
3034
+ ------------------------------------------------------------------------------------------
3035
+ ------------------------------------------------------------------------------------------
3036
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_array_modifiers
3037
+ ------------------------------------------------------------------------------------------
3038
+ ---------------------------------------------------------------------------------------------
3039
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_multiple_modifiers
3040
+ ---------------------------------------------------------------------------------------------
3041
+ ----------------------------------------------------------------------------------------
3042
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_with_no_args_should_render_a_flag_icon
3043
+ ----------------------------------------------------------------------------------------
3044
+ -------------------------------------------------------------------------------------------------------
3045
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_accept_options_for_base_and_main_icons
3046
+ -------------------------------------------------------------------------------------------------------
3047
+ -----------------------------------------------------------------------------------------------------
3048
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_be_able_to_put_the_icon_on_the_right
3049
+ -----------------------------------------------------------------------------------------------------
3050
+ ---------------------------------------------------------------------------------
3051
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_html_escape_text
3052
+ ---------------------------------------------------------------------------------
3053
+ ----------------------------------------------------------------------------------------------------
3054
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_incorporate_additional_class_styles
3055
+ ----------------------------------------------------------------------------------------------------
3056
+ ------------------------------------------------------------------------------------------
3057
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_not_html_escape_safe_text
3058
+ ------------------------------------------------------------------------------------------
3059
+ -----------------------------------------------------------------------------------------------
3060
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_pass_all_other_options_through
3061
+ -----------------------------------------------------------------------------------------------
3062
+ --------------------------------------------------------------------------------------
3063
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_render_a_stacked_icon
3064
+ --------------------------------------------------------------------------------------
3065
+ ----------------------------------------------------------------------------------
3066
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_reverse_the_stack
3067
+ ----------------------------------------------------------------------------------
3068
+ ------------------------------------------------------------------------------------------------
3069
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_with_no_args_should_render_a_flag_icon
3070
+ ------------------------------------------------------------------------------------------------
3071
+ -------------------------------------------
3072
+ FontAwesomeRailsTest: test_engine_is_loaded
3073
+ -------------------------------------------
3074
+ -------------------------------------------
3075
+ FontAwesomeRailsTest: test_fonts_are_served
3076
+ -------------------------------------------
3077
+ Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2014-08-24 22:22:05 -0400
3078
+ Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2014-08-24 22:22:05 -0400
3079
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-08-24 22:22:05 -0400
3080
+ ------------------------------------------------------------------
3081
+ FontAwesomeRailsTest: test_helpers_should_be_available_in_the_view
3082
+ ------------------------------------------------------------------
3083
+ Started GET "/icons" for 127.0.0.1 at 2014-08-24 22:22:05 -0400
3084
+ Processing by PagesController#icons as HTML
3085
+ Completed 200 OK in 6ms (Views: 6.0ms)
3086
+ -----------------------------------------------------------------------------
3087
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_css_sprockets_require
3088
+ -----------------------------------------------------------------------------
3089
+ Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2014-08-24 22:22:05 -0400
3090
+ -------------------------------------------------------------------
3091
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_sass_import
3092
+ -------------------------------------------------------------------
3093
+ Started GET "/assets/sass-import.css" for 127.0.0.1 at 2014-08-24 22:22:05 -0400
3094
+ -------------------------------------------------------------------
3095
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_scss_import
3096
+ -------------------------------------------------------------------
3097
+ Started GET "/assets/scss-import.css" for 127.0.0.1 at 2014-08-24 22:22:05 -0400
3098
+ -------------------------------------------------
3099
+ FontAwesomeRailsTest: test_stylesheets_are_served
3100
+ -------------------------------------------------
3101
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-08-24 22:22:06 -0400
3102
+ ---------------------------------------------------------------------------------
3103
+ FontAwesomeRailsTest: test_stylesheets_contain_asset_pipeline_references_to_fonts
3104
+ ---------------------------------------------------------------------------------
3105
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-08-24 22:22:06 -0400
3106
+ ---------------------------------------------------------------------------------------------
3107
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_be_able_to_put_the_icon_on_the_right
3108
+ ---------------------------------------------------------------------------------------------
3109
+ -------------------------------------------------------------------------
3110
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_html_escape_text
3111
+ -------------------------------------------------------------------------
3112
+ ----------------------------------------------------------------------------------
3113
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_a_text_suffix
3114
+ ----------------------------------------------------------------------------------
3115
+ --------------------------------------------------------------------------------------------
3116
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_additional_class_styles
3117
+ --------------------------------------------------------------------------------------------
3118
+ ----------------------------------------------------------------------------------
3119
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_not_html_escape_safe_text
3120
+ ----------------------------------------------------------------------------------
3121
+ ---------------------------------------------------------------------------------------
3122
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pass_all_other_options_through
3123
+ ---------------------------------------------------------------------------------------
3124
+ -----------------------------------------------------------------------------
3125
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pull_it_all_together
3126
+ -----------------------------------------------------------------------------
3127
+ ------------------------------------------------------------------------------------------
3128
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_different_individual_icons
3129
+ ------------------------------------------------------------------------------------------
3130
+ ------------------------------------------------------------------------------------------
3131
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_array_modifiers
3132
+ ------------------------------------------------------------------------------------------
3133
+ ---------------------------------------------------------------------------------------------
3134
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_multiple_modifiers
3135
+ ---------------------------------------------------------------------------------------------
3136
+ ----------------------------------------------------------------------------------------
3137
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_with_no_args_should_render_a_flag_icon
3138
+ ----------------------------------------------------------------------------------------
3139
+ -------------------------------------------------------------------------------------------------------
3140
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_accept_options_for_base_and_main_icons
3141
+ -------------------------------------------------------------------------------------------------------
3142
+ -----------------------------------------------------------------------------------------------------
3143
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_be_able_to_put_the_icon_on_the_right
3144
+ -----------------------------------------------------------------------------------------------------
3145
+ ---------------------------------------------------------------------------------
3146
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_html_escape_text
3147
+ ---------------------------------------------------------------------------------
3148
+ ----------------------------------------------------------------------------------------------------
3149
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_incorporate_additional_class_styles
3150
+ ----------------------------------------------------------------------------------------------------
3151
+ ------------------------------------------------------------------------------------------
3152
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_not_html_escape_safe_text
3153
+ ------------------------------------------------------------------------------------------
3154
+ -----------------------------------------------------------------------------------------------
3155
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_pass_all_other_options_through
3156
+ -----------------------------------------------------------------------------------------------
3157
+ --------------------------------------------------------------------------------------
3158
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_render_a_stacked_icon
3159
+ --------------------------------------------------------------------------------------
3160
+ ----------------------------------------------------------------------------------
3161
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_reverse_the_stack
3162
+ ----------------------------------------------------------------------------------
3163
+ ------------------------------------------------------------------------------------------------
3164
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_with_no_args_should_render_a_flag_icon
3165
+ ------------------------------------------------------------------------------------------------
3166
+ -------------------------------------------
3167
+ FontAwesomeRailsTest: test_engine_is_loaded
3168
+ -------------------------------------------
3169
+ -------------------------------------------
3170
+ FontAwesomeRailsTest: test_fonts_are_served
3171
+ -------------------------------------------
3172
+ Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2014-08-26 19:32:06 -0400
3173
+ Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2014-08-26 19:32:06 -0400
3174
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-08-26 19:32:06 -0400
3175
+ ------------------------------------------------------------------
3176
+ FontAwesomeRailsTest: test_helpers_should_be_available_in_the_view
3177
+ ------------------------------------------------------------------
3178
+ Started GET "/icons" for 127.0.0.1 at 2014-08-26 19:32:06 -0400
3179
+ Processing by PagesController#icons as HTML
3180
+ Completed 200 OK in 6ms (Views: 6.3ms)
3181
+ -----------------------------------------------------------------------------
3182
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_css_sprockets_require
3183
+ -----------------------------------------------------------------------------
3184
+ Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2014-08-26 19:32:06 -0400
3185
+ -------------------------------------------------------------------
3186
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_sass_import
3187
+ -------------------------------------------------------------------
3188
+ Started GET "/assets/sass-import.css" for 127.0.0.1 at 2014-08-26 19:32:07 -0400
3189
+ -------------------------------------------------------------------
3190
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_scss_import
3191
+ -------------------------------------------------------------------
3192
+ Started GET "/assets/scss-import.css" for 127.0.0.1 at 2014-08-26 19:32:07 -0400
3193
+ -------------------------------------------------
3194
+ FontAwesomeRailsTest: test_stylesheets_are_served
3195
+ -------------------------------------------------
3196
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-08-26 19:32:07 -0400
3197
+ ---------------------------------------------------------------------------------
3198
+ FontAwesomeRailsTest: test_stylesheets_contain_asset_pipeline_references_to_fonts
3199
+ ---------------------------------------------------------------------------------
3200
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-08-26 19:32:07 -0400
3201
+ ---------------------------------------------------------------------------------------------
3202
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_be_able_to_put_the_icon_on_the_right
3203
+ ---------------------------------------------------------------------------------------------
3204
+ -------------------------------------------------------------------------
3205
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_html_escape_text
3206
+ -------------------------------------------------------------------------
3207
+ ----------------------------------------------------------------------------------
3208
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_a_text_suffix
3209
+ ----------------------------------------------------------------------------------
3210
+ --------------------------------------------------------------------------------------------
3211
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_additional_class_styles
3212
+ --------------------------------------------------------------------------------------------
3213
+ ----------------------------------------------------------------------------------
3214
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_not_html_escape_safe_text
3215
+ ----------------------------------------------------------------------------------
3216
+ ---------------------------------------------------------------------------------------
3217
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pass_all_other_options_through
3218
+ ---------------------------------------------------------------------------------------
3219
+ -----------------------------------------------------------------------------
3220
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pull_it_all_together
3221
+ -----------------------------------------------------------------------------
3222
+ ------------------------------------------------------------------------------------------
3223
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_different_individual_icons
3224
+ ------------------------------------------------------------------------------------------
3225
+ ------------------------------------------------------------------------------------------
3226
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_array_modifiers
3227
+ ------------------------------------------------------------------------------------------
3228
+ ---------------------------------------------------------------------------------------------
3229
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_multiple_modifiers
3230
+ ---------------------------------------------------------------------------------------------
3231
+ ----------------------------------------------------------------------------------------
3232
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_with_no_args_should_render_a_flag_icon
3233
+ ----------------------------------------------------------------------------------------
3234
+ -------------------------------------------------------------------------------------------------------
3235
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_accept_options_for_base_and_main_icons
3236
+ -------------------------------------------------------------------------------------------------------
3237
+ -----------------------------------------------------------------------------------------------------
3238
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_be_able_to_put_the_icon_on_the_right
3239
+ -----------------------------------------------------------------------------------------------------
3240
+ ---------------------------------------------------------------------------------
3241
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_html_escape_text
3242
+ ---------------------------------------------------------------------------------
3243
+ ----------------------------------------------------------------------------------------------------
3244
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_incorporate_additional_class_styles
3245
+ ----------------------------------------------------------------------------------------------------
3246
+ ------------------------------------------------------------------------------------------
3247
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_not_html_escape_safe_text
3248
+ ------------------------------------------------------------------------------------------
3249
+ -----------------------------------------------------------------------------------------------
3250
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_pass_all_other_options_through
3251
+ -----------------------------------------------------------------------------------------------
3252
+ --------------------------------------------------------------------------------------
3253
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_render_a_stacked_icon
3254
+ --------------------------------------------------------------------------------------
3255
+ ----------------------------------------------------------------------------------
3256
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_reverse_the_stack
3257
+ ----------------------------------------------------------------------------------
3258
+ ------------------------------------------------------------------------------------------------
3259
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_with_no_args_should_render_a_flag_icon
3260
+ ------------------------------------------------------------------------------------------------
3261
+ -------------------------------------------
3262
+ FontAwesomeRailsTest: test_engine_is_loaded
3263
+ -------------------------------------------
3264
+ -------------------------------------------
3265
+ FontAwesomeRailsTest: test_fonts_are_served
3266
+ -------------------------------------------
3267
+ Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2014-08-26 19:35:06 -0400
3268
+ Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2014-08-26 19:35:06 -0400
3269
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-08-26 19:35:06 -0400
3270
+ ------------------------------------------------------------------
3271
+ FontAwesomeRailsTest: test_helpers_should_be_available_in_the_view
3272
+ ------------------------------------------------------------------
3273
+ Started GET "/icons" for 127.0.0.1 at 2014-08-26 19:35:06 -0400
3274
+ Processing by PagesController#icons as HTML
3275
+ Completed 200 OK in 6ms (Views: 5.7ms)
3276
+ -----------------------------------------------------------------------------
3277
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_css_sprockets_require
3278
+ -----------------------------------------------------------------------------
3279
+ Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2014-08-26 19:35:06 -0400
3280
+ -------------------------------------------------------------------
3281
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_sass_import
3282
+ -------------------------------------------------------------------
3283
+ Started GET "/assets/sass-import.css" for 127.0.0.1 at 2014-08-26 19:35:06 -0400
3284
+ -------------------------------------------------------------------
3285
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_scss_import
3286
+ -------------------------------------------------------------------
3287
+ Started GET "/assets/scss-import.css" for 127.0.0.1 at 2014-08-26 19:35:07 -0400
3288
+ -------------------------------------------------
3289
+ FontAwesomeRailsTest: test_stylesheets_are_served
3290
+ -------------------------------------------------
3291
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-08-26 19:35:07 -0400
3292
+ ---------------------------------------------------------------------------------
3293
+ FontAwesomeRailsTest: test_stylesheets_contain_asset_pipeline_references_to_fonts
3294
+ ---------------------------------------------------------------------------------
3295
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-08-26 19:35:07 -0400
3296
+ ---------------------------------------------------------------------------------------------
3297
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_be_able_to_put_the_icon_on_the_right
3298
+ ---------------------------------------------------------------------------------------------
3299
+ -------------------------------------------------------------------------
3300
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_html_escape_text
3301
+ -------------------------------------------------------------------------
3302
+ ----------------------------------------------------------------------------------
3303
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_a_text_suffix
3304
+ ----------------------------------------------------------------------------------
3305
+ --------------------------------------------------------------------------------------------
3306
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_additional_class_styles
3307
+ --------------------------------------------------------------------------------------------
3308
+ ----------------------------------------------------------------------------------
3309
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_not_html_escape_safe_text
3310
+ ----------------------------------------------------------------------------------
3311
+ ---------------------------------------------------------------------------------------
3312
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pass_all_other_options_through
3313
+ ---------------------------------------------------------------------------------------
3314
+ -----------------------------------------------------------------------------
3315
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pull_it_all_together
3316
+ -----------------------------------------------------------------------------
3317
+ ------------------------------------------------------------------------------------------
3318
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_different_individual_icons
3319
+ ------------------------------------------------------------------------------------------
3320
+ ------------------------------------------------------------------------------------------
3321
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_array_modifiers
3322
+ ------------------------------------------------------------------------------------------
3323
+ ---------------------------------------------------------------------------------------------
3324
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_multiple_modifiers
3325
+ ---------------------------------------------------------------------------------------------
3326
+ ----------------------------------------------------------------------------------------
3327
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_with_no_args_should_render_a_flag_icon
3328
+ ----------------------------------------------------------------------------------------
3329
+ -------------------------------------------------------------------------------------------------------
3330
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_accept_options_for_base_and_main_icons
3331
+ -------------------------------------------------------------------------------------------------------
3332
+ -----------------------------------------------------------------------------------------------------
3333
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_be_able_to_put_the_icon_on_the_right
3334
+ -----------------------------------------------------------------------------------------------------
3335
+ ---------------------------------------------------------------------------------
3336
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_html_escape_text
3337
+ ---------------------------------------------------------------------------------
3338
+ ----------------------------------------------------------------------------------------------------
3339
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_incorporate_additional_class_styles
3340
+ ----------------------------------------------------------------------------------------------------
3341
+ ------------------------------------------------------------------------------------------
3342
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_not_html_escape_safe_text
3343
+ ------------------------------------------------------------------------------------------
3344
+ -----------------------------------------------------------------------------------------------
3345
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_pass_all_other_options_through
3346
+ -----------------------------------------------------------------------------------------------
3347
+ --------------------------------------------------------------------------------------
3348
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_render_a_stacked_icon
3349
+ --------------------------------------------------------------------------------------
3350
+ ----------------------------------------------------------------------------------
3351
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_reverse_the_stack
3352
+ ----------------------------------------------------------------------------------
3353
+ ------------------------------------------------------------------------------------------------
3354
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_with_no_args_should_render_a_flag_icon
3355
+ ------------------------------------------------------------------------------------------------
3356
+ -------------------------------------------
3357
+ FontAwesomeRailsTest: test_engine_is_loaded
3358
+ -------------------------------------------
3359
+ -------------------------------------------
3360
+ FontAwesomeRailsTest: test_fonts_are_served
3361
+ -------------------------------------------
3362
+ Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2014-08-26 19:35:28 -0400
3363
+ Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2014-08-26 19:35:28 -0400
3364
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-08-26 19:35:28 -0400
3365
+ ------------------------------------------------------------------
3366
+ FontAwesomeRailsTest: test_helpers_should_be_available_in_the_view
3367
+ ------------------------------------------------------------------
3368
+ Started GET "/icons" for 127.0.0.1 at 2014-08-26 19:35:28 -0400
3369
+ Processing by PagesController#icons as HTML
3370
+ Completed 200 OK in 6ms (Views: 6.1ms)
3371
+ -----------------------------------------------------------------------------
3372
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_css_sprockets_require
3373
+ -----------------------------------------------------------------------------
3374
+ Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2014-08-26 19:35:28 -0400
3375
+ -------------------------------------------------------------------
3376
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_sass_import
3377
+ -------------------------------------------------------------------
3378
+ Started GET "/assets/sass-import.css" for 127.0.0.1 at 2014-08-26 19:35:28 -0400
3379
+ -------------------------------------------------------------------
3380
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_scss_import
3381
+ -------------------------------------------------------------------
3382
+ Started GET "/assets/scss-import.css" for 127.0.0.1 at 2014-08-26 19:35:28 -0400
3383
+ -------------------------------------------------
3384
+ FontAwesomeRailsTest: test_stylesheets_are_served
3385
+ -------------------------------------------------
3386
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-08-26 19:35:28 -0400
3387
+ ---------------------------------------------------------------------------------
3388
+ FontAwesomeRailsTest: test_stylesheets_contain_asset_pipeline_references_to_fonts
3389
+ ---------------------------------------------------------------------------------
3390
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-08-26 19:35:28 -0400
3391
+ ---------------------------------------------------------------------------------------------
3392
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_be_able_to_put_the_icon_on_the_right
3393
+ ---------------------------------------------------------------------------------------------
3394
+ -------------------------------------------------------------------------
3395
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_html_escape_text
3396
+ -------------------------------------------------------------------------
3397
+ ----------------------------------------------------------------------------------
3398
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_a_text_suffix
3399
+ ----------------------------------------------------------------------------------
3400
+ --------------------------------------------------------------------------------------------
3401
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_additional_class_styles
3402
+ --------------------------------------------------------------------------------------------
3403
+ ----------------------------------------------------------------------------------
3404
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_not_html_escape_safe_text
3405
+ ----------------------------------------------------------------------------------
3406
+ ---------------------------------------------------------------------------------------
3407
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pass_all_other_options_through
3408
+ ---------------------------------------------------------------------------------------
3409
+ -----------------------------------------------------------------------------
3410
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pull_it_all_together
3411
+ -----------------------------------------------------------------------------
3412
+ ------------------------------------------------------------------------------------------
3413
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_different_individual_icons
3414
+ ------------------------------------------------------------------------------------------
3415
+ ------------------------------------------------------------------------------------------
3416
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_array_modifiers
3417
+ ------------------------------------------------------------------------------------------
3418
+ ---------------------------------------------------------------------------------------------
3419
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_multiple_modifiers
3420
+ ---------------------------------------------------------------------------------------------
3421
+ ----------------------------------------------------------------------------------------
3422
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_with_no_args_should_render_a_flag_icon
3423
+ ----------------------------------------------------------------------------------------
3424
+ -------------------------------------------------------------------------------------------------------
3425
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_accept_options_for_base_and_main_icons
3426
+ -------------------------------------------------------------------------------------------------------
3427
+ -----------------------------------------------------------------------------------------------------
3428
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_be_able_to_put_the_icon_on_the_right
3429
+ -----------------------------------------------------------------------------------------------------
3430
+ ---------------------------------------------------------------------------------
3431
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_html_escape_text
3432
+ ---------------------------------------------------------------------------------
3433
+ ----------------------------------------------------------------------------------------------------
3434
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_incorporate_additional_class_styles
3435
+ ----------------------------------------------------------------------------------------------------
3436
+ ------------------------------------------------------------------------------------------
3437
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_not_html_escape_safe_text
3438
+ ------------------------------------------------------------------------------------------
3439
+ -----------------------------------------------------------------------------------------------
3440
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_pass_all_other_options_through
3441
+ -----------------------------------------------------------------------------------------------
3442
+ --------------------------------------------------------------------------------------
3443
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_render_a_stacked_icon
3444
+ --------------------------------------------------------------------------------------
3445
+ ----------------------------------------------------------------------------------
3446
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_reverse_the_stack
3447
+ ----------------------------------------------------------------------------------
3448
+ ------------------------------------------------------------------------------------------------
3449
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_with_no_args_should_render_a_flag_icon
3450
+ ------------------------------------------------------------------------------------------------
3451
+ -------------------------------------------
3452
+ FontAwesomeRailsTest: test_engine_is_loaded
3453
+ -------------------------------------------
3454
+ -------------------------------------------
3455
+ FontAwesomeRailsTest: test_fonts_are_served
3456
+ -------------------------------------------
3457
+ Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2014-08-26 19:36:09 -0400
3458
+ Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2014-08-26 19:36:09 -0400
3459
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-08-26 19:36:09 -0400
3460
+ ------------------------------------------------------------------
3461
+ FontAwesomeRailsTest: test_helpers_should_be_available_in_the_view
3462
+ ------------------------------------------------------------------
3463
+ Started GET "/icons" for 127.0.0.1 at 2014-08-26 19:36:09 -0400
3464
+ Processing by PagesController#icons as HTML
3465
+ Completed 200 OK in 6ms (Views: 5.9ms)
3466
+ -----------------------------------------------------------------------------
3467
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_css_sprockets_require
3468
+ -----------------------------------------------------------------------------
3469
+ Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2014-08-26 19:36:09 -0400
3470
+ -------------------------------------------------------------------
3471
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_sass_import
3472
+ -------------------------------------------------------------------
3473
+ Started GET "/assets/sass-import.css" for 127.0.0.1 at 2014-08-26 19:36:09 -0400
3474
+ -------------------------------------------------------------------
3475
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_scss_import
3476
+ -------------------------------------------------------------------
3477
+ Started GET "/assets/scss-import.css" for 127.0.0.1 at 2014-08-26 19:36:09 -0400
3478
+ -------------------------------------------------
3479
+ FontAwesomeRailsTest: test_stylesheets_are_served
3480
+ -------------------------------------------------
3481
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-08-26 19:36:09 -0400
3482
+ ---------------------------------------------------------------------------------
3483
+ FontAwesomeRailsTest: test_stylesheets_contain_asset_pipeline_references_to_fonts
3484
+ ---------------------------------------------------------------------------------
3485
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-08-26 19:36:10 -0400
3486
+ ---------------------------------------------------------------------------------------------
3487
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_be_able_to_put_the_icon_on_the_right
3488
+ ---------------------------------------------------------------------------------------------
3489
+ -------------------------------------------------------------------------
3490
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_html_escape_text
3491
+ -------------------------------------------------------------------------
3492
+ ----------------------------------------------------------------------------------
3493
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_a_text_suffix
3494
+ ----------------------------------------------------------------------------------
3495
+ --------------------------------------------------------------------------------------------
3496
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_additional_class_styles
3497
+ --------------------------------------------------------------------------------------------
3498
+ ----------------------------------------------------------------------------------
3499
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_not_html_escape_safe_text
3500
+ ----------------------------------------------------------------------------------
3501
+ ---------------------------------------------------------------------------------------
3502
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pass_all_other_options_through
3503
+ ---------------------------------------------------------------------------------------
3504
+ -----------------------------------------------------------------------------
3505
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pull_it_all_together
3506
+ -----------------------------------------------------------------------------
3507
+ ------------------------------------------------------------------------------------------
3508
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_different_individual_icons
3509
+ ------------------------------------------------------------------------------------------
3510
+ ------------------------------------------------------------------------------------------
3511
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_array_modifiers
3512
+ ------------------------------------------------------------------------------------------
3513
+ ---------------------------------------------------------------------------------------------
3514
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_multiple_modifiers
3515
+ ---------------------------------------------------------------------------------------------
3516
+ ----------------------------------------------------------------------------------------
3517
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_with_no_args_should_render_a_flag_icon
3518
+ ----------------------------------------------------------------------------------------
3519
+ -------------------------------------------------------------------------------------------------------
3520
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_accept_options_for_base_and_main_icons
3521
+ -------------------------------------------------------------------------------------------------------
3522
+ -----------------------------------------------------------------------------------------------------
3523
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_be_able_to_put_the_icon_on_the_right
3524
+ -----------------------------------------------------------------------------------------------------
3525
+ ---------------------------------------------------------------------------------
3526
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_html_escape_text
3527
+ ---------------------------------------------------------------------------------
3528
+ ----------------------------------------------------------------------------------------------------
3529
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_incorporate_additional_class_styles
3530
+ ----------------------------------------------------------------------------------------------------
3531
+ ------------------------------------------------------------------------------------------
3532
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_not_html_escape_safe_text
3533
+ ------------------------------------------------------------------------------------------
3534
+ -----------------------------------------------------------------------------------------------
3535
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_pass_all_other_options_through
3536
+ -----------------------------------------------------------------------------------------------
3537
+ --------------------------------------------------------------------------------------
3538
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_render_a_stacked_icon
3539
+ --------------------------------------------------------------------------------------
3540
+ ----------------------------------------------------------------------------------
3541
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_reverse_the_stack
3542
+ ----------------------------------------------------------------------------------
3543
+ ------------------------------------------------------------------------------------------------
3544
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_with_no_args_should_render_a_flag_icon
3545
+ ------------------------------------------------------------------------------------------------
3546
+ -------------------------------------------
3547
+ FontAwesomeRailsTest: test_engine_is_loaded
3548
+ -------------------------------------------
3549
+ -------------------------------------------
3550
+ FontAwesomeRailsTest: test_fonts_are_served
3551
+ -------------------------------------------
3552
+ Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2014-08-26 19:36:24 -0400
3553
+ Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2014-08-26 19:36:24 -0400
3554
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-08-26 19:36:24 -0400
3555
+ ------------------------------------------------------------------
3556
+ FontAwesomeRailsTest: test_helpers_should_be_available_in_the_view
3557
+ ------------------------------------------------------------------
3558
+ Started GET "/icons" for 127.0.0.1 at 2014-08-26 19:36:24 -0400
3559
+ Processing by PagesController#icons as HTML
3560
+ Completed 200 OK in 4ms (Views: 4.3ms)
3561
+ -----------------------------------------------------------------------------
3562
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_css_sprockets_require
3563
+ -----------------------------------------------------------------------------
3564
+ Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2014-08-26 19:36:24 -0400
3565
+ -------------------------------------------------------------------
3566
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_sass_import
3567
+ -------------------------------------------------------------------
3568
+ Started GET "/assets/sass-import.css" for 127.0.0.1 at 2014-08-26 19:36:24 -0400
3569
+ -------------------------------------------------------------------
3570
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_scss_import
3571
+ -------------------------------------------------------------------
3572
+ Started GET "/assets/scss-import.css" for 127.0.0.1 at 2014-08-26 19:36:24 -0400
3573
+ -------------------------------------------------
3574
+ FontAwesomeRailsTest: test_stylesheets_are_served
3575
+ -------------------------------------------------
3576
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-08-26 19:36:24 -0400
3577
+ ---------------------------------------------------------------------------------
3578
+ FontAwesomeRailsTest: test_stylesheets_contain_asset_pipeline_references_to_fonts
3579
+ ---------------------------------------------------------------------------------
3580
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-08-26 19:36:24 -0400
3581
+ ---------------------------------------------------------------------------------------------
3582
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_be_able_to_put_the_icon_on_the_right
3583
+ ---------------------------------------------------------------------------------------------
3584
+ -------------------------------------------------------------------------
3585
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_html_escape_text
3586
+ -------------------------------------------------------------------------
3587
+ ----------------------------------------------------------------------------------
3588
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_a_text_suffix
3589
+ ----------------------------------------------------------------------------------
3590
+ --------------------------------------------------------------------------------------------
3591
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_additional_class_styles
3592
+ --------------------------------------------------------------------------------------------
3593
+ ----------------------------------------------------------------------------------
3594
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_not_html_escape_safe_text
3595
+ ----------------------------------------------------------------------------------
3596
+ ---------------------------------------------------------------------------------------
3597
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pass_all_other_options_through
3598
+ ---------------------------------------------------------------------------------------
3599
+ -----------------------------------------------------------------------------
3600
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pull_it_all_together
3601
+ -----------------------------------------------------------------------------
3602
+ ------------------------------------------------------------------------------------------
3603
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_different_individual_icons
3604
+ ------------------------------------------------------------------------------------------
3605
+ ------------------------------------------------------------------------------------------
3606
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_array_modifiers
3607
+ ------------------------------------------------------------------------------------------
3608
+ ---------------------------------------------------------------------------------------------
3609
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_multiple_modifiers
3610
+ ---------------------------------------------------------------------------------------------
3611
+ ----------------------------------------------------------------------------------------
3612
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_with_no_args_should_render_a_flag_icon
3613
+ ----------------------------------------------------------------------------------------
3614
+ -------------------------------------------------------------------------------------------------------
3615
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_accept_options_for_base_and_main_icons
3616
+ -------------------------------------------------------------------------------------------------------
3617
+ -----------------------------------------------------------------------------------------------------
3618
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_be_able_to_put_the_icon_on_the_right
3619
+ -----------------------------------------------------------------------------------------------------
3620
+ ---------------------------------------------------------------------------------
3621
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_html_escape_text
3622
+ ---------------------------------------------------------------------------------
3623
+ ----------------------------------------------------------------------------------------------------
3624
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_incorporate_additional_class_styles
3625
+ ----------------------------------------------------------------------------------------------------
3626
+ ------------------------------------------------------------------------------------------
3627
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_not_html_escape_safe_text
3628
+ ------------------------------------------------------------------------------------------
3629
+ -----------------------------------------------------------------------------------------------
3630
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_pass_all_other_options_through
3631
+ -----------------------------------------------------------------------------------------------
3632
+ --------------------------------------------------------------------------------------
3633
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_render_a_stacked_icon
3634
+ --------------------------------------------------------------------------------------
3635
+ ----------------------------------------------------------------------------------
3636
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_reverse_the_stack
3637
+ ----------------------------------------------------------------------------------
3638
+ ------------------------------------------------------------------------------------------------
3639
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_with_no_args_should_render_a_flag_icon
3640
+ ------------------------------------------------------------------------------------------------
3641
+ -------------------------------------------
3642
+ FontAwesomeRailsTest: test_engine_is_loaded
3643
+ -------------------------------------------
3644
+ -------------------------------------------
3645
+ FontAwesomeRailsTest: test_fonts_are_served
3646
+ -------------------------------------------
3647
+ Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2014-08-26 19:45:21 -0400
3648
+ Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2014-08-26 19:45:21 -0400
3649
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-08-26 19:45:21 -0400
3650
+ ------------------------------------------------------------------
3651
+ FontAwesomeRailsTest: test_helpers_should_be_available_in_the_view
3652
+ ------------------------------------------------------------------
3653
+ Started GET "/icons" for 127.0.0.1 at 2014-08-26 19:45:21 -0400
3654
+ Processing by PagesController#icons as HTML
3655
+ Completed 200 OK in 6ms (Views: 5.7ms)
3656
+ -----------------------------------------------------------------------------
3657
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_css_sprockets_require
3658
+ -----------------------------------------------------------------------------
3659
+ Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2014-08-26 19:45:21 -0400
3660
+ -------------------------------------------------------------------
3661
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_sass_import
3662
+ -------------------------------------------------------------------
3663
+ Started GET "/assets/sass-import.css" for 127.0.0.1 at 2014-08-26 19:45:21 -0400
3664
+ -------------------------------------------------------------------
3665
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_scss_import
3666
+ -------------------------------------------------------------------
3667
+ Started GET "/assets/scss-import.css" for 127.0.0.1 at 2014-08-26 19:45:21 -0400
3668
+ -------------------------------------------------
3669
+ FontAwesomeRailsTest: test_stylesheets_are_served
3670
+ -------------------------------------------------
3671
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-08-26 19:45:22 -0400
3672
+ ---------------------------------------------------------------------------------
3673
+ FontAwesomeRailsTest: test_stylesheets_contain_asset_pipeline_references_to_fonts
3674
+ ---------------------------------------------------------------------------------
3675
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-08-26 19:45:22 -0400
3676
+ ---------------------------------------------------------------------------------------------
3677
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_be_able_to_put_the_icon_on_the_right
3678
+ ---------------------------------------------------------------------------------------------
3679
+ -------------------------------------------------------------------------
3680
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_html_escape_text
3681
+ -------------------------------------------------------------------------
3682
+ ----------------------------------------------------------------------------------
3683
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_a_text_suffix
3684
+ ----------------------------------------------------------------------------------
3685
+ --------------------------------------------------------------------------------------------
3686
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_additional_class_styles
3687
+ --------------------------------------------------------------------------------------------
3688
+ ----------------------------------------------------------------------------------
3689
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_not_html_escape_safe_text
3690
+ ----------------------------------------------------------------------------------
3691
+ ---------------------------------------------------------------------------------------
3692
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pass_all_other_options_through
3693
+ ---------------------------------------------------------------------------------------
3694
+ -----------------------------------------------------------------------------
3695
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pull_it_all_together
3696
+ -----------------------------------------------------------------------------
3697
+ ------------------------------------------------------------------------------------------
3698
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_different_individual_icons
3699
+ ------------------------------------------------------------------------------------------
3700
+ ------------------------------------------------------------------------------------------
3701
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_array_modifiers
3702
+ ------------------------------------------------------------------------------------------
3703
+ ---------------------------------------------------------------------------------------------
3704
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_multiple_modifiers
3705
+ ---------------------------------------------------------------------------------------------
3706
+ ----------------------------------------------------------------------------------------
3707
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_with_no_args_should_render_a_flag_icon
3708
+ ----------------------------------------------------------------------------------------
3709
+ -------------------------------------------------------------------------------------------------------
3710
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_accept_options_for_base_and_main_icons
3711
+ -------------------------------------------------------------------------------------------------------
3712
+ -----------------------------------------------------------------------------------------------------
3713
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_be_able_to_put_the_icon_on_the_right
3714
+ -----------------------------------------------------------------------------------------------------
3715
+ ---------------------------------------------------------------------------------
3716
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_html_escape_text
3717
+ ---------------------------------------------------------------------------------
3718
+ ----------------------------------------------------------------------------------------------------
3719
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_incorporate_additional_class_styles
3720
+ ----------------------------------------------------------------------------------------------------
3721
+ ------------------------------------------------------------------------------------------
3722
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_not_html_escape_safe_text
3723
+ ------------------------------------------------------------------------------------------
3724
+ -----------------------------------------------------------------------------------------------
3725
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_pass_all_other_options_through
3726
+ -----------------------------------------------------------------------------------------------
3727
+ --------------------------------------------------------------------------------------
3728
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_render_a_stacked_icon
3729
+ --------------------------------------------------------------------------------------
3730
+ ----------------------------------------------------------------------------------
3731
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_reverse_the_stack
3732
+ ----------------------------------------------------------------------------------
3733
+ ------------------------------------------------------------------------------------------------
3734
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_with_no_args_should_render_a_flag_icon
3735
+ ------------------------------------------------------------------------------------------------
3736
+ -------------------------------------------
3737
+ FontAwesomeRailsTest: test_engine_is_loaded
3738
+ -------------------------------------------
3739
+ -------------------------------------------
3740
+ FontAwesomeRailsTest: test_fonts_are_served
3741
+ -------------------------------------------
3742
+ Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2014-08-26 19:45:41 -0400
3743
+ Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2014-08-26 19:45:41 -0400
3744
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-08-26 19:45:41 -0400
3745
+ ------------------------------------------------------------------
3746
+ FontAwesomeRailsTest: test_helpers_should_be_available_in_the_view
3747
+ ------------------------------------------------------------------
3748
+ Started GET "/icons" for 127.0.0.1 at 2014-08-26 19:45:41 -0400
3749
+ Processing by PagesController#icons as HTML
3750
+ Completed 200 OK in 4ms (Views: 4.0ms)
3751
+ -----------------------------------------------------------------------------
3752
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_css_sprockets_require
3753
+ -----------------------------------------------------------------------------
3754
+ Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2014-08-26 19:45:41 -0400
3755
+ -------------------------------------------------------------------
3756
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_sass_import
3757
+ -------------------------------------------------------------------
3758
+ Started GET "/assets/sass-import.css" for 127.0.0.1 at 2014-08-26 19:45:41 -0400
3759
+ -------------------------------------------------------------------
3760
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_scss_import
3761
+ -------------------------------------------------------------------
3762
+ Started GET "/assets/scss-import.css" for 127.0.0.1 at 2014-08-26 19:45:41 -0400
3763
+ -------------------------------------------------
3764
+ FontAwesomeRailsTest: test_stylesheets_are_served
3765
+ -------------------------------------------------
3766
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-08-26 19:45:42 -0400
3767
+ ---------------------------------------------------------------------------------
3768
+ FontAwesomeRailsTest: test_stylesheets_contain_asset_pipeline_references_to_fonts
3769
+ ---------------------------------------------------------------------------------
3770
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-08-26 19:45:42 -0400
3771
+ ---------------------------------------------------------------------------------------------
3772
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_be_able_to_put_the_icon_on_the_right
3773
+ ---------------------------------------------------------------------------------------------
3774
+ -------------------------------------------------------------------------
3775
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_html_escape_text
3776
+ -------------------------------------------------------------------------
3777
+ ----------------------------------------------------------------------------------
3778
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_a_text_suffix
3779
+ ----------------------------------------------------------------------------------
3780
+ --------------------------------------------------------------------------------------------
3781
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_additional_class_styles
3782
+ --------------------------------------------------------------------------------------------
3783
+ ----------------------------------------------------------------------------------
3784
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_not_html_escape_safe_text
3785
+ ----------------------------------------------------------------------------------
3786
+ ---------------------------------------------------------------------------------------
3787
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pass_all_other_options_through
3788
+ ---------------------------------------------------------------------------------------
3789
+ -----------------------------------------------------------------------------
3790
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pull_it_all_together
3791
+ -----------------------------------------------------------------------------
3792
+ ------------------------------------------------------------------------------------------
3793
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_different_individual_icons
3794
+ ------------------------------------------------------------------------------------------
3795
+ ------------------------------------------------------------------------------------------
3796
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_array_modifiers
3797
+ ------------------------------------------------------------------------------------------
3798
+ ---------------------------------------------------------------------------------------------
3799
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_multiple_modifiers
3800
+ ---------------------------------------------------------------------------------------------
3801
+ ----------------------------------------------------------------------------------------
3802
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_with_no_args_should_render_a_flag_icon
3803
+ ----------------------------------------------------------------------------------------
3804
+ -------------------------------------------------------------------------------------------------------
3805
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_accept_options_for_base_and_main_icons
3806
+ -------------------------------------------------------------------------------------------------------
3807
+ -----------------------------------------------------------------------------------------------------
3808
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_be_able_to_put_the_icon_on_the_right
3809
+ -----------------------------------------------------------------------------------------------------
3810
+ ---------------------------------------------------------------------------------
3811
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_html_escape_text
3812
+ ---------------------------------------------------------------------------------
3813
+ ----------------------------------------------------------------------------------------------------
3814
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_incorporate_additional_class_styles
3815
+ ----------------------------------------------------------------------------------------------------
3816
+ ------------------------------------------------------------------------------------------
3817
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_not_html_escape_safe_text
3818
+ ------------------------------------------------------------------------------------------
3819
+ -----------------------------------------------------------------------------------------------
3820
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_pass_all_other_options_through
3821
+ -----------------------------------------------------------------------------------------------
3822
+ --------------------------------------------------------------------------------------
3823
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_render_a_stacked_icon
3824
+ --------------------------------------------------------------------------------------
3825
+ ----------------------------------------------------------------------------------
3826
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_reverse_the_stack
3827
+ ----------------------------------------------------------------------------------
3828
+ ------------------------------------------------------------------------------------------------
3829
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_with_no_args_should_render_a_flag_icon
3830
+ ------------------------------------------------------------------------------------------------
3831
+ -------------------------------------------
3832
+ FontAwesomeRailsTest: test_engine_is_loaded
3833
+ -------------------------------------------
3834
+ -------------------------------------------
3835
+ FontAwesomeRailsTest: test_fonts_are_served
3836
+ -------------------------------------------
3837
+ Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2014-08-26 19:47:03 -0400
3838
+ Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2014-08-26 19:47:03 -0400
3839
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-08-26 19:47:03 -0400
3840
+ ------------------------------------------------------------------
3841
+ FontAwesomeRailsTest: test_helpers_should_be_available_in_the_view
3842
+ ------------------------------------------------------------------
3843
+ Started GET "/icons" for 127.0.0.1 at 2014-08-26 19:47:03 -0400
3844
+ Processing by PagesController#icons as HTML
3845
+ Completed 200 OK in 4ms (Views: 3.9ms)
3846
+ -----------------------------------------------------------------------------
3847
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_css_sprockets_require
3848
+ -----------------------------------------------------------------------------
3849
+ Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2014-08-26 19:47:03 -0400
3850
+ -------------------------------------------------------------------
3851
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_sass_import
3852
+ -------------------------------------------------------------------
3853
+ Started GET "/assets/sass-import.css" for 127.0.0.1 at 2014-08-26 19:47:03 -0400
3854
+ -------------------------------------------------------------------
3855
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_scss_import
3856
+ -------------------------------------------------------------------
3857
+ Started GET "/assets/scss-import.css" for 127.0.0.1 at 2014-08-26 19:47:03 -0400
3858
+ -------------------------------------------------
3859
+ FontAwesomeRailsTest: test_stylesheets_are_served
3860
+ -------------------------------------------------
3861
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-08-26 19:47:03 -0400
3862
+ ---------------------------------------------------------------------------------
3863
+ FontAwesomeRailsTest: test_stylesheets_contain_asset_pipeline_references_to_fonts
3864
+ ---------------------------------------------------------------------------------
3865
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-08-26 19:47:03 -0400
3866
+ ---------------------------------------------------------------------------------------------
3867
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_be_able_to_put_the_icon_on_the_right
3868
+ ---------------------------------------------------------------------------------------------
3869
+ -------------------------------------------------------------------------
3870
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_html_escape_text
3871
+ -------------------------------------------------------------------------
3872
+ ----------------------------------------------------------------------------------
3873
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_a_text_suffix
3874
+ ----------------------------------------------------------------------------------
3875
+ --------------------------------------------------------------------------------------------
3876
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_additional_class_styles
3877
+ --------------------------------------------------------------------------------------------
3878
+ ----------------------------------------------------------------------------------
3879
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_not_html_escape_safe_text
3880
+ ----------------------------------------------------------------------------------
3881
+ ---------------------------------------------------------------------------------------
3882
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pass_all_other_options_through
3883
+ ---------------------------------------------------------------------------------------
3884
+ -----------------------------------------------------------------------------
3885
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pull_it_all_together
3886
+ -----------------------------------------------------------------------------
3887
+ ------------------------------------------------------------------------------------------
3888
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_different_individual_icons
3889
+ ------------------------------------------------------------------------------------------
3890
+ ------------------------------------------------------------------------------------------
3891
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_array_modifiers
3892
+ ------------------------------------------------------------------------------------------
3893
+ ---------------------------------------------------------------------------------------------
3894
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_multiple_modifiers
3895
+ ---------------------------------------------------------------------------------------------
3896
+ ----------------------------------------------------------------------------------------
3897
+ FontAwesome::Rails::IconHelperTest: test_#fa_icon_with_no_args_should_render_a_flag_icon
3898
+ ----------------------------------------------------------------------------------------
3899
+ -------------------------------------------------------------------------------------------------------
3900
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_accept_options_for_base_and_main_icons
3901
+ -------------------------------------------------------------------------------------------------------
3902
+ -----------------------------------------------------------------------------------------------------
3903
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_be_able_to_put_the_icon_on_the_right
3904
+ -----------------------------------------------------------------------------------------------------
3905
+ ---------------------------------------------------------------------------------
3906
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_html_escape_text
3907
+ ---------------------------------------------------------------------------------
3908
+ ----------------------------------------------------------------------------------------------------
3909
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_incorporate_additional_class_styles
3910
+ ----------------------------------------------------------------------------------------------------
3911
+ ------------------------------------------------------------------------------------------
3912
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_not_html_escape_safe_text
3913
+ ------------------------------------------------------------------------------------------
3914
+ -----------------------------------------------------------------------------------------------
3915
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_pass_all_other_options_through
3916
+ -----------------------------------------------------------------------------------------------
3917
+ --------------------------------------------------------------------------------------
3918
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_render_a_stacked_icon
3919
+ --------------------------------------------------------------------------------------
3920
+ ----------------------------------------------------------------------------------
3921
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_reverse_the_stack
3922
+ ----------------------------------------------------------------------------------
3923
+ ------------------------------------------------------------------------------------------------
3924
+ FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_with_no_args_should_render_a_flag_icon
3925
+ ------------------------------------------------------------------------------------------------
3926
+ -------------------------------------------
3927
+ FontAwesomeRailsTest: test_engine_is_loaded
3928
+ -------------------------------------------
3929
+ -------------------------------------------
3930
+ FontAwesomeRailsTest: test_fonts_are_served
3931
+ -------------------------------------------
3932
+ Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2014-08-26 20:21:30 -0400
3933
+ Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2014-08-26 20:21:30 -0400
3934
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-08-26 20:21:30 -0400
3935
+ ------------------------------------------------------------------
3936
+ FontAwesomeRailsTest: test_helpers_should_be_available_in_the_view
3937
+ ------------------------------------------------------------------
3938
+ Started GET "/icons" for 127.0.0.1 at 2014-08-26 20:21:30 -0400
3939
+ Processing by PagesController#icons as HTML
3940
+ Completed 200 OK in 5ms (Views: 4.6ms)
3941
+ -----------------------------------------------------------------------------
3942
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_css_sprockets_require
3943
+ -----------------------------------------------------------------------------
3944
+ Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2014-08-26 20:21:30 -0400
3945
+ -------------------------------------------------------------------
3946
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_sass_import
3947
+ -------------------------------------------------------------------
3948
+ Started GET "/assets/sass-import.css" for 127.0.0.1 at 2014-08-26 20:21:30 -0400
3949
+ -------------------------------------------------------------------
3950
+ FontAwesomeRailsTest: test_stylesheet_is_available_in_a_scss_import
3951
+ -------------------------------------------------------------------
3952
+ Started GET "/assets/scss-import.css" for 127.0.0.1 at 2014-08-26 20:21:31 -0400
3953
+ -------------------------------------------------
3954
+ FontAwesomeRailsTest: test_stylesheets_are_served
3955
+ -------------------------------------------------
3956
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-08-26 20:21:31 -0400
3957
+ ---------------------------------------------------------------------------------
3958
+ FontAwesomeRailsTest: test_stylesheets_contain_asset_pipeline_references_to_fonts
3959
+ ---------------------------------------------------------------------------------
3960
+ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-08-26 20:21:31 -0400