font-awesome-rails 4.0.3.0 → 4.0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +40 -0
- data/app/assets/stylesheets/font-awesome.css.erb +5 -0
- data/lib/font-awesome-rails/version.rb +1 -1
- data/test/dummy/log/test.log +534 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 821de7917d138661bb00d01f08f427520e006837
|
4
|
+
data.tar.gz: ac31786766509fb832cdeb2e25b2e4312363281f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1bcbe26b981b06ab365099909ebdd49c5ba06456236804584f3fc23148282dbdf2dd660f140b1cbe4c4750758abf457134087a60f4f527b4f6056628d8ac559d
|
7
|
+
data.tar.gz: a9aa4d8a0dec1fa4e7b5eac85b67965270395ef1fe7af16e3af61c25b8de83d31fe7d10ea41a1387e9606393f8343d8cc6da84f3543f728dd420506be08cb9da
|
data/README.md
CHANGED
@@ -107,6 +107,7 @@ so that these helpers are automatically loaded in production environments.
|
|
107
107
|
| 4.0.0.0 | 4e92eeb | 4.0.0 release (new naming conventions, new icons, IE7 support dropped) |
|
108
108
|
| 4.0.1.0 | c84c8ab | 4.0.1 release (fixed hdd icon and fa-stack alignment) |
|
109
109
|
| 4.0.3.0 | 0373b63 | 4.0.3 release (minor icon renames and updates) |
|
110
|
+
| 4.0.3.1 | 0373b63 | asset pipeline improvements |
|
110
111
|
|
111
112
|
**note on version 0.2.0**: FontAwesome now includes scss and sass files, but
|
112
113
|
when I used them instead of the plain ol css file included in the project, it
|
@@ -117,6 +118,45 @@ staying on the vanilla css file for now.
|
|
117
118
|
|
118
119
|
**Running on Rails 3.1?** Make sure to use version 3.1.1.0 or earlier.
|
119
120
|
|
121
|
+
**Upgrading from 3.*?** FontAwesome now requires the use of the fa class
|
122
|
+
with every icon. Prepend the `fa` class to existing icons:
|
123
|
+
|
124
|
+
```css
|
125
|
+
/* FontAwesome 3 Syntax */
|
126
|
+
<i class="icon-github"></i>
|
127
|
+
|
128
|
+
/* FontAwesome 4 Syntax */
|
129
|
+
<i class="fa fa-github"></i>
|
130
|
+
```
|
131
|
+
|
132
|
+
**Note when deploying to sub-domains**
|
133
|
+
It is sometimes the case that deploying a Rails application to a production
|
134
|
+
environment requires the application to be hosted at a sub-domain on the server.
|
135
|
+
This may be the case, for example, if Apache HTTPD or Nginx is being used as a
|
136
|
+
front-end proxy server, with Rails handling only requests that come in to a sub-domain
|
137
|
+
such as `http://myserver.example.com/myrailsapp`. In this case, the
|
138
|
+
FontAwesome gem (and other asset-serving engines) needs to know the sub-domain,
|
139
|
+
otherwise you can experience a problem roughly described as ["my app works
|
140
|
+
fine in development, but fails when I deploy
|
141
|
+
it"](https://github.com/bokmann/font-awesome-rails/issues/74).
|
142
|
+
|
143
|
+
To fix this, set the *relative URL root* for the application. In the
|
144
|
+
environment file for the deployed version of the app, for example
|
145
|
+
`config/environments/production.rb`,
|
146
|
+
set the config option `action_controller.relative_url_root`:
|
147
|
+
|
148
|
+
MyApp::Application.configure do
|
149
|
+
...
|
150
|
+
|
151
|
+
# set the relative root, because we're deploying to /myrailsapp
|
152
|
+
config.action_controller.relative_url_root = "/myrailsapp"
|
153
|
+
|
154
|
+
...
|
155
|
+
end
|
156
|
+
|
157
|
+
The default value of this variable is taken from `ENV['RAILS_RELATIVE_URL_ROOT']`,
|
158
|
+
so configuring the environment to define `RAILS_RELATIVE_URL_ROOT` is an alternative strategy.
|
159
|
+
|
120
160
|
## License
|
121
161
|
|
122
162
|
* The [Font Awesome](http://fortawesome.github.com/Font-Awesome) font is
|
@@ -4,6 +4,11 @@
|
|
4
4
|
*/
|
5
5
|
/* FONT PATH
|
6
6
|
* -------------------------- */
|
7
|
+
//= depend_on_asset "fontawesome-webfont.eot"
|
8
|
+
//= depend_on_asset "fontawesome-webfont.woff"
|
9
|
+
//= depend_on_asset "fontawesome-webfont.svg"
|
10
|
+
//= depend_on_asset "fontawesome-webfont.ttf"
|
11
|
+
//= depend_on_asset "fontawesome-webfont.woff"
|
7
12
|
@font-face {
|
8
13
|
font-family: 'FontAwesome';
|
9
14
|
src: url('<%= font_path('fontawesome-webfont.eot') %>');
|
data/test/dummy/log/test.log
CHANGED
@@ -87,3 +87,537 @@ Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-11-05 09:41:47 -050
|
|
87
87
|
FontAwesomeRailsTest: test_stylesheets_contain_asset_pipeline_references_to_fonts
|
88
88
|
---------------------------------------------------------------------------------
|
89
89
|
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-11-05 09:41:47 -0500
|
90
|
+
-------------------------------------------------------------------------
|
91
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_html_escape_text
|
92
|
+
-------------------------------------------------------------------------
|
93
|
+
----------------------------------------------------------------------------------
|
94
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_a_text_suffix
|
95
|
+
----------------------------------------------------------------------------------
|
96
|
+
--------------------------------------------------------------------------------------------
|
97
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_additional_class_styles
|
98
|
+
--------------------------------------------------------------------------------------------
|
99
|
+
----------------------------------------------------------------------------------
|
100
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_not_html_escape_safe_text
|
101
|
+
----------------------------------------------------------------------------------
|
102
|
+
---------------------------------------------------------------------------------------
|
103
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pass_all_other_options_through
|
104
|
+
---------------------------------------------------------------------------------------
|
105
|
+
-----------------------------------------------------------------------------
|
106
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pull_it_all_together
|
107
|
+
-----------------------------------------------------------------------------
|
108
|
+
------------------------------------------------------------------------------------------
|
109
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_different_individual_icons
|
110
|
+
------------------------------------------------------------------------------------------
|
111
|
+
------------------------------------------------------------------------------------------
|
112
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_array_modifiers
|
113
|
+
------------------------------------------------------------------------------------------
|
114
|
+
---------------------------------------------------------------------------------------------
|
115
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_multiple_modifiers
|
116
|
+
---------------------------------------------------------------------------------------------
|
117
|
+
----------------------------------------------------------------------------------------
|
118
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_with_no_args_should_render_a_flag_icon
|
119
|
+
----------------------------------------------------------------------------------------
|
120
|
+
-------------------------------------------------------------------------------------------------------
|
121
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_accept_options_for_base_and_main_icons
|
122
|
+
-------------------------------------------------------------------------------------------------------
|
123
|
+
---------------------------------------------------------------------------------
|
124
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_html_escape_text
|
125
|
+
---------------------------------------------------------------------------------
|
126
|
+
----------------------------------------------------------------------------------------------------
|
127
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_incorporate_additional_class_styles
|
128
|
+
----------------------------------------------------------------------------------------------------
|
129
|
+
------------------------------------------------------------------------------------------
|
130
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_not_html_escape_safe_text
|
131
|
+
------------------------------------------------------------------------------------------
|
132
|
+
-----------------------------------------------------------------------------------------------
|
133
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_pass_all_other_options_through
|
134
|
+
-----------------------------------------------------------------------------------------------
|
135
|
+
--------------------------------------------------------------------------------------
|
136
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_render_a_stacked_icon
|
137
|
+
--------------------------------------------------------------------------------------
|
138
|
+
----------------------------------------------------------------------------------
|
139
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_reverse_the_stack
|
140
|
+
----------------------------------------------------------------------------------
|
141
|
+
------------------------------------------------------------------------------------------------
|
142
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_with_no_args_should_render_a_flag_icon
|
143
|
+
------------------------------------------------------------------------------------------------
|
144
|
+
-------------------------------------------
|
145
|
+
FontAwesomeRailsTest: test_engine_is_loaded
|
146
|
+
-------------------------------------------
|
147
|
+
-------------------------------------------
|
148
|
+
FontAwesomeRailsTest: test_fonts_are_served
|
149
|
+
-------------------------------------------
|
150
|
+
Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2013-11-18 11:49:26 -0500
|
151
|
+
Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2013-11-18 11:49:26 -0500
|
152
|
+
Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2013-11-18 11:49:26 -0500
|
153
|
+
------------------------------------------------------------------
|
154
|
+
FontAwesomeRailsTest: test_helpers_should_be_available_in_the_view
|
155
|
+
------------------------------------------------------------------
|
156
|
+
Started GET "/icons" for 127.0.0.1 at 2013-11-18 11:49:26 -0500
|
157
|
+
Processing by PagesController#icons as HTML
|
158
|
+
Completed 200 OK in 8ms (Views: 8.0ms)
|
159
|
+
-----------------------------------------------------------------------------
|
160
|
+
FontAwesomeRailsTest: test_stylesheet_is_available_in_a_css_sprockets_require
|
161
|
+
-----------------------------------------------------------------------------
|
162
|
+
Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2013-11-18 11:49:26 -0500
|
163
|
+
-------------------------------------------------------------------
|
164
|
+
FontAwesomeRailsTest: test_stylesheet_is_available_in_a_sass_import
|
165
|
+
-------------------------------------------------------------------
|
166
|
+
Started GET "/assets/sass-import.css" for 127.0.0.1 at 2013-11-18 11:49:26 -0500
|
167
|
+
-------------------------------------------------------------------
|
168
|
+
FontAwesomeRailsTest: test_stylesheet_is_available_in_a_scss_import
|
169
|
+
-------------------------------------------------------------------
|
170
|
+
Started GET "/assets/scss-import.css" for 127.0.0.1 at 2013-11-18 11:49:27 -0500
|
171
|
+
-------------------------------------------------
|
172
|
+
FontAwesomeRailsTest: test_stylesheets_are_served
|
173
|
+
-------------------------------------------------
|
174
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-11-18 11:49:27 -0500
|
175
|
+
---------------------------------------------------------------------------------
|
176
|
+
FontAwesomeRailsTest: test_stylesheets_contain_asset_pipeline_references_to_fonts
|
177
|
+
---------------------------------------------------------------------------------
|
178
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-11-18 11:49:27 -0500
|
179
|
+
-------------------------------------------------------------------------
|
180
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_html_escape_text
|
181
|
+
-------------------------------------------------------------------------
|
182
|
+
----------------------------------------------------------------------------------
|
183
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_a_text_suffix
|
184
|
+
----------------------------------------------------------------------------------
|
185
|
+
--------------------------------------------------------------------------------------------
|
186
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_additional_class_styles
|
187
|
+
--------------------------------------------------------------------------------------------
|
188
|
+
----------------------------------------------------------------------------------
|
189
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_not_html_escape_safe_text
|
190
|
+
----------------------------------------------------------------------------------
|
191
|
+
---------------------------------------------------------------------------------------
|
192
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pass_all_other_options_through
|
193
|
+
---------------------------------------------------------------------------------------
|
194
|
+
-----------------------------------------------------------------------------
|
195
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pull_it_all_together
|
196
|
+
-----------------------------------------------------------------------------
|
197
|
+
------------------------------------------------------------------------------------------
|
198
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_different_individual_icons
|
199
|
+
------------------------------------------------------------------------------------------
|
200
|
+
------------------------------------------------------------------------------------------
|
201
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_array_modifiers
|
202
|
+
------------------------------------------------------------------------------------------
|
203
|
+
---------------------------------------------------------------------------------------------
|
204
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_multiple_modifiers
|
205
|
+
---------------------------------------------------------------------------------------------
|
206
|
+
----------------------------------------------------------------------------------------
|
207
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_with_no_args_should_render_a_flag_icon
|
208
|
+
----------------------------------------------------------------------------------------
|
209
|
+
-------------------------------------------------------------------------------------------------------
|
210
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_accept_options_for_base_and_main_icons
|
211
|
+
-------------------------------------------------------------------------------------------------------
|
212
|
+
---------------------------------------------------------------------------------
|
213
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_html_escape_text
|
214
|
+
---------------------------------------------------------------------------------
|
215
|
+
----------------------------------------------------------------------------------------------------
|
216
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_incorporate_additional_class_styles
|
217
|
+
----------------------------------------------------------------------------------------------------
|
218
|
+
------------------------------------------------------------------------------------------
|
219
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_not_html_escape_safe_text
|
220
|
+
------------------------------------------------------------------------------------------
|
221
|
+
-----------------------------------------------------------------------------------------------
|
222
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_pass_all_other_options_through
|
223
|
+
-----------------------------------------------------------------------------------------------
|
224
|
+
--------------------------------------------------------------------------------------
|
225
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_render_a_stacked_icon
|
226
|
+
--------------------------------------------------------------------------------------
|
227
|
+
----------------------------------------------------------------------------------
|
228
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_reverse_the_stack
|
229
|
+
----------------------------------------------------------------------------------
|
230
|
+
------------------------------------------------------------------------------------------------
|
231
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_with_no_args_should_render_a_flag_icon
|
232
|
+
------------------------------------------------------------------------------------------------
|
233
|
+
-------------------------------------------
|
234
|
+
FontAwesomeRailsTest: test_engine_is_loaded
|
235
|
+
-------------------------------------------
|
236
|
+
-------------------------------------------
|
237
|
+
FontAwesomeRailsTest: test_fonts_are_served
|
238
|
+
-------------------------------------------
|
239
|
+
Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2014-01-03 12:37:51 -0500
|
240
|
+
Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2014-01-03 12:37:51 -0500
|
241
|
+
Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-01-03 12:37:51 -0500
|
242
|
+
------------------------------------------------------------------
|
243
|
+
FontAwesomeRailsTest: test_helpers_should_be_available_in_the_view
|
244
|
+
------------------------------------------------------------------
|
245
|
+
Started GET "/icons" for 127.0.0.1 at 2014-01-03 12:37:51 -0500
|
246
|
+
Processing by PagesController#icons as HTML
|
247
|
+
Completed 200 OK in 8ms (Views: 7.6ms)
|
248
|
+
-----------------------------------------------------------------------------
|
249
|
+
FontAwesomeRailsTest: test_stylesheet_is_available_in_a_css_sprockets_require
|
250
|
+
-----------------------------------------------------------------------------
|
251
|
+
Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2014-01-03 12:37:51 -0500
|
252
|
+
-------------------------------------------------------------------
|
253
|
+
FontAwesomeRailsTest: test_stylesheet_is_available_in_a_sass_import
|
254
|
+
-------------------------------------------------------------------
|
255
|
+
Started GET "/assets/sass-import.css" for 127.0.0.1 at 2014-01-03 12:37:51 -0500
|
256
|
+
-------------------------------------------------------------------
|
257
|
+
FontAwesomeRailsTest: test_stylesheet_is_available_in_a_scss_import
|
258
|
+
-------------------------------------------------------------------
|
259
|
+
Started GET "/assets/scss-import.css" for 127.0.0.1 at 2014-01-03 12:37:51 -0500
|
260
|
+
-------------------------------------------------
|
261
|
+
FontAwesomeRailsTest: test_stylesheets_are_served
|
262
|
+
-------------------------------------------------
|
263
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-01-03 12:37:51 -0500
|
264
|
+
---------------------------------------------------------------------------------
|
265
|
+
FontAwesomeRailsTest: test_stylesheets_contain_asset_pipeline_references_to_fonts
|
266
|
+
---------------------------------------------------------------------------------
|
267
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-01-03 12:37:51 -0500
|
268
|
+
-------------------------------------------------------------------------
|
269
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_html_escape_text
|
270
|
+
-------------------------------------------------------------------------
|
271
|
+
----------------------------------------------------------------------------------
|
272
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_a_text_suffix
|
273
|
+
----------------------------------------------------------------------------------
|
274
|
+
--------------------------------------------------------------------------------------------
|
275
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_additional_class_styles
|
276
|
+
--------------------------------------------------------------------------------------------
|
277
|
+
----------------------------------------------------------------------------------
|
278
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_not_html_escape_safe_text
|
279
|
+
----------------------------------------------------------------------------------
|
280
|
+
---------------------------------------------------------------------------------------
|
281
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pass_all_other_options_through
|
282
|
+
---------------------------------------------------------------------------------------
|
283
|
+
-----------------------------------------------------------------------------
|
284
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pull_it_all_together
|
285
|
+
-----------------------------------------------------------------------------
|
286
|
+
------------------------------------------------------------------------------------------
|
287
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_different_individual_icons
|
288
|
+
------------------------------------------------------------------------------------------
|
289
|
+
------------------------------------------------------------------------------------------
|
290
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_array_modifiers
|
291
|
+
------------------------------------------------------------------------------------------
|
292
|
+
---------------------------------------------------------------------------------------------
|
293
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_multiple_modifiers
|
294
|
+
---------------------------------------------------------------------------------------------
|
295
|
+
----------------------------------------------------------------------------------------
|
296
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_with_no_args_should_render_a_flag_icon
|
297
|
+
----------------------------------------------------------------------------------------
|
298
|
+
-------------------------------------------------------------------------------------------------------
|
299
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_accept_options_for_base_and_main_icons
|
300
|
+
-------------------------------------------------------------------------------------------------------
|
301
|
+
---------------------------------------------------------------------------------
|
302
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_html_escape_text
|
303
|
+
---------------------------------------------------------------------------------
|
304
|
+
----------------------------------------------------------------------------------------------------
|
305
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_incorporate_additional_class_styles
|
306
|
+
----------------------------------------------------------------------------------------------------
|
307
|
+
------------------------------------------------------------------------------------------
|
308
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_not_html_escape_safe_text
|
309
|
+
------------------------------------------------------------------------------------------
|
310
|
+
-----------------------------------------------------------------------------------------------
|
311
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_pass_all_other_options_through
|
312
|
+
-----------------------------------------------------------------------------------------------
|
313
|
+
--------------------------------------------------------------------------------------
|
314
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_render_a_stacked_icon
|
315
|
+
--------------------------------------------------------------------------------------
|
316
|
+
----------------------------------------------------------------------------------
|
317
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_reverse_the_stack
|
318
|
+
----------------------------------------------------------------------------------
|
319
|
+
------------------------------------------------------------------------------------------------
|
320
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_with_no_args_should_render_a_flag_icon
|
321
|
+
------------------------------------------------------------------------------------------------
|
322
|
+
-------------------------------------------
|
323
|
+
FontAwesomeRailsTest: test_engine_is_loaded
|
324
|
+
-------------------------------------------
|
325
|
+
-------------------------------------------
|
326
|
+
FontAwesomeRailsTest: test_fonts_are_served
|
327
|
+
-------------------------------------------
|
328
|
+
Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2014-01-03 13:26:11 -0500
|
329
|
+
Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2014-01-03 13:26:11 -0500
|
330
|
+
Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-01-03 13:26:11 -0500
|
331
|
+
------------------------------------------------------------------
|
332
|
+
FontAwesomeRailsTest: test_helpers_should_be_available_in_the_view
|
333
|
+
------------------------------------------------------------------
|
334
|
+
Started GET "/icons" for 127.0.0.1 at 2014-01-03 13:26:11 -0500
|
335
|
+
Processing by PagesController#icons as HTML
|
336
|
+
Completed 200 OK in 4ms (Views: 4.0ms)
|
337
|
+
-----------------------------------------------------------------------------
|
338
|
+
FontAwesomeRailsTest: test_stylesheet_is_available_in_a_css_sprockets_require
|
339
|
+
-----------------------------------------------------------------------------
|
340
|
+
Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2014-01-03 13:26:11 -0500
|
341
|
+
-------------------------------------------------------------------
|
342
|
+
FontAwesomeRailsTest: test_stylesheet_is_available_in_a_sass_import
|
343
|
+
-------------------------------------------------------------------
|
344
|
+
Started GET "/assets/sass-import.css" for 127.0.0.1 at 2014-01-03 13:26:11 -0500
|
345
|
+
-------------------------------------------------------------------
|
346
|
+
FontAwesomeRailsTest: test_stylesheet_is_available_in_a_scss_import
|
347
|
+
-------------------------------------------------------------------
|
348
|
+
Started GET "/assets/scss-import.css" for 127.0.0.1 at 2014-01-03 13:26:11 -0500
|
349
|
+
-------------------------------------------------
|
350
|
+
FontAwesomeRailsTest: test_stylesheets_are_served
|
351
|
+
-------------------------------------------------
|
352
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-01-03 13:26:11 -0500
|
353
|
+
---------------------------------------------------------------------------------
|
354
|
+
FontAwesomeRailsTest: test_stylesheets_contain_asset_pipeline_references_to_fonts
|
355
|
+
---------------------------------------------------------------------------------
|
356
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-01-03 13:26:11 -0500
|
357
|
+
-------------------------------------------------------------------------
|
358
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_html_escape_text
|
359
|
+
-------------------------------------------------------------------------
|
360
|
+
----------------------------------------------------------------------------------
|
361
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_a_text_suffix
|
362
|
+
----------------------------------------------------------------------------------
|
363
|
+
--------------------------------------------------------------------------------------------
|
364
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_additional_class_styles
|
365
|
+
--------------------------------------------------------------------------------------------
|
366
|
+
----------------------------------------------------------------------------------
|
367
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_not_html_escape_safe_text
|
368
|
+
----------------------------------------------------------------------------------
|
369
|
+
---------------------------------------------------------------------------------------
|
370
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pass_all_other_options_through
|
371
|
+
---------------------------------------------------------------------------------------
|
372
|
+
-----------------------------------------------------------------------------
|
373
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pull_it_all_together
|
374
|
+
-----------------------------------------------------------------------------
|
375
|
+
------------------------------------------------------------------------------------------
|
376
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_different_individual_icons
|
377
|
+
------------------------------------------------------------------------------------------
|
378
|
+
------------------------------------------------------------------------------------------
|
379
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_array_modifiers
|
380
|
+
------------------------------------------------------------------------------------------
|
381
|
+
---------------------------------------------------------------------------------------------
|
382
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_multiple_modifiers
|
383
|
+
---------------------------------------------------------------------------------------------
|
384
|
+
----------------------------------------------------------------------------------------
|
385
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_with_no_args_should_render_a_flag_icon
|
386
|
+
----------------------------------------------------------------------------------------
|
387
|
+
-------------------------------------------------------------------------------------------------------
|
388
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_accept_options_for_base_and_main_icons
|
389
|
+
-------------------------------------------------------------------------------------------------------
|
390
|
+
---------------------------------------------------------------------------------
|
391
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_html_escape_text
|
392
|
+
---------------------------------------------------------------------------------
|
393
|
+
----------------------------------------------------------------------------------------------------
|
394
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_incorporate_additional_class_styles
|
395
|
+
----------------------------------------------------------------------------------------------------
|
396
|
+
------------------------------------------------------------------------------------------
|
397
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_not_html_escape_safe_text
|
398
|
+
------------------------------------------------------------------------------------------
|
399
|
+
-----------------------------------------------------------------------------------------------
|
400
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_pass_all_other_options_through
|
401
|
+
-----------------------------------------------------------------------------------------------
|
402
|
+
--------------------------------------------------------------------------------------
|
403
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_render_a_stacked_icon
|
404
|
+
--------------------------------------------------------------------------------------
|
405
|
+
----------------------------------------------------------------------------------
|
406
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_reverse_the_stack
|
407
|
+
----------------------------------------------------------------------------------
|
408
|
+
------------------------------------------------------------------------------------------------
|
409
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_with_no_args_should_render_a_flag_icon
|
410
|
+
------------------------------------------------------------------------------------------------
|
411
|
+
-------------------------------------------
|
412
|
+
FontAwesomeRailsTest: test_engine_is_loaded
|
413
|
+
-------------------------------------------
|
414
|
+
-------------------------------------------
|
415
|
+
FontAwesomeRailsTest: test_fonts_are_served
|
416
|
+
-------------------------------------------
|
417
|
+
Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2014-01-03 13:29:32 -0500
|
418
|
+
Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2014-01-03 13:29:32 -0500
|
419
|
+
Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-01-03 13:29:32 -0500
|
420
|
+
------------------------------------------------------------------
|
421
|
+
FontAwesomeRailsTest: test_helpers_should_be_available_in_the_view
|
422
|
+
------------------------------------------------------------------
|
423
|
+
Started GET "/icons" for 127.0.0.1 at 2014-01-03 13:29:32 -0500
|
424
|
+
Processing by PagesController#icons as HTML
|
425
|
+
Completed 200 OK in 4ms (Views: 4.3ms)
|
426
|
+
-----------------------------------------------------------------------------
|
427
|
+
FontAwesomeRailsTest: test_stylesheet_is_available_in_a_css_sprockets_require
|
428
|
+
-----------------------------------------------------------------------------
|
429
|
+
Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2014-01-03 13:29:32 -0500
|
430
|
+
-------------------------------------------------------------------
|
431
|
+
FontAwesomeRailsTest: test_stylesheet_is_available_in_a_sass_import
|
432
|
+
-------------------------------------------------------------------
|
433
|
+
Started GET "/assets/sass-import.css" for 127.0.0.1 at 2014-01-03 13:29:32 -0500
|
434
|
+
-------------------------------------------------------------------
|
435
|
+
FontAwesomeRailsTest: test_stylesheet_is_available_in_a_scss_import
|
436
|
+
-------------------------------------------------------------------
|
437
|
+
Started GET "/assets/scss-import.css" for 127.0.0.1 at 2014-01-03 13:29:32 -0500
|
438
|
+
-------------------------------------------------
|
439
|
+
FontAwesomeRailsTest: test_stylesheets_are_served
|
440
|
+
-------------------------------------------------
|
441
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-01-03 13:29:32 -0500
|
442
|
+
---------------------------------------------------------------------------------
|
443
|
+
FontAwesomeRailsTest: test_stylesheets_contain_asset_pipeline_references_to_fonts
|
444
|
+
---------------------------------------------------------------------------------
|
445
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-01-03 13:29:32 -0500
|
446
|
+
-------------------------------------------------------------------------
|
447
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_html_escape_text
|
448
|
+
-------------------------------------------------------------------------
|
449
|
+
----------------------------------------------------------------------------------
|
450
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_a_text_suffix
|
451
|
+
----------------------------------------------------------------------------------
|
452
|
+
--------------------------------------------------------------------------------------------
|
453
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_additional_class_styles
|
454
|
+
--------------------------------------------------------------------------------------------
|
455
|
+
----------------------------------------------------------------------------------
|
456
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_not_html_escape_safe_text
|
457
|
+
----------------------------------------------------------------------------------
|
458
|
+
---------------------------------------------------------------------------------------
|
459
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pass_all_other_options_through
|
460
|
+
---------------------------------------------------------------------------------------
|
461
|
+
-----------------------------------------------------------------------------
|
462
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pull_it_all_together
|
463
|
+
-----------------------------------------------------------------------------
|
464
|
+
------------------------------------------------------------------------------------------
|
465
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_different_individual_icons
|
466
|
+
------------------------------------------------------------------------------------------
|
467
|
+
------------------------------------------------------------------------------------------
|
468
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_array_modifiers
|
469
|
+
------------------------------------------------------------------------------------------
|
470
|
+
---------------------------------------------------------------------------------------------
|
471
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_multiple_modifiers
|
472
|
+
---------------------------------------------------------------------------------------------
|
473
|
+
----------------------------------------------------------------------------------------
|
474
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_with_no_args_should_render_a_flag_icon
|
475
|
+
----------------------------------------------------------------------------------------
|
476
|
+
-------------------------------------------------------------------------------------------------------
|
477
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_accept_options_for_base_and_main_icons
|
478
|
+
-------------------------------------------------------------------------------------------------------
|
479
|
+
---------------------------------------------------------------------------------
|
480
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_html_escape_text
|
481
|
+
---------------------------------------------------------------------------------
|
482
|
+
----------------------------------------------------------------------------------------------------
|
483
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_incorporate_additional_class_styles
|
484
|
+
----------------------------------------------------------------------------------------------------
|
485
|
+
------------------------------------------------------------------------------------------
|
486
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_not_html_escape_safe_text
|
487
|
+
------------------------------------------------------------------------------------------
|
488
|
+
-----------------------------------------------------------------------------------------------
|
489
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_pass_all_other_options_through
|
490
|
+
-----------------------------------------------------------------------------------------------
|
491
|
+
--------------------------------------------------------------------------------------
|
492
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_render_a_stacked_icon
|
493
|
+
--------------------------------------------------------------------------------------
|
494
|
+
----------------------------------------------------------------------------------
|
495
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_reverse_the_stack
|
496
|
+
----------------------------------------------------------------------------------
|
497
|
+
------------------------------------------------------------------------------------------------
|
498
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_with_no_args_should_render_a_flag_icon
|
499
|
+
------------------------------------------------------------------------------------------------
|
500
|
+
-------------------------------------------
|
501
|
+
FontAwesomeRailsTest: test_engine_is_loaded
|
502
|
+
-------------------------------------------
|
503
|
+
-------------------------------------------
|
504
|
+
FontAwesomeRailsTest: test_fonts_are_served
|
505
|
+
-------------------------------------------
|
506
|
+
Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2014-01-03 13:30:14 -0500
|
507
|
+
Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2014-01-03 13:30:14 -0500
|
508
|
+
Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-01-03 13:30:14 -0500
|
509
|
+
------------------------------------------------------------------
|
510
|
+
FontAwesomeRailsTest: test_helpers_should_be_available_in_the_view
|
511
|
+
------------------------------------------------------------------
|
512
|
+
Started GET "/icons" for 127.0.0.1 at 2014-01-03 13:30:14 -0500
|
513
|
+
Processing by PagesController#icons as HTML
|
514
|
+
Completed 200 OK in 6ms (Views: 6.1ms)
|
515
|
+
-----------------------------------------------------------------------------
|
516
|
+
FontAwesomeRailsTest: test_stylesheet_is_available_in_a_css_sprockets_require
|
517
|
+
-----------------------------------------------------------------------------
|
518
|
+
Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2014-01-03 13:30:14 -0500
|
519
|
+
-------------------------------------------------------------------
|
520
|
+
FontAwesomeRailsTest: test_stylesheet_is_available_in_a_sass_import
|
521
|
+
-------------------------------------------------------------------
|
522
|
+
Started GET "/assets/sass-import.css" for 127.0.0.1 at 2014-01-03 13:30:14 -0500
|
523
|
+
-------------------------------------------------------------------
|
524
|
+
FontAwesomeRailsTest: test_stylesheet_is_available_in_a_scss_import
|
525
|
+
-------------------------------------------------------------------
|
526
|
+
Started GET "/assets/scss-import.css" for 127.0.0.1 at 2014-01-03 13:30:14 -0500
|
527
|
+
-------------------------------------------------
|
528
|
+
FontAwesomeRailsTest: test_stylesheets_are_served
|
529
|
+
-------------------------------------------------
|
530
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-01-03 13:30:15 -0500
|
531
|
+
---------------------------------------------------------------------------------
|
532
|
+
FontAwesomeRailsTest: test_stylesheets_contain_asset_pipeline_references_to_fonts
|
533
|
+
---------------------------------------------------------------------------------
|
534
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-01-03 13:30:15 -0500
|
535
|
+
-------------------------------------------------------------------------
|
536
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_html_escape_text
|
537
|
+
-------------------------------------------------------------------------
|
538
|
+
----------------------------------------------------------------------------------
|
539
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_a_text_suffix
|
540
|
+
----------------------------------------------------------------------------------
|
541
|
+
--------------------------------------------------------------------------------------------
|
542
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_incorporate_additional_class_styles
|
543
|
+
--------------------------------------------------------------------------------------------
|
544
|
+
----------------------------------------------------------------------------------
|
545
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_not_html_escape_safe_text
|
546
|
+
----------------------------------------------------------------------------------
|
547
|
+
---------------------------------------------------------------------------------------
|
548
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pass_all_other_options_through
|
549
|
+
---------------------------------------------------------------------------------------
|
550
|
+
-----------------------------------------------------------------------------
|
551
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_pull_it_all_together
|
552
|
+
-----------------------------------------------------------------------------
|
553
|
+
------------------------------------------------------------------------------------------
|
554
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_different_individual_icons
|
555
|
+
------------------------------------------------------------------------------------------
|
556
|
+
------------------------------------------------------------------------------------------
|
557
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_array_modifiers
|
558
|
+
------------------------------------------------------------------------------------------
|
559
|
+
---------------------------------------------------------------------------------------------
|
560
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_should_render_icons_with_multiple_modifiers
|
561
|
+
---------------------------------------------------------------------------------------------
|
562
|
+
----------------------------------------------------------------------------------------
|
563
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_icon_with_no_args_should_render_a_flag_icon
|
564
|
+
----------------------------------------------------------------------------------------
|
565
|
+
-------------------------------------------------------------------------------------------------------
|
566
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_accept_options_for_base_and_main_icons
|
567
|
+
-------------------------------------------------------------------------------------------------------
|
568
|
+
---------------------------------------------------------------------------------
|
569
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_html_escape_text
|
570
|
+
---------------------------------------------------------------------------------
|
571
|
+
----------------------------------------------------------------------------------------------------
|
572
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_incorporate_additional_class_styles
|
573
|
+
----------------------------------------------------------------------------------------------------
|
574
|
+
------------------------------------------------------------------------------------------
|
575
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_not_html_escape_safe_text
|
576
|
+
------------------------------------------------------------------------------------------
|
577
|
+
-----------------------------------------------------------------------------------------------
|
578
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_pass_all_other_options_through
|
579
|
+
-----------------------------------------------------------------------------------------------
|
580
|
+
--------------------------------------------------------------------------------------
|
581
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_render_a_stacked_icon
|
582
|
+
--------------------------------------------------------------------------------------
|
583
|
+
----------------------------------------------------------------------------------
|
584
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_should_reverse_the_stack
|
585
|
+
----------------------------------------------------------------------------------
|
586
|
+
------------------------------------------------------------------------------------------------
|
587
|
+
FontAwesome::Rails::IconHelperTest: test_#fa_stacked_icon_with_no_args_should_render_a_flag_icon
|
588
|
+
------------------------------------------------------------------------------------------------
|
589
|
+
-------------------------------------------
|
590
|
+
FontAwesomeRailsTest: test_engine_is_loaded
|
591
|
+
-------------------------------------------
|
592
|
+
-------------------------------------------
|
593
|
+
FontAwesomeRailsTest: test_fonts_are_served
|
594
|
+
-------------------------------------------
|
595
|
+
Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2014-01-03 13:32:51 -0500
|
596
|
+
Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2014-01-03 13:32:51 -0500
|
597
|
+
Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-01-03 13:32:51 -0500
|
598
|
+
------------------------------------------------------------------
|
599
|
+
FontAwesomeRailsTest: test_helpers_should_be_available_in_the_view
|
600
|
+
------------------------------------------------------------------
|
601
|
+
Started GET "/icons" for 127.0.0.1 at 2014-01-03 13:32:51 -0500
|
602
|
+
Processing by PagesController#icons as HTML
|
603
|
+
Completed 200 OK in 4ms (Views: 3.8ms)
|
604
|
+
-----------------------------------------------------------------------------
|
605
|
+
FontAwesomeRailsTest: test_stylesheet_is_available_in_a_css_sprockets_require
|
606
|
+
-----------------------------------------------------------------------------
|
607
|
+
Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2014-01-03 13:32:51 -0500
|
608
|
+
-------------------------------------------------------------------
|
609
|
+
FontAwesomeRailsTest: test_stylesheet_is_available_in_a_sass_import
|
610
|
+
-------------------------------------------------------------------
|
611
|
+
Started GET "/assets/sass-import.css" for 127.0.0.1 at 2014-01-03 13:32:51 -0500
|
612
|
+
-------------------------------------------------------------------
|
613
|
+
FontAwesomeRailsTest: test_stylesheet_is_available_in_a_scss_import
|
614
|
+
-------------------------------------------------------------------
|
615
|
+
Started GET "/assets/scss-import.css" for 127.0.0.1 at 2014-01-03 13:32:51 -0500
|
616
|
+
-------------------------------------------------
|
617
|
+
FontAwesomeRailsTest: test_stylesheets_are_served
|
618
|
+
-------------------------------------------------
|
619
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-01-03 13:32:52 -0500
|
620
|
+
---------------------------------------------------------------------------------
|
621
|
+
FontAwesomeRailsTest: test_stylesheets_contain_asset_pipeline_references_to_fonts
|
622
|
+
---------------------------------------------------------------------------------
|
623
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2014-01-03 13:32:52 -0500
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: font-awesome-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.0.3.
|
4
|
+
version: 4.0.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- bokmann
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2014-01-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: railties
|
@@ -129,7 +129,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
129
129
|
version: '0'
|
130
130
|
requirements: []
|
131
131
|
rubyforge_project:
|
132
|
-
rubygems_version: 2.0.
|
132
|
+
rubygems_version: 2.0.14
|
133
133
|
signing_key:
|
134
134
|
specification_version: 4
|
135
135
|
summary: an asset gemification of the font-awesome icon font library
|