font-awesome-rails 3.2.1.3 → 4.0.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +18 -48
- data/app/assets/fonts/FontAwesome.otf +0 -0
- data/app/assets/fonts/fontawesome-webfont.eot +0 -0
- data/app/assets/fonts/fontawesome-webfont.svg +21 -6
- data/app/assets/fonts/fontawesome-webfont.ttf +0 -0
- data/app/assets/fonts/fontawesome-webfont.woff +0 -0
- data/app/assets/stylesheets/font-awesome.css.erb +497 -616
- data/app/helpers/font_awesome/rails/icon_helper.rb +27 -24
- data/lib/font-awesome-rails/version.rb +1 -1
- data/test/dummy/log/test.log +883 -0
- data/test/font_awesome_rails_test.rb +2 -6
- data/test/icon_helper_test.rb +37 -37
- metadata +2 -4
- data/app/assets/stylesheets/font-awesome-ie7.css +0 -1203
- data/app/assets/stylesheets/font-awesome-ie7.min.css +0 -384
@@ -7,28 +7,30 @@ module FontAwesome
|
|
7
7
|
# Examples
|
8
8
|
#
|
9
9
|
# fa_icon "camera-retro"
|
10
|
-
# # => <i class="
|
10
|
+
# # => <i class="fa fa-camera-retro"></i>
|
11
11
|
#
|
12
12
|
# fa_icon "camera-retro", text: "Take a photo"
|
13
|
-
# # => <i class="
|
13
|
+
# # => <i class="fa fa-camera-retro"></i> Take a photo
|
14
14
|
#
|
15
15
|
# fa_icon "camera-retro 2x"
|
16
|
-
# # => <i class="
|
16
|
+
# # => <i class="fa fa-camera-retro fa-2x"></i>
|
17
17
|
# fa_icon ["camera-retro", "4x"]
|
18
|
-
# # => <i class="
|
19
|
-
# fa_icon "spinner spin
|
20
|
-
# # => <i class="
|
18
|
+
# # => <i class="fa fa-camera-retro fa-4x"></i>
|
19
|
+
# fa_icon "spinner spin lg"
|
20
|
+
# # => <i class="fa fa-spinner fa-spin fa-lg">
|
21
21
|
#
|
22
|
-
# fa_icon "quote-left 4x
|
23
|
-
# # => <i class="
|
22
|
+
# fa_icon "quote-left 4x", class: "pull-left"
|
23
|
+
# # => <i class="fa fa-quote-left fa-4x pull-left"></i>
|
24
24
|
#
|
25
25
|
# fa_icon "user", data: { id: 123 }
|
26
|
-
# # => <i class="
|
26
|
+
# # => <i class="fa fa-user" data-id="123"></i>
|
27
27
|
#
|
28
28
|
# content_tag(:li, fa_icon("ok li", text: "Bulleted list item"))
|
29
|
-
# # => <li><i class="
|
29
|
+
# # => <li><i class="fa fa-ok fa-li"></i> Bulleted list item</li>
|
30
30
|
def fa_icon(names = "flag", options = {})
|
31
|
-
classes =
|
31
|
+
classes = ["fa"]
|
32
|
+
classes.concat Private.icon_names(names)
|
33
|
+
classes.concat Array(options.delete(:class))
|
32
34
|
text = options.delete(:text)
|
33
35
|
icon = content_tag(:i, nil, options.merge(:class => classes))
|
34
36
|
Private.icon_join(icon, text)
|
@@ -39,26 +41,27 @@ module FontAwesome
|
|
39
41
|
#
|
40
42
|
# Examples
|
41
43
|
#
|
42
|
-
# fa_stacked_icon "twitter", base: "
|
43
|
-
# # => <span class="
|
44
|
-
# # => <i class="
|
45
|
-
# # => <i class="
|
44
|
+
# fa_stacked_icon "twitter", base: "square-o"
|
45
|
+
# # => <span class="fa-stack">
|
46
|
+
# # => <i class="fa fa-square-o fa-stack-2x"></i>
|
47
|
+
# # => <i class="fa fa-twitter fa-stack-1x"></i>
|
46
48
|
# # => </span>
|
47
49
|
#
|
48
|
-
# fa_stacked_icon "terminal
|
49
|
-
# # => <span class="
|
50
|
-
# # => <i class="
|
51
|
-
# # => <i class="
|
50
|
+
# fa_stacked_icon "terminal inverse", base: "square", class: "pull-right", text: "Hi!"
|
51
|
+
# # => <span class="fa-stack pull-right">
|
52
|
+
# # => <i class="fa fa-square fa-stack-2x"></i>
|
53
|
+
# # => <i class="fa fa-terminal fa-inverse fa-stack-1x"></i>
|
52
54
|
# # => </span> Hi!
|
53
55
|
#
|
54
56
|
# fa_stacked_icon "camera", base: "ban-circle", reverse: true
|
55
|
-
# # => <span class="
|
56
|
-
# # => <i class="
|
57
|
-
# # => <i class="
|
57
|
+
# # => <span class="fa-stack">
|
58
|
+
# # => <i class="fa fa-camera fa-stack-1x"></i>
|
59
|
+
# # => <i class="fa fa-ban-circle fa-stack-2x"></i>
|
58
60
|
# # => </span>
|
59
61
|
def fa_stacked_icon(names = "flag", options = {})
|
60
62
|
classes = Private.icon_names("stack").concat(Array(options.delete(:class)))
|
61
|
-
base_names = Private.array_value(options.delete(:base)).push("stack-
|
63
|
+
base_names = Private.array_value(options.delete(:base) || "square-o").push("stack-2x")
|
64
|
+
names = Private.array_value(names).push("stack-1x")
|
62
65
|
base = fa_icon(base_names, options.delete(:base_options) || {})
|
63
66
|
icon = fa_icon(names, options.delete(:icon_options) || {})
|
64
67
|
icons = [base, icon]
|
@@ -77,7 +80,7 @@ module FontAwesome
|
|
77
80
|
end
|
78
81
|
|
79
82
|
def self.icon_names(names = [])
|
80
|
-
array_value(names).map { |n| "
|
83
|
+
array_value(names).map { |n| "fa-#{n}" }
|
81
84
|
end
|
82
85
|
|
83
86
|
def self.array_value(value = [])
|
data/test/dummy/log/test.log
CHANGED
@@ -4897,3 +4897,886 @@ Compiled font-awesome-ie7.css (0ms) (pid 98969)
|
|
4897
4897
|
Served asset /font-awesome-ie7.css - 200 OK (5ms)
|
4898
4898
|
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-08-06 21:04:11 -0400
|
4899
4899
|
Served asset /font-awesome.css - 200 OK (0ms)
|
4900
|
+
Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2013-10-23 20:00:12 -0400
|
4901
|
+
Served asset /fontawesome-webfont.eot - 200 OK (3ms)
|
4902
|
+
Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2013-10-23 20:00:12 -0400
|
4903
|
+
Served asset /fontawesome-webfont.ttf - 200 OK (3ms)
|
4904
|
+
Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2013-10-23 20:00:12 -0400
|
4905
|
+
Served asset /fontawesome-webfont.woff - 200 OK (3ms)
|
4906
|
+
Started GET "/icons" for 127.0.0.1 at 2013-10-23 20:00:12 -0400
|
4907
|
+
Processing by PagesController#icons as HTML
|
4908
|
+
Completed 200 OK in 7ms (Views: 7.1ms)
|
4909
|
+
Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2013-10-23 20:00:13 -0400
|
4910
|
+
Compiled font-awesome.css (14ms) (pid 1655)
|
4911
|
+
Compiled sprockets-require.css (17ms) (pid 1655)
|
4912
|
+
Served asset /sprockets-require.css - 200 OK (24ms)
|
4913
|
+
Started GET "/assets/sass-import.css" for 127.0.0.1 at 2013-10-23 20:00:13 -0400
|
4914
|
+
Compiled font-awesome.css (17ms) (pid 1655)
|
4915
|
+
Compiled sass-import.css (238ms) (pid 1655)
|
4916
|
+
Served asset /sass-import.css - 200 OK (244ms)
|
4917
|
+
Started GET "/assets/scss-import.css" for 127.0.0.1 at 2013-10-23 20:00:13 -0400
|
4918
|
+
Compiled font-awesome.css (15ms) (pid 1655)
|
4919
|
+
Compiled scss-import.css (225ms) (pid 1655)
|
4920
|
+
Served asset /scss-import.css - 200 OK (232ms)
|
4921
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:00:13 -0400
|
4922
|
+
Compiled font-awesome.css (14ms) (pid 1655)
|
4923
|
+
Served asset /font-awesome.css - 200 OK (20ms)
|
4924
|
+
Started GET "/assets/font-awesome-ie7.min.css" for 127.0.0.1 at 2013-10-23 20:00:13 -0400
|
4925
|
+
Served asset /font-awesome-ie7.min.css - 404 Not Found (2ms)
|
4926
|
+
|
4927
|
+
ActionController::RoutingError (No route matches [GET] "/assets/font-awesome-ie7.min.css"):
|
4928
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
4929
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
4930
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
4931
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
4932
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
4933
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
4934
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
4935
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
4936
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
4937
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
4938
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
4939
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
4940
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
4941
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
4942
|
+
rack-test (0.6.2) lib/rack/mock_session.rb:30:in `request'
|
4943
|
+
rack-test (0.6.2) lib/rack/test.rb:230:in `process_request'
|
4944
|
+
rack-test (0.6.2) lib/rack/test.rb:123:in `request'
|
4945
|
+
actionpack (3.2.13) lib/action_dispatch/testing/integration.rb:299:in `process'
|
4946
|
+
actionpack (3.2.13) lib/action_dispatch/testing/integration.rb:33:in `get'
|
4947
|
+
actionpack (3.2.13) lib/action_dispatch/testing/integration.rb:333:in `block (2 levels) in <module:Runner>'
|
4948
|
+
/Users/rmcgeary/work/oss/font-awesome-rails/test/font_awesome_rails_test.rb:22:in `block in <class:FontAwesomeRailsTest>'
|
4949
|
+
activesupport (3.2.13) lib/active_support/testing/setup_and_teardown.rb:72:in `block in run'
|
4950
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:425:in `_run__3619980088026668335__setup__3040104335814167833__callbacks'
|
4951
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
4952
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_setup_callbacks'
|
4953
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
4954
|
+
activesupport (3.2.13) lib/active_support/testing/setup_and_teardown.rb:70:in `run'
|
4955
|
+
test-unit (2.5.5) lib/test/unit/testsuite.rb:121:in `run_test'
|
4956
|
+
test-unit (2.5.5) lib/test/unit/testsuite.rb:53:in `run'
|
4957
|
+
test-unit (2.5.5) lib/test/unit/testsuite.rb:121:in `run_test'
|
4958
|
+
test-unit (2.5.5) lib/test/unit/testsuite.rb:53:in `run'
|
4959
|
+
test-unit (2.5.5) lib/test/unit/testsuite.rb:121:in `run_test'
|
4960
|
+
test-unit (2.5.5) lib/test/unit/testsuite.rb:53:in `run'
|
4961
|
+
test-unit (2.5.5) lib/test/unit/ui/testrunnermediator.rb:65:in `run_suite'
|
4962
|
+
test-unit (2.5.5) lib/test/unit/ui/testrunnermediator.rb:44:in `block in run'
|
4963
|
+
test-unit (2.5.5) lib/test/unit/ui/testrunnermediator.rb:100:in `with_listener'
|
4964
|
+
test-unit (2.5.5) lib/test/unit/ui/testrunnermediator.rb:40:in `run'
|
4965
|
+
test-unit (2.5.5) lib/test/unit/ui/testrunner.rb:40:in `start_mediator'
|
4966
|
+
test-unit (2.5.5) lib/test/unit/ui/testrunner.rb:25:in `start'
|
4967
|
+
test-unit (2.5.5) lib/test/unit/ui/testrunnerutilities.rb:24:in `run'
|
4968
|
+
test-unit (2.5.5) lib/test/unit/autorunner.rb:409:in `block in run'
|
4969
|
+
test-unit (2.5.5) lib/test/unit/autorunner.rb:465:in `change_work_directory'
|
4970
|
+
test-unit (2.5.5) lib/test/unit/autorunner.rb:408:in `run'
|
4971
|
+
test-unit (2.5.5) lib/test/unit/autorunner.rb:59:in `run'
|
4972
|
+
test-unit (2.5.5) lib/test/unit.rb:502:in `block (2 levels) in <top (required)>'
|
4973
|
+
|
4974
|
+
|
4975
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:00:13 -0400
|
4976
|
+
Served asset /font-awesome.css - 200 OK (0ms)
|
4977
|
+
Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2013-10-23 20:01:03 -0400
|
4978
|
+
Served asset /fontawesome-webfont.eot - 200 OK (3ms)
|
4979
|
+
Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2013-10-23 20:01:03 -0400
|
4980
|
+
Served asset /fontawesome-webfont.ttf - 200 OK (4ms)
|
4981
|
+
Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2013-10-23 20:01:03 -0400
|
4982
|
+
Served asset /fontawesome-webfont.woff - 200 OK (4ms)
|
4983
|
+
Started GET "/icons" for 127.0.0.1 at 2013-10-23 20:01:03 -0400
|
4984
|
+
Processing by PagesController#icons as HTML
|
4985
|
+
Completed 200 OK in 6ms (Views: 5.4ms)
|
4986
|
+
Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2013-10-23 20:01:03 -0400
|
4987
|
+
Compiled font-awesome.css (32ms) (pid 2015)
|
4988
|
+
Compiled sprockets-require.css (38ms) (pid 2015)
|
4989
|
+
Served asset /sprockets-require.css - 200 OK (49ms)
|
4990
|
+
Started GET "/assets/sass-import.css" for 127.0.0.1 at 2013-10-23 20:01:03 -0400
|
4991
|
+
Compiled font-awesome.css (16ms) (pid 2015)
|
4992
|
+
Compiled sass-import.css (220ms) (pid 2015)
|
4993
|
+
Served asset /sass-import.css - 200 OK (228ms)
|
4994
|
+
Started GET "/assets/scss-import.css" for 127.0.0.1 at 2013-10-23 20:01:04 -0400
|
4995
|
+
Compiled font-awesome.css (16ms) (pid 2015)
|
4996
|
+
Compiled scss-import.css (227ms) (pid 2015)
|
4997
|
+
Served asset /scss-import.css - 200 OK (235ms)
|
4998
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:01:04 -0400
|
4999
|
+
Compiled font-awesome.css (14ms) (pid 2015)
|
5000
|
+
Served asset /font-awesome.css - 200 OK (20ms)
|
5001
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:01:04 -0400
|
5002
|
+
Served asset /font-awesome.css - 200 OK (0ms)
|
5003
|
+
Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2013-10-23 20:01:55 -0400
|
5004
|
+
Served asset /fontawesome-webfont.eot - 200 OK (3ms)
|
5005
|
+
Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2013-10-23 20:01:55 -0400
|
5006
|
+
Served asset /fontawesome-webfont.ttf - 200 OK (4ms)
|
5007
|
+
Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2013-10-23 20:01:55 -0400
|
5008
|
+
Served asset /fontawesome-webfont.woff - 200 OK (4ms)
|
5009
|
+
Started GET "/icons" for 127.0.0.1 at 2013-10-23 20:01:55 -0400
|
5010
|
+
Processing by PagesController#icons as HTML
|
5011
|
+
Completed 200 OK in 6ms (Views: 6.0ms)
|
5012
|
+
Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2013-10-23 20:01:55 -0400
|
5013
|
+
Compiled font-awesome.css (22ms) (pid 2228)
|
5014
|
+
Compiled sprockets-require.css (27ms) (pid 2228)
|
5015
|
+
Served asset /sprockets-require.css - 200 OK (35ms)
|
5016
|
+
Started GET "/assets/sass-import.css" for 127.0.0.1 at 2013-10-23 20:01:55 -0400
|
5017
|
+
Compiled font-awesome.css (14ms) (pid 2228)
|
5018
|
+
Compiled sass-import.css (216ms) (pid 2228)
|
5019
|
+
Served asset /sass-import.css - 200 OK (225ms)
|
5020
|
+
Started GET "/assets/scss-import.css" for 127.0.0.1 at 2013-10-23 20:01:55 -0400
|
5021
|
+
Compiled font-awesome.css (16ms) (pid 2228)
|
5022
|
+
Compiled scss-import.css (245ms) (pid 2228)
|
5023
|
+
Served asset /scss-import.css - 200 OK (252ms)
|
5024
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:01:56 -0400
|
5025
|
+
Compiled font-awesome.css (14ms) (pid 2228)
|
5026
|
+
Served asset /font-awesome.css - 200 OK (20ms)
|
5027
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:01:56 -0400
|
5028
|
+
Served asset /font-awesome.css - 200 OK (0ms)
|
5029
|
+
Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2013-10-23 20:03:53 -0400
|
5030
|
+
Served asset /fontawesome-webfont.eot - 200 OK (3ms)
|
5031
|
+
Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2013-10-23 20:03:53 -0400
|
5032
|
+
Served asset /fontawesome-webfont.ttf - 200 OK (5ms)
|
5033
|
+
Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2013-10-23 20:03:53 -0400
|
5034
|
+
Served asset /fontawesome-webfont.woff - 200 OK (4ms)
|
5035
|
+
Started GET "/icons" for 127.0.0.1 at 2013-10-23 20:03:53 -0400
|
5036
|
+
Processing by PagesController#icons as HTML
|
5037
|
+
Completed 200 OK in 4ms (Views: 4.3ms)
|
5038
|
+
Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2013-10-23 20:03:53 -0400
|
5039
|
+
Compiled font-awesome.css (13ms) (pid 2459)
|
5040
|
+
Compiled sprockets-require.css (17ms) (pid 2459)
|
5041
|
+
Served asset /sprockets-require.css - 200 OK (23ms)
|
5042
|
+
Started GET "/assets/sass-import.css" for 127.0.0.1 at 2013-10-23 20:03:53 -0400
|
5043
|
+
Compiled font-awesome.css (13ms) (pid 2459)
|
5044
|
+
Compiled sass-import.css (211ms) (pid 2459)
|
5045
|
+
Served asset /sass-import.css - 200 OK (218ms)
|
5046
|
+
Started GET "/assets/scss-import.css" for 127.0.0.1 at 2013-10-23 20:03:53 -0400
|
5047
|
+
Compiled font-awesome.css (18ms) (pid 2459)
|
5048
|
+
Compiled scss-import.css (233ms) (pid 2459)
|
5049
|
+
Served asset /scss-import.css - 200 OK (240ms)
|
5050
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:03:53 -0400
|
5051
|
+
Compiled font-awesome.css (14ms) (pid 2459)
|
5052
|
+
Served asset /font-awesome.css - 200 OK (20ms)
|
5053
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:03:53 -0400
|
5054
|
+
Served asset /font-awesome.css - 200 OK (0ms)
|
5055
|
+
Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2013-10-23 20:08:39 -0400
|
5056
|
+
Served asset /fontawesome-webfont.eot - 200 OK (3ms)
|
5057
|
+
Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2013-10-23 20:08:39 -0400
|
5058
|
+
Served asset /fontawesome-webfont.ttf - 200 OK (4ms)
|
5059
|
+
Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2013-10-23 20:08:39 -0400
|
5060
|
+
Served asset /fontawesome-webfont.woff - 200 OK (4ms)
|
5061
|
+
Started GET "/icons" for 127.0.0.1 at 2013-10-23 20:08:39 -0400
|
5062
|
+
Processing by PagesController#icons as HTML
|
5063
|
+
Completed 200 OK in 6ms (Views: 5.4ms)
|
5064
|
+
Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2013-10-23 20:08:39 -0400
|
5065
|
+
Compiled font-awesome.css (13ms) (pid 2700)
|
5066
|
+
Compiled sprockets-require.css (17ms) (pid 2700)
|
5067
|
+
Served asset /sprockets-require.css - 200 OK (23ms)
|
5068
|
+
Started GET "/assets/sass-import.css" for 127.0.0.1 at 2013-10-23 20:08:39 -0400
|
5069
|
+
Compiled font-awesome.css (17ms) (pid 2700)
|
5070
|
+
Compiled sass-import.css (210ms) (pid 2700)
|
5071
|
+
Served asset /sass-import.css - 200 OK (218ms)
|
5072
|
+
Started GET "/assets/scss-import.css" for 127.0.0.1 at 2013-10-23 20:08:39 -0400
|
5073
|
+
Compiled font-awesome.css (14ms) (pid 2700)
|
5074
|
+
Compiled scss-import.css (243ms) (pid 2700)
|
5075
|
+
Served asset /scss-import.css - 200 OK (250ms)
|
5076
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:08:40 -0400
|
5077
|
+
Compiled font-awesome.css (15ms) (pid 2700)
|
5078
|
+
Served asset /font-awesome.css - 200 OK (21ms)
|
5079
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:08:40 -0400
|
5080
|
+
Served asset /font-awesome.css - 200 OK (0ms)
|
5081
|
+
Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2013-10-23 20:10:38 -0400
|
5082
|
+
Served asset /fontawesome-webfont.eot - 200 OK (3ms)
|
5083
|
+
Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2013-10-23 20:10:38 -0400
|
5084
|
+
Served asset /fontawesome-webfont.ttf - 200 OK (4ms)
|
5085
|
+
Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2013-10-23 20:10:38 -0400
|
5086
|
+
Served asset /fontawesome-webfont.woff - 200 OK (4ms)
|
5087
|
+
Started GET "/icons" for 127.0.0.1 at 2013-10-23 20:10:38 -0400
|
5088
|
+
Processing by PagesController#icons as HTML
|
5089
|
+
Completed 200 OK in 5ms (Views: 4.4ms)
|
5090
|
+
Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2013-10-23 20:10:38 -0400
|
5091
|
+
Compiled font-awesome.css (14ms) (pid 3125)
|
5092
|
+
Compiled sprockets-require.css (18ms) (pid 3125)
|
5093
|
+
Served asset /sprockets-require.css - 200 OK (26ms)
|
5094
|
+
Started GET "/assets/sass-import.css" for 127.0.0.1 at 2013-10-23 20:10:38 -0400
|
5095
|
+
Compiled font-awesome.css (15ms) (pid 3125)
|
5096
|
+
Compiled sass-import.css (216ms) (pid 3125)
|
5097
|
+
Served asset /sass-import.css - 200 OK (222ms)
|
5098
|
+
Started GET "/assets/scss-import.css" for 127.0.0.1 at 2013-10-23 20:10:38 -0400
|
5099
|
+
Compiled font-awesome.css (14ms) (pid 3125)
|
5100
|
+
Compiled scss-import.css (229ms) (pid 3125)
|
5101
|
+
Served asset /scss-import.css - 200 OK (237ms)
|
5102
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:10:38 -0400
|
5103
|
+
Compiled font-awesome.css (14ms) (pid 3125)
|
5104
|
+
Served asset /font-awesome.css - 200 OK (21ms)
|
5105
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:10:38 -0400
|
5106
|
+
Served asset /font-awesome.css - 200 OK (0ms)
|
5107
|
+
Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2013-10-23 20:11:21 -0400
|
5108
|
+
Served asset /fontawesome-webfont.eot - 200 OK (3ms)
|
5109
|
+
Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2013-10-23 20:11:21 -0400
|
5110
|
+
Served asset /fontawesome-webfont.ttf - 200 OK (4ms)
|
5111
|
+
Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2013-10-23 20:11:21 -0400
|
5112
|
+
Served asset /fontawesome-webfont.woff - 200 OK (4ms)
|
5113
|
+
Started GET "/icons" for 127.0.0.1 at 2013-10-23 20:11:21 -0400
|
5114
|
+
Processing by PagesController#icons as HTML
|
5115
|
+
Completed 200 OK in 5ms (Views: 4.4ms)
|
5116
|
+
Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2013-10-23 20:11:22 -0400
|
5117
|
+
Compiled font-awesome.css (14ms) (pid 3334)
|
5118
|
+
Compiled sprockets-require.css (18ms) (pid 3334)
|
5119
|
+
Served asset /sprockets-require.css - 200 OK (24ms)
|
5120
|
+
Started GET "/assets/sass-import.css" for 127.0.0.1 at 2013-10-23 20:11:22 -0400
|
5121
|
+
Compiled font-awesome.css (16ms) (pid 3334)
|
5122
|
+
Compiled sass-import.css (208ms) (pid 3334)
|
5123
|
+
Served asset /sass-import.css - 200 OK (216ms)
|
5124
|
+
Started GET "/assets/scss-import.css" for 127.0.0.1 at 2013-10-23 20:11:22 -0400
|
5125
|
+
Compiled font-awesome.css (17ms) (pid 3334)
|
5126
|
+
Compiled scss-import.css (230ms) (pid 3334)
|
5127
|
+
Served asset /scss-import.css - 200 OK (238ms)
|
5128
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:11:22 -0400
|
5129
|
+
Compiled font-awesome.css (15ms) (pid 3334)
|
5130
|
+
Served asset /font-awesome.css - 200 OK (22ms)
|
5131
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:11:22 -0400
|
5132
|
+
Served asset /font-awesome.css - 200 OK (0ms)
|
5133
|
+
Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2013-10-23 20:13:14 -0400
|
5134
|
+
Served asset /fontawesome-webfont.eot - 200 OK (3ms)
|
5135
|
+
Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2013-10-23 20:13:14 -0400
|
5136
|
+
Served asset /fontawesome-webfont.ttf - 200 OK (5ms)
|
5137
|
+
Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2013-10-23 20:13:14 -0400
|
5138
|
+
Served asset /fontawesome-webfont.woff - 200 OK (4ms)
|
5139
|
+
Started GET "/icons" for 127.0.0.1 at 2013-10-23 20:13:14 -0400
|
5140
|
+
Processing by PagesController#icons as HTML
|
5141
|
+
Completed 200 OK in 5ms (Views: 4.9ms)
|
5142
|
+
Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2013-10-23 20:13:14 -0400
|
5143
|
+
Compiled font-awesome.css (19ms) (pid 3551)
|
5144
|
+
Compiled sprockets-require.css (22ms) (pid 3551)
|
5145
|
+
Served asset /sprockets-require.css - 200 OK (29ms)
|
5146
|
+
Started GET "/assets/sass-import.css" for 127.0.0.1 at 2013-10-23 20:13:14 -0400
|
5147
|
+
Compiled font-awesome.css (14ms) (pid 3551)
|
5148
|
+
Compiled sass-import.css (207ms) (pid 3551)
|
5149
|
+
Served asset /sass-import.css - 200 OK (215ms)
|
5150
|
+
Started GET "/assets/scss-import.css" for 127.0.0.1 at 2013-10-23 20:13:14 -0400
|
5151
|
+
Compiled font-awesome.css (15ms) (pid 3551)
|
5152
|
+
Compiled scss-import.css (229ms) (pid 3551)
|
5153
|
+
Served asset /scss-import.css - 200 OK (236ms)
|
5154
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:13:14 -0400
|
5155
|
+
Compiled font-awesome.css (14ms) (pid 3551)
|
5156
|
+
Served asset /font-awesome.css - 200 OK (20ms)
|
5157
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:13:14 -0400
|
5158
|
+
Served asset /font-awesome.css - 200 OK (0ms)
|
5159
|
+
Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2013-10-23 20:14:50 -0400
|
5160
|
+
Served asset /fontawesome-webfont.eot - 200 OK (3ms)
|
5161
|
+
Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2013-10-23 20:14:50 -0400
|
5162
|
+
Served asset /fontawesome-webfont.ttf - 200 OK (4ms)
|
5163
|
+
Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2013-10-23 20:14:50 -0400
|
5164
|
+
Served asset /fontawesome-webfont.woff - 200 OK (4ms)
|
5165
|
+
Started GET "/icons" for 127.0.0.1 at 2013-10-23 20:14:50 -0400
|
5166
|
+
Processing by PagesController#icons as HTML
|
5167
|
+
Completed 200 OK in 5ms (Views: 4.5ms)
|
5168
|
+
Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2013-10-23 20:14:50 -0400
|
5169
|
+
Compiled font-awesome.css (13ms) (pid 3765)
|
5170
|
+
Compiled sprockets-require.css (16ms) (pid 3765)
|
5171
|
+
Served asset /sprockets-require.css - 200 OK (25ms)
|
5172
|
+
Started GET "/assets/sass-import.css" for 127.0.0.1 at 2013-10-23 20:14:50 -0400
|
5173
|
+
Compiled font-awesome.css (13ms) (pid 3765)
|
5174
|
+
Compiled sass-import.css (209ms) (pid 3765)
|
5175
|
+
Served asset /sass-import.css - 200 OK (218ms)
|
5176
|
+
Started GET "/assets/scss-import.css" for 127.0.0.1 at 2013-10-23 20:14:50 -0400
|
5177
|
+
Compiled font-awesome.css (18ms) (pid 3765)
|
5178
|
+
Compiled scss-import.css (237ms) (pid 3765)
|
5179
|
+
Served asset /scss-import.css - 200 OK (244ms)
|
5180
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:14:50 -0400
|
5181
|
+
Compiled font-awesome.css (15ms) (pid 3765)
|
5182
|
+
Served asset /font-awesome.css - 200 OK (23ms)
|
5183
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:14:50 -0400
|
5184
|
+
Served asset /font-awesome.css - 200 OK (0ms)
|
5185
|
+
Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2013-10-23 20:15:37 -0400
|
5186
|
+
Served asset /fontawesome-webfont.eot - 200 OK (5ms)
|
5187
|
+
Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2013-10-23 20:15:37 -0400
|
5188
|
+
Served asset /fontawesome-webfont.ttf - 200 OK (6ms)
|
5189
|
+
Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2013-10-23 20:15:37 -0400
|
5190
|
+
Served asset /fontawesome-webfont.woff - 200 OK (5ms)
|
5191
|
+
Started GET "/icons" for 127.0.0.1 at 2013-10-23 20:15:37 -0400
|
5192
|
+
Processing by PagesController#icons as HTML
|
5193
|
+
Completed 200 OK in 8ms (Views: 7.5ms)
|
5194
|
+
Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2013-10-23 20:15:37 -0400
|
5195
|
+
Compiled font-awesome.css (14ms) (pid 3978)
|
5196
|
+
Compiled sprockets-require.css (18ms) (pid 3978)
|
5197
|
+
Served asset /sprockets-require.css - 200 OK (25ms)
|
5198
|
+
Started GET "/assets/sass-import.css" for 127.0.0.1 at 2013-10-23 20:15:37 -0400
|
5199
|
+
Compiled font-awesome.css (16ms) (pid 3978)
|
5200
|
+
Compiled sass-import.css (261ms) (pid 3978)
|
5201
|
+
Served asset /sass-import.css - 200 OK (267ms)
|
5202
|
+
Started GET "/assets/scss-import.css" for 127.0.0.1 at 2013-10-23 20:15:37 -0400
|
5203
|
+
Compiled font-awesome.css (15ms) (pid 3978)
|
5204
|
+
Compiled scss-import.css (245ms) (pid 3978)
|
5205
|
+
Served asset /scss-import.css - 200 OK (251ms)
|
5206
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:15:38 -0400
|
5207
|
+
Compiled font-awesome.css (16ms) (pid 3978)
|
5208
|
+
Served asset /font-awesome.css - 200 OK (22ms)
|
5209
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:15:38 -0400
|
5210
|
+
Served asset /font-awesome.css - 200 OK (0ms)
|
5211
|
+
Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2013-10-23 20:25:57 -0400
|
5212
|
+
Served asset /fontawesome-webfont.eot - 200 OK (5ms)
|
5213
|
+
Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2013-10-23 20:25:57 -0400
|
5214
|
+
Served asset /fontawesome-webfont.ttf - 200 OK (2ms)
|
5215
|
+
Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2013-10-23 20:25:57 -0400
|
5216
|
+
Served asset /fontawesome-webfont.woff - 200 OK (4ms)
|
5217
|
+
Started GET "/icons" for 127.0.0.1 at 2013-10-23 20:25:57 -0400
|
5218
|
+
Processing by PagesController#icons as HTML
|
5219
|
+
Completed 200 OK in 5ms (Views: 4.4ms)
|
5220
|
+
Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2013-10-23 20:25:58 -0400
|
5221
|
+
Compiled font-awesome.css (16ms) (pid 4272)
|
5222
|
+
Compiled sprockets-require.css (21ms) (pid 4272)
|
5223
|
+
Served asset /sprockets-require.css - 200 OK (28ms)
|
5224
|
+
Started GET "/assets/sass-import.css" for 127.0.0.1 at 2013-10-23 20:25:58 -0400
|
5225
|
+
Compiled font-awesome.css (17ms) (pid 4272)
|
5226
|
+
Compiled sass-import.css (256ms) (pid 4272)
|
5227
|
+
Served asset /sass-import.css - 200 OK (264ms)
|
5228
|
+
Started GET "/assets/scss-import.css" for 127.0.0.1 at 2013-10-23 20:25:58 -0400
|
5229
|
+
Compiled font-awesome.css (16ms) (pid 4272)
|
5230
|
+
Compiled scss-import.css (255ms) (pid 4272)
|
5231
|
+
Served asset /scss-import.css - 200 OK (264ms)
|
5232
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:25:58 -0400
|
5233
|
+
Compiled font-awesome.css (15ms) (pid 4272)
|
5234
|
+
Served asset /font-awesome.css - 200 OK (21ms)
|
5235
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:25:58 -0400
|
5236
|
+
Served asset /font-awesome.css - 200 OK (0ms)
|
5237
|
+
Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2013-10-23 20:27:06 -0400
|
5238
|
+
Served asset /fontawesome-webfont.eot - 200 OK (3ms)
|
5239
|
+
Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2013-10-23 20:27:06 -0400
|
5240
|
+
Served asset /fontawesome-webfont.ttf - 200 OK (2ms)
|
5241
|
+
Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2013-10-23 20:27:06 -0400
|
5242
|
+
Served asset /fontawesome-webfont.woff - 200 OK (4ms)
|
5243
|
+
Started GET "/icons" for 127.0.0.1 at 2013-10-23 20:27:06 -0400
|
5244
|
+
Processing by PagesController#icons as HTML
|
5245
|
+
Completed 200 OK in 5ms (Views: 5.2ms)
|
5246
|
+
Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2013-10-23 20:27:06 -0400
|
5247
|
+
Compiled font-awesome.css (13ms) (pid 4484)
|
5248
|
+
Compiled sprockets-require.css (16ms) (pid 4484)
|
5249
|
+
Served asset /sprockets-require.css - 200 OK (22ms)
|
5250
|
+
Started GET "/assets/sass-import.css" for 127.0.0.1 at 2013-10-23 20:27:06 -0400
|
5251
|
+
Compiled font-awesome.css (13ms) (pid 4484)
|
5252
|
+
Compiled sass-import.css (202ms) (pid 4484)
|
5253
|
+
Served asset /sass-import.css - 200 OK (210ms)
|
5254
|
+
Started GET "/assets/scss-import.css" for 127.0.0.1 at 2013-10-23 20:27:06 -0400
|
5255
|
+
Compiled font-awesome.css (15ms) (pid 4484)
|
5256
|
+
Compiled scss-import.css (223ms) (pid 4484)
|
5257
|
+
Served asset /scss-import.css - 200 OK (231ms)
|
5258
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:27:06 -0400
|
5259
|
+
Compiled font-awesome.css (14ms) (pid 4484)
|
5260
|
+
Served asset /font-awesome.css - 200 OK (20ms)
|
5261
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:27:06 -0400
|
5262
|
+
Served asset /font-awesome.css - 200 OK (0ms)
|
5263
|
+
Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2013-10-23 20:29:13 -0400
|
5264
|
+
Served asset /fontawesome-webfont.eot - 200 OK (3ms)
|
5265
|
+
Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2013-10-23 20:29:13 -0400
|
5266
|
+
Served asset /fontawesome-webfont.ttf - 200 OK (4ms)
|
5267
|
+
Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2013-10-23 20:29:13 -0400
|
5268
|
+
Served asset /fontawesome-webfont.woff - 200 OK (4ms)
|
5269
|
+
Started GET "/icons" for 127.0.0.1 at 2013-10-23 20:29:13 -0400
|
5270
|
+
Processing by PagesController#icons as HTML
|
5271
|
+
Completed 200 OK in 5ms (Views: 4.5ms)
|
5272
|
+
Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2013-10-23 20:29:13 -0400
|
5273
|
+
Compiled font-awesome.css (14ms) (pid 4710)
|
5274
|
+
Compiled sprockets-require.css (18ms) (pid 4710)
|
5275
|
+
Served asset /sprockets-require.css - 200 OK (24ms)
|
5276
|
+
Started GET "/assets/sass-import.css" for 127.0.0.1 at 2013-10-23 20:29:13 -0400
|
5277
|
+
Compiled font-awesome.css (16ms) (pid 4710)
|
5278
|
+
Compiled sass-import.css (204ms) (pid 4710)
|
5279
|
+
Served asset /sass-import.css - 200 OK (212ms)
|
5280
|
+
Started GET "/assets/scss-import.css" for 127.0.0.1 at 2013-10-23 20:29:13 -0400
|
5281
|
+
Compiled font-awesome.css (15ms) (pid 4710)
|
5282
|
+
Compiled scss-import.css (217ms) (pid 4710)
|
5283
|
+
Served asset /scss-import.css - 200 OK (225ms)
|
5284
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:29:13 -0400
|
5285
|
+
Compiled font-awesome.css (15ms) (pid 4710)
|
5286
|
+
Served asset /font-awesome.css - 200 OK (21ms)
|
5287
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:29:14 -0400
|
5288
|
+
Served asset /font-awesome.css - 200 OK (0ms)
|
5289
|
+
Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2013-10-23 20:29:30 -0400
|
5290
|
+
Served asset /fontawesome-webfont.eot - 200 OK (3ms)
|
5291
|
+
Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2013-10-23 20:29:30 -0400
|
5292
|
+
Served asset /fontawesome-webfont.ttf - 200 OK (2ms)
|
5293
|
+
Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2013-10-23 20:29:30 -0400
|
5294
|
+
Served asset /fontawesome-webfont.woff - 200 OK (5ms)
|
5295
|
+
Started GET "/icons" for 127.0.0.1 at 2013-10-23 20:29:30 -0400
|
5296
|
+
Processing by PagesController#icons as HTML
|
5297
|
+
Completed 200 OK in 5ms (Views: 4.7ms)
|
5298
|
+
Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2013-10-23 20:29:30 -0400
|
5299
|
+
Compiled font-awesome.css (15ms) (pid 4916)
|
5300
|
+
Compiled sprockets-require.css (20ms) (pid 4916)
|
5301
|
+
Served asset /sprockets-require.css - 200 OK (29ms)
|
5302
|
+
Started GET "/assets/sass-import.css" for 127.0.0.1 at 2013-10-23 20:29:30 -0400
|
5303
|
+
Compiled font-awesome.css (13ms) (pid 4916)
|
5304
|
+
Compiled sass-import.css (202ms) (pid 4916)
|
5305
|
+
Served asset /sass-import.css - 200 OK (210ms)
|
5306
|
+
Started GET "/assets/scss-import.css" for 127.0.0.1 at 2013-10-23 20:29:30 -0400
|
5307
|
+
Compiled font-awesome.css (14ms) (pid 4916)
|
5308
|
+
Compiled scss-import.css (233ms) (pid 4916)
|
5309
|
+
Served asset /scss-import.css - 200 OK (240ms)
|
5310
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:29:31 -0400
|
5311
|
+
Compiled font-awesome.css (14ms) (pid 4916)
|
5312
|
+
Served asset /font-awesome.css - 200 OK (21ms)
|
5313
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:29:31 -0400
|
5314
|
+
Served asset /font-awesome.css - 200 OK (0ms)
|
5315
|
+
Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2013-10-23 20:29:42 -0400
|
5316
|
+
Served asset /fontawesome-webfont.eot - 200 OK (3ms)
|
5317
|
+
Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2013-10-23 20:29:42 -0400
|
5318
|
+
Served asset /fontawesome-webfont.ttf - 200 OK (2ms)
|
5319
|
+
Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2013-10-23 20:29:42 -0400
|
5320
|
+
Served asset /fontawesome-webfont.woff - 200 OK (4ms)
|
5321
|
+
Started GET "/icons" for 127.0.0.1 at 2013-10-23 20:29:42 -0400
|
5322
|
+
Processing by PagesController#icons as HTML
|
5323
|
+
Completed 200 OK in 5ms (Views: 4.5ms)
|
5324
|
+
Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2013-10-23 20:29:42 -0400
|
5325
|
+
Compiled font-awesome.css (13ms) (pid 5122)
|
5326
|
+
Compiled sprockets-require.css (19ms) (pid 5122)
|
5327
|
+
Served asset /sprockets-require.css - 200 OK (26ms)
|
5328
|
+
Started GET "/assets/sass-import.css" for 127.0.0.1 at 2013-10-23 20:29:42 -0400
|
5329
|
+
Compiled font-awesome.css (14ms) (pid 5122)
|
5330
|
+
Compiled sass-import.css (211ms) (pid 5122)
|
5331
|
+
Served asset /sass-import.css - 200 OK (218ms)
|
5332
|
+
Started GET "/assets/scss-import.css" for 127.0.0.1 at 2013-10-23 20:29:42 -0400
|
5333
|
+
Compiled font-awesome.css (16ms) (pid 5122)
|
5334
|
+
Compiled scss-import.css (253ms) (pid 5122)
|
5335
|
+
Served asset /scss-import.css - 200 OK (260ms)
|
5336
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:29:42 -0400
|
5337
|
+
Compiled font-awesome.css (14ms) (pid 5122)
|
5338
|
+
Served asset /font-awesome.css - 200 OK (21ms)
|
5339
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:29:42 -0400
|
5340
|
+
Served asset /font-awesome.css - 200 OK (0ms)
|
5341
|
+
Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2013-10-23 20:30:00 -0400
|
5342
|
+
Served asset /fontawesome-webfont.eot - 200 OK (3ms)
|
5343
|
+
Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2013-10-23 20:30:00 -0400
|
5344
|
+
Served asset /fontawesome-webfont.ttf - 200 OK (4ms)
|
5345
|
+
Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2013-10-23 20:30:00 -0400
|
5346
|
+
Served asset /fontawesome-webfont.woff - 200 OK (4ms)
|
5347
|
+
Started GET "/icons" for 127.0.0.1 at 2013-10-23 20:30:00 -0400
|
5348
|
+
Processing by PagesController#icons as HTML
|
5349
|
+
Completed 200 OK in 5ms (Views: 4.5ms)
|
5350
|
+
Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2013-10-23 20:30:00 -0400
|
5351
|
+
Compiled font-awesome.css (13ms) (pid 5329)
|
5352
|
+
Compiled sprockets-require.css (16ms) (pid 5329)
|
5353
|
+
Served asset /sprockets-require.css - 200 OK (22ms)
|
5354
|
+
Started GET "/assets/sass-import.css" for 127.0.0.1 at 2013-10-23 20:30:00 -0400
|
5355
|
+
Compiled font-awesome.css (13ms) (pid 5329)
|
5356
|
+
Compiled sass-import.css (223ms) (pid 5329)
|
5357
|
+
Served asset /sass-import.css - 200 OK (229ms)
|
5358
|
+
Started GET "/assets/scss-import.css" for 127.0.0.1 at 2013-10-23 20:30:00 -0400
|
5359
|
+
Compiled font-awesome.css (14ms) (pid 5329)
|
5360
|
+
Compiled scss-import.css (246ms) (pid 5329)
|
5361
|
+
Served asset /scss-import.css - 200 OK (256ms)
|
5362
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:30:01 -0400
|
5363
|
+
Compiled font-awesome.css (15ms) (pid 5329)
|
5364
|
+
Served asset /font-awesome.css - 200 OK (23ms)
|
5365
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:30:01 -0400
|
5366
|
+
Served asset /font-awesome.css - 200 OK (0ms)
|
5367
|
+
Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2013-10-23 20:30:37 -0400
|
5368
|
+
Served asset /fontawesome-webfont.eot - 200 OK (3ms)
|
5369
|
+
Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2013-10-23 20:30:37 -0400
|
5370
|
+
Served asset /fontawesome-webfont.ttf - 200 OK (3ms)
|
5371
|
+
Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2013-10-23 20:30:37 -0400
|
5372
|
+
Served asset /fontawesome-webfont.woff - 200 OK (4ms)
|
5373
|
+
Started GET "/icons" for 127.0.0.1 at 2013-10-23 20:30:37 -0400
|
5374
|
+
Processing by PagesController#icons as HTML
|
5375
|
+
Completed 200 OK in 4ms (Views: 4.3ms)
|
5376
|
+
Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2013-10-23 20:30:37 -0400
|
5377
|
+
Compiled font-awesome.css (14ms) (pid 5541)
|
5378
|
+
Compiled sprockets-require.css (17ms) (pid 5541)
|
5379
|
+
Served asset /sprockets-require.css - 200 OK (24ms)
|
5380
|
+
Started GET "/assets/sass-import.css" for 127.0.0.1 at 2013-10-23 20:30:37 -0400
|
5381
|
+
Compiled font-awesome.css (17ms) (pid 5541)
|
5382
|
+
Compiled sass-import.css (225ms) (pid 5541)
|
5383
|
+
Served asset /sass-import.css - 200 OK (231ms)
|
5384
|
+
Started GET "/assets/scss-import.css" for 127.0.0.1 at 2013-10-23 20:30:37 -0400
|
5385
|
+
Compiled font-awesome.css (14ms) (pid 5541)
|
5386
|
+
Compiled scss-import.css (229ms) (pid 5541)
|
5387
|
+
Served asset /scss-import.css - 200 OK (236ms)
|
5388
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:30:38 -0400
|
5389
|
+
Compiled font-awesome.css (16ms) (pid 5541)
|
5390
|
+
Served asset /font-awesome.css - 200 OK (23ms)
|
5391
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:30:38 -0400
|
5392
|
+
Served asset /font-awesome.css - 200 OK (0ms)
|
5393
|
+
Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2013-10-23 20:30:49 -0400
|
5394
|
+
Served asset /fontawesome-webfont.eot - 200 OK (3ms)
|
5395
|
+
Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2013-10-23 20:30:49 -0400
|
5396
|
+
Served asset /fontawesome-webfont.ttf - 200 OK (3ms)
|
5397
|
+
Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2013-10-23 20:30:49 -0400
|
5398
|
+
Served asset /fontawesome-webfont.woff - 200 OK (5ms)
|
5399
|
+
Started GET "/icons" for 127.0.0.1 at 2013-10-23 20:30:49 -0400
|
5400
|
+
Processing by PagesController#icons as HTML
|
5401
|
+
Completed 200 OK in 5ms (Views: 4.8ms)
|
5402
|
+
Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2013-10-23 20:30:49 -0400
|
5403
|
+
Compiled font-awesome.css (13ms) (pid 5747)
|
5404
|
+
Compiled sprockets-require.css (16ms) (pid 5747)
|
5405
|
+
Served asset /sprockets-require.css - 200 OK (24ms)
|
5406
|
+
Started GET "/assets/sass-import.css" for 127.0.0.1 at 2013-10-23 20:30:49 -0400
|
5407
|
+
Compiled font-awesome.css (13ms) (pid 5747)
|
5408
|
+
Compiled sass-import.css (215ms) (pid 5747)
|
5409
|
+
Served asset /sass-import.css - 200 OK (222ms)
|
5410
|
+
Started GET "/assets/scss-import.css" for 127.0.0.1 at 2013-10-23 20:30:49 -0400
|
5411
|
+
Compiled font-awesome.css (14ms) (pid 5747)
|
5412
|
+
Compiled scss-import.css (230ms) (pid 5747)
|
5413
|
+
Served asset /scss-import.css - 200 OK (238ms)
|
5414
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:30:50 -0400
|
5415
|
+
Compiled font-awesome.css (15ms) (pid 5747)
|
5416
|
+
Served asset /font-awesome.css - 200 OK (22ms)
|
5417
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:30:50 -0400
|
5418
|
+
Served asset /font-awesome.css - 200 OK (0ms)
|
5419
|
+
Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2013-10-23 20:31:05 -0400
|
5420
|
+
Served asset /fontawesome-webfont.eot - 200 OK (3ms)
|
5421
|
+
Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2013-10-23 20:31:05 -0400
|
5422
|
+
Served asset /fontawesome-webfont.ttf - 200 OK (3ms)
|
5423
|
+
Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2013-10-23 20:31:05 -0400
|
5424
|
+
Served asset /fontawesome-webfont.woff - 200 OK (4ms)
|
5425
|
+
Started GET "/icons" for 127.0.0.1 at 2013-10-23 20:31:05 -0400
|
5426
|
+
Processing by PagesController#icons as HTML
|
5427
|
+
Completed 200 OK in 5ms (Views: 4.4ms)
|
5428
|
+
Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2013-10-23 20:31:05 -0400
|
5429
|
+
Compiled font-awesome.css (17ms) (pid 5957)
|
5430
|
+
Compiled sprockets-require.css (21ms) (pid 5957)
|
5431
|
+
Served asset /sprockets-require.css - 200 OK (28ms)
|
5432
|
+
Started GET "/assets/sass-import.css" for 127.0.0.1 at 2013-10-23 20:31:05 -0400
|
5433
|
+
Compiled font-awesome.css (13ms) (pid 5957)
|
5434
|
+
Compiled sass-import.css (204ms) (pid 5957)
|
5435
|
+
Served asset /sass-import.css - 200 OK (212ms)
|
5436
|
+
Started GET "/assets/scss-import.css" for 127.0.0.1 at 2013-10-23 20:31:05 -0400
|
5437
|
+
Compiled font-awesome.css (18ms) (pid 5957)
|
5438
|
+
Compiled scss-import.css (246ms) (pid 5957)
|
5439
|
+
Served asset /scss-import.css - 200 OK (253ms)
|
5440
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:31:05 -0400
|
5441
|
+
Compiled font-awesome.css (19ms) (pid 5957)
|
5442
|
+
Served asset /font-awesome.css - 200 OK (27ms)
|
5443
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:31:05 -0400
|
5444
|
+
Served asset /font-awesome.css - 200 OK (0ms)
|
5445
|
+
Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2013-10-23 20:31:44 -0400
|
5446
|
+
Served asset /fontawesome-webfont.eot - 200 OK (5ms)
|
5447
|
+
Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2013-10-23 20:31:44 -0400
|
5448
|
+
Served asset /fontawesome-webfont.ttf - 200 OK (3ms)
|
5449
|
+
Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2013-10-23 20:31:44 -0400
|
5450
|
+
Served asset /fontawesome-webfont.woff - 200 OK (4ms)
|
5451
|
+
Started GET "/icons" for 127.0.0.1 at 2013-10-23 20:31:44 -0400
|
5452
|
+
Processing by PagesController#icons as HTML
|
5453
|
+
Completed 200 OK in 8ms (Views: 7.7ms)
|
5454
|
+
Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2013-10-23 20:31:44 -0400
|
5455
|
+
Compiled font-awesome.css (13ms) (pid 6168)
|
5456
|
+
Compiled sprockets-require.css (17ms) (pid 6168)
|
5457
|
+
Served asset /sprockets-require.css - 200 OK (25ms)
|
5458
|
+
Started GET "/assets/sass-import.css" for 127.0.0.1 at 2013-10-23 20:31:44 -0400
|
5459
|
+
Compiled font-awesome.css (17ms) (pid 6168)
|
5460
|
+
Compiled sass-import.css (217ms) (pid 6168)
|
5461
|
+
Served asset /sass-import.css - 200 OK (224ms)
|
5462
|
+
Started GET "/assets/scss-import.css" for 127.0.0.1 at 2013-10-23 20:31:45 -0400
|
5463
|
+
Compiled font-awesome.css (19ms) (pid 6168)
|
5464
|
+
Compiled scss-import.css (232ms) (pid 6168)
|
5465
|
+
Served asset /scss-import.css - 200 OK (242ms)
|
5466
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:31:45 -0400
|
5467
|
+
Compiled font-awesome.css (14ms) (pid 6168)
|
5468
|
+
Served asset /font-awesome.css - 200 OK (20ms)
|
5469
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:31:45 -0400
|
5470
|
+
Served asset /font-awesome.css - 200 OK (0ms)
|
5471
|
+
Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2013-10-23 20:32:06 -0400
|
5472
|
+
Served asset /fontawesome-webfont.eot - 200 OK (3ms)
|
5473
|
+
Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2013-10-23 20:32:06 -0400
|
5474
|
+
Served asset /fontawesome-webfont.ttf - 200 OK (2ms)
|
5475
|
+
Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2013-10-23 20:32:06 -0400
|
5476
|
+
Served asset /fontawesome-webfont.woff - 200 OK (4ms)
|
5477
|
+
Started GET "/icons" for 127.0.0.1 at 2013-10-23 20:32:06 -0400
|
5478
|
+
Processing by PagesController#icons as HTML
|
5479
|
+
Completed 200 OK in 5ms (Views: 4.8ms)
|
5480
|
+
Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2013-10-23 20:32:06 -0400
|
5481
|
+
Compiled font-awesome.css (13ms) (pid 6375)
|
5482
|
+
Compiled sprockets-require.css (16ms) (pid 6375)
|
5483
|
+
Served asset /sprockets-require.css - 200 OK (22ms)
|
5484
|
+
Started GET "/assets/sass-import.css" for 127.0.0.1 at 2013-10-23 20:32:06 -0400
|
5485
|
+
Compiled font-awesome.css (15ms) (pid 6375)
|
5486
|
+
Compiled sass-import.css (222ms) (pid 6375)
|
5487
|
+
Served asset /sass-import.css - 200 OK (229ms)
|
5488
|
+
Started GET "/assets/scss-import.css" for 127.0.0.1 at 2013-10-23 20:32:07 -0400
|
5489
|
+
Compiled font-awesome.css (15ms) (pid 6375)
|
5490
|
+
Compiled scss-import.css (222ms) (pid 6375)
|
5491
|
+
Served asset /scss-import.css - 200 OK (229ms)
|
5492
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:32:07 -0400
|
5493
|
+
Compiled font-awesome.css (14ms) (pid 6375)
|
5494
|
+
Served asset /font-awesome.css - 200 OK (19ms)
|
5495
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:32:07 -0400
|
5496
|
+
Served asset /font-awesome.css - 200 OK (0ms)
|
5497
|
+
Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2013-10-23 20:33:20 -0400
|
5498
|
+
Served asset /fontawesome-webfont.eot - 200 OK (3ms)
|
5499
|
+
Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2013-10-23 20:33:20 -0400
|
5500
|
+
Served asset /fontawesome-webfont.ttf - 200 OK (4ms)
|
5501
|
+
Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2013-10-23 20:33:20 -0400
|
5502
|
+
Served asset /fontawesome-webfont.woff - 200 OK (4ms)
|
5503
|
+
Started GET "/icons" for 127.0.0.1 at 2013-10-23 20:33:20 -0400
|
5504
|
+
Processing by PagesController#icons as HTML
|
5505
|
+
Completed 200 OK in 7ms (Views: 7.0ms)
|
5506
|
+
Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2013-10-23 20:33:20 -0400
|
5507
|
+
Compiled font-awesome.css (13ms) (pid 6587)
|
5508
|
+
Compiled sprockets-require.css (16ms) (pid 6587)
|
5509
|
+
Served asset /sprockets-require.css - 200 OK (24ms)
|
5510
|
+
Started GET "/assets/sass-import.css" for 127.0.0.1 at 2013-10-23 20:33:20 -0400
|
5511
|
+
Compiled font-awesome.css (13ms) (pid 6587)
|
5512
|
+
Compiled sass-import.css (223ms) (pid 6587)
|
5513
|
+
Served asset /sass-import.css - 200 OK (230ms)
|
5514
|
+
Started GET "/assets/scss-import.css" for 127.0.0.1 at 2013-10-23 20:33:21 -0400
|
5515
|
+
Compiled font-awesome.css (14ms) (pid 6587)
|
5516
|
+
Compiled scss-import.css (230ms) (pid 6587)
|
5517
|
+
Served asset /scss-import.css - 200 OK (238ms)
|
5518
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:33:21 -0400
|
5519
|
+
Compiled font-awesome.css (14ms) (pid 6587)
|
5520
|
+
Served asset /font-awesome.css - 200 OK (20ms)
|
5521
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:33:21 -0400
|
5522
|
+
Served asset /font-awesome.css - 200 OK (0ms)
|
5523
|
+
Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2013-10-23 20:33:56 -0400
|
5524
|
+
Served asset /fontawesome-webfont.eot - 200 OK (3ms)
|
5525
|
+
Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2013-10-23 20:33:56 -0400
|
5526
|
+
Served asset /fontawesome-webfont.ttf - 200 OK (3ms)
|
5527
|
+
Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2013-10-23 20:33:56 -0400
|
5528
|
+
Served asset /fontawesome-webfont.woff - 200 OK (4ms)
|
5529
|
+
Started GET "/icons" for 127.0.0.1 at 2013-10-23 20:33:56 -0400
|
5530
|
+
Processing by PagesController#icons as HTML
|
5531
|
+
Completed 200 OK in 6ms (Views: 6.1ms)
|
5532
|
+
Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2013-10-23 20:33:56 -0400
|
5533
|
+
Compiled font-awesome.css (18ms) (pid 6797)
|
5534
|
+
Compiled sprockets-require.css (22ms) (pid 6797)
|
5535
|
+
Served asset /sprockets-require.css - 200 OK (28ms)
|
5536
|
+
Started GET "/assets/sass-import.css" for 127.0.0.1 at 2013-10-23 20:33:56 -0400
|
5537
|
+
Compiled font-awesome.css (14ms) (pid 6797)
|
5538
|
+
Compiled sass-import.css (212ms) (pid 6797)
|
5539
|
+
Served asset /sass-import.css - 200 OK (219ms)
|
5540
|
+
Started GET "/assets/scss-import.css" for 127.0.0.1 at 2013-10-23 20:33:57 -0400
|
5541
|
+
Compiled font-awesome.css (14ms) (pid 6797)
|
5542
|
+
Compiled scss-import.css (223ms) (pid 6797)
|
5543
|
+
Served asset /scss-import.css - 200 OK (229ms)
|
5544
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:33:57 -0400
|
5545
|
+
Compiled font-awesome.css (19ms) (pid 6797)
|
5546
|
+
Served asset /font-awesome.css - 200 OK (26ms)
|
5547
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:33:57 -0400
|
5548
|
+
Served asset /font-awesome.css - 200 OK (0ms)
|
5549
|
+
Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2013-10-23 20:34:51 -0400
|
5550
|
+
Served asset /fontawesome-webfont.eot - 200 OK (3ms)
|
5551
|
+
Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2013-10-23 20:34:51 -0400
|
5552
|
+
Served asset /fontawesome-webfont.ttf - 200 OK (2ms)
|
5553
|
+
Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2013-10-23 20:34:51 -0400
|
5554
|
+
Served asset /fontawesome-webfont.woff - 200 OK (4ms)
|
5555
|
+
Started GET "/icons" for 127.0.0.1 at 2013-10-23 20:34:51 -0400
|
5556
|
+
Processing by PagesController#icons as HTML
|
5557
|
+
Completed 200 OK in 6ms (Views: 6.2ms)
|
5558
|
+
Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2013-10-23 20:34:52 -0400
|
5559
|
+
Compiled font-awesome.css (15ms) (pid 7009)
|
5560
|
+
Compiled sprockets-require.css (19ms) (pid 7009)
|
5561
|
+
Served asset /sprockets-require.css - 200 OK (28ms)
|
5562
|
+
Started GET "/assets/sass-import.css" for 127.0.0.1 at 2013-10-23 20:34:52 -0400
|
5563
|
+
Compiled font-awesome.css (13ms) (pid 7009)
|
5564
|
+
Compiled sass-import.css (204ms) (pid 7009)
|
5565
|
+
Served asset /sass-import.css - 200 OK (212ms)
|
5566
|
+
Started GET "/assets/scss-import.css" for 127.0.0.1 at 2013-10-23 20:34:52 -0400
|
5567
|
+
Compiled font-awesome.css (21ms) (pid 7009)
|
5568
|
+
Compiled scss-import.css (240ms) (pid 7009)
|
5569
|
+
Served asset /scss-import.css - 200 OK (248ms)
|
5570
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:34:52 -0400
|
5571
|
+
Compiled font-awesome.css (14ms) (pid 7009)
|
5572
|
+
Served asset /font-awesome.css - 200 OK (19ms)
|
5573
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:34:52 -0400
|
5574
|
+
Served asset /font-awesome.css - 200 OK (0ms)
|
5575
|
+
Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2013-10-23 20:35:01 -0400
|
5576
|
+
Served asset /fontawesome-webfont.eot - 200 OK (3ms)
|
5577
|
+
Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2013-10-23 20:35:01 -0400
|
5578
|
+
Served asset /fontawesome-webfont.ttf - 200 OK (4ms)
|
5579
|
+
Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2013-10-23 20:35:01 -0400
|
5580
|
+
Served asset /fontawesome-webfont.woff - 200 OK (4ms)
|
5581
|
+
Started GET "/icons" for 127.0.0.1 at 2013-10-23 20:35:01 -0400
|
5582
|
+
Processing by PagesController#icons as HTML
|
5583
|
+
Completed 200 OK in 5ms (Views: 4.9ms)
|
5584
|
+
Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2013-10-23 20:35:01 -0400
|
5585
|
+
Compiled font-awesome.css (13ms) (pid 7215)
|
5586
|
+
Compiled sprockets-require.css (16ms) (pid 7215)
|
5587
|
+
Served asset /sprockets-require.css - 200 OK (23ms)
|
5588
|
+
Started GET "/assets/sass-import.css" for 127.0.0.1 at 2013-10-23 20:35:01 -0400
|
5589
|
+
Compiled font-awesome.css (16ms) (pid 7215)
|
5590
|
+
Compiled sass-import.css (211ms) (pid 7215)
|
5591
|
+
Served asset /sass-import.css - 200 OK (219ms)
|
5592
|
+
Started GET "/assets/scss-import.css" for 127.0.0.1 at 2013-10-23 20:35:01 -0400
|
5593
|
+
Compiled font-awesome.css (15ms) (pid 7215)
|
5594
|
+
Compiled scss-import.css (237ms) (pid 7215)
|
5595
|
+
Served asset /scss-import.css - 200 OK (245ms)
|
5596
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:35:02 -0400
|
5597
|
+
Compiled font-awesome.css (14ms) (pid 7215)
|
5598
|
+
Served asset /font-awesome.css - 200 OK (21ms)
|
5599
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:35:02 -0400
|
5600
|
+
Served asset /font-awesome.css - 200 OK (0ms)
|
5601
|
+
Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2013-10-23 20:35:33 -0400
|
5602
|
+
Served asset /fontawesome-webfont.eot - 200 OK (3ms)
|
5603
|
+
Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2013-10-23 20:35:33 -0400
|
5604
|
+
Served asset /fontawesome-webfont.ttf - 200 OK (4ms)
|
5605
|
+
Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2013-10-23 20:35:33 -0400
|
5606
|
+
Served asset /fontawesome-webfont.woff - 200 OK (4ms)
|
5607
|
+
Started GET "/icons" for 127.0.0.1 at 2013-10-23 20:35:33 -0400
|
5608
|
+
Processing by PagesController#icons as HTML
|
5609
|
+
Completed 200 OK in 5ms (Views: 4.8ms)
|
5610
|
+
Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2013-10-23 20:35:33 -0400
|
5611
|
+
Compiled font-awesome.css (13ms) (pid 7426)
|
5612
|
+
Compiled sprockets-require.css (16ms) (pid 7426)
|
5613
|
+
Served asset /sprockets-require.css - 200 OK (23ms)
|
5614
|
+
Started GET "/assets/sass-import.css" for 127.0.0.1 at 2013-10-23 20:35:33 -0400
|
5615
|
+
Compiled font-awesome.css (14ms) (pid 7426)
|
5616
|
+
Compiled sass-import.css (217ms) (pid 7426)
|
5617
|
+
Served asset /sass-import.css - 200 OK (223ms)
|
5618
|
+
Started GET "/assets/scss-import.css" for 127.0.0.1 at 2013-10-23 20:35:33 -0400
|
5619
|
+
Compiled font-awesome.css (16ms) (pid 7426)
|
5620
|
+
Compiled scss-import.css (232ms) (pid 7426)
|
5621
|
+
Served asset /scss-import.css - 200 OK (240ms)
|
5622
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:35:33 -0400
|
5623
|
+
Compiled font-awesome.css (17ms) (pid 7426)
|
5624
|
+
Served asset /font-awesome.css - 200 OK (24ms)
|
5625
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:35:33 -0400
|
5626
|
+
Served asset /font-awesome.css - 200 OK (0ms)
|
5627
|
+
Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2013-10-23 20:35:43 -0400
|
5628
|
+
Served asset /fontawesome-webfont.eot - 200 OK (3ms)
|
5629
|
+
Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2013-10-23 20:35:43 -0400
|
5630
|
+
Served asset /fontawesome-webfont.ttf - 200 OK (4ms)
|
5631
|
+
Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2013-10-23 20:35:43 -0400
|
5632
|
+
Served asset /fontawesome-webfont.woff - 200 OK (4ms)
|
5633
|
+
Started GET "/icons" for 127.0.0.1 at 2013-10-23 20:35:43 -0400
|
5634
|
+
Processing by PagesController#icons as HTML
|
5635
|
+
Completed 200 OK in 5ms (Views: 4.9ms)
|
5636
|
+
Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2013-10-23 20:35:43 -0400
|
5637
|
+
Compiled font-awesome.css (14ms) (pid 7633)
|
5638
|
+
Compiled sprockets-require.css (19ms) (pid 7633)
|
5639
|
+
Served asset /sprockets-require.css - 200 OK (25ms)
|
5640
|
+
Started GET "/assets/sass-import.css" for 127.0.0.1 at 2013-10-23 20:35:43 -0400
|
5641
|
+
Compiled font-awesome.css (13ms) (pid 7633)
|
5642
|
+
Compiled sass-import.css (212ms) (pid 7633)
|
5643
|
+
Served asset /sass-import.css - 200 OK (221ms)
|
5644
|
+
Started GET "/assets/scss-import.css" for 127.0.0.1 at 2013-10-23 20:35:43 -0400
|
5645
|
+
Compiled font-awesome.css (15ms) (pid 7633)
|
5646
|
+
Compiled scss-import.css (230ms) (pid 7633)
|
5647
|
+
Served asset /scss-import.css - 200 OK (237ms)
|
5648
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:35:44 -0400
|
5649
|
+
Compiled font-awesome.css (14ms) (pid 7633)
|
5650
|
+
Served asset /font-awesome.css - 200 OK (20ms)
|
5651
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:35:44 -0400
|
5652
|
+
Served asset /font-awesome.css - 200 OK (0ms)
|
5653
|
+
Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2013-10-23 20:35:47 -0400
|
5654
|
+
Served asset /fontawesome-webfont.eot - 200 OK (3ms)
|
5655
|
+
Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2013-10-23 20:35:47 -0400
|
5656
|
+
Served asset /fontawesome-webfont.ttf - 200 OK (2ms)
|
5657
|
+
Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2013-10-23 20:35:47 -0400
|
5658
|
+
Served asset /fontawesome-webfont.woff - 200 OK (4ms)
|
5659
|
+
Started GET "/icons" for 127.0.0.1 at 2013-10-23 20:35:47 -0400
|
5660
|
+
Processing by PagesController#icons as HTML
|
5661
|
+
Completed 200 OK in 5ms (Views: 5.3ms)
|
5662
|
+
Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2013-10-23 20:35:47 -0400
|
5663
|
+
Compiled font-awesome.css (15ms) (pid 7839)
|
5664
|
+
Compiled sprockets-require.css (18ms) (pid 7839)
|
5665
|
+
Served asset /sprockets-require.css - 200 OK (24ms)
|
5666
|
+
Started GET "/assets/sass-import.css" for 127.0.0.1 at 2013-10-23 20:35:47 -0400
|
5667
|
+
Compiled font-awesome.css (13ms) (pid 7839)
|
5668
|
+
Compiled sass-import.css (219ms) (pid 7839)
|
5669
|
+
Served asset /sass-import.css - 200 OK (225ms)
|
5670
|
+
Started GET "/assets/scss-import.css" for 127.0.0.1 at 2013-10-23 20:35:48 -0400
|
5671
|
+
Compiled font-awesome.css (14ms) (pid 7839)
|
5672
|
+
Compiled scss-import.css (216ms) (pid 7839)
|
5673
|
+
Served asset /scss-import.css - 200 OK (223ms)
|
5674
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:35:48 -0400
|
5675
|
+
Compiled font-awesome.css (18ms) (pid 7839)
|
5676
|
+
Served asset /font-awesome.css - 200 OK (24ms)
|
5677
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:35:48 -0400
|
5678
|
+
Served asset /font-awesome.css - 200 OK (0ms)
|
5679
|
+
Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2013-10-23 20:40:03 -0400
|
5680
|
+
Served asset /fontawesome-webfont.eot - 200 OK (3ms)
|
5681
|
+
Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2013-10-23 20:40:03 -0400
|
5682
|
+
Served asset /fontawesome-webfont.ttf - 200 OK (2ms)
|
5683
|
+
Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2013-10-23 20:40:03 -0400
|
5684
|
+
Served asset /fontawesome-webfont.woff - 200 OK (4ms)
|
5685
|
+
Started GET "/icons" for 127.0.0.1 at 2013-10-23 20:40:03 -0400
|
5686
|
+
Processing by PagesController#icons as HTML
|
5687
|
+
Completed 200 OK in 7ms (Views: 6.8ms)
|
5688
|
+
Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2013-10-23 20:40:03 -0400
|
5689
|
+
Compiled font-awesome.css (13ms) (pid 9042)
|
5690
|
+
Compiled sprockets-require.css (17ms) (pid 9042)
|
5691
|
+
Served asset /sprockets-require.css - 200 OK (23ms)
|
5692
|
+
Started GET "/assets/sass-import.css" for 127.0.0.1 at 2013-10-23 20:40:03 -0400
|
5693
|
+
Compiled font-awesome.css (14ms) (pid 9042)
|
5694
|
+
Compiled sass-import.css (210ms) (pid 9042)
|
5695
|
+
Served asset /sass-import.css - 200 OK (218ms)
|
5696
|
+
Started GET "/assets/scss-import.css" for 127.0.0.1 at 2013-10-23 20:40:03 -0400
|
5697
|
+
Compiled font-awesome.css (19ms) (pid 9042)
|
5698
|
+
Compiled scss-import.css (231ms) (pid 9042)
|
5699
|
+
Served asset /scss-import.css - 200 OK (239ms)
|
5700
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:40:04 -0400
|
5701
|
+
Compiled font-awesome.css (15ms) (pid 9042)
|
5702
|
+
Served asset /font-awesome.css - 200 OK (22ms)
|
5703
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 20:40:04 -0400
|
5704
|
+
Served asset /font-awesome.css - 200 OK (0ms)
|
5705
|
+
Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2013-10-23 21:14:02 -0400
|
5706
|
+
Served asset /fontawesome-webfont.eot - 200 OK (3ms)
|
5707
|
+
Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2013-10-23 21:14:02 -0400
|
5708
|
+
Served asset /fontawesome-webfont.ttf - 200 OK (3ms)
|
5709
|
+
Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2013-10-23 21:14:02 -0400
|
5710
|
+
Served asset /fontawesome-webfont.woff - 200 OK (3ms)
|
5711
|
+
Started GET "/icons" for 127.0.0.1 at 2013-10-23 21:14:02 -0400
|
5712
|
+
Processing by PagesController#icons as HTML
|
5713
|
+
Completed 200 OK in 6ms (Views: 5.6ms)
|
5714
|
+
Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2013-10-23 21:14:03 -0400
|
5715
|
+
Compiled font-awesome.css (17ms) (pid 16231)
|
5716
|
+
Compiled sprockets-require.css (20ms) (pid 16231)
|
5717
|
+
Served asset /sprockets-require.css - 200 OK (27ms)
|
5718
|
+
Started GET "/assets/sass-import.css" for 127.0.0.1 at 2013-10-23 21:14:03 -0400
|
5719
|
+
Compiled font-awesome.css (15ms) (pid 16231)
|
5720
|
+
Compiled sass-import.css (225ms) (pid 16231)
|
5721
|
+
Served asset /sass-import.css - 200 OK (232ms)
|
5722
|
+
Started GET "/assets/scss-import.css" for 127.0.0.1 at 2013-10-23 21:14:03 -0400
|
5723
|
+
Compiled font-awesome.css (15ms) (pid 16231)
|
5724
|
+
Compiled scss-import.css (243ms) (pid 16231)
|
5725
|
+
Served asset /scss-import.css - 200 OK (251ms)
|
5726
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 21:14:03 -0400
|
5727
|
+
Compiled font-awesome.css (14ms) (pid 16231)
|
5728
|
+
Served asset /font-awesome.css - 200 OK (21ms)
|
5729
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 21:14:03 -0400
|
5730
|
+
Served asset /font-awesome.css - 200 OK (0ms)
|
5731
|
+
Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2013-10-23 21:16:44 -0400
|
5732
|
+
Served asset /fontawesome-webfont.eot - 200 OK (3ms)
|
5733
|
+
Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2013-10-23 21:16:44 -0400
|
5734
|
+
Served asset /fontawesome-webfont.ttf - 200 OK (2ms)
|
5735
|
+
Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2013-10-23 21:16:44 -0400
|
5736
|
+
Served asset /fontawesome-webfont.woff - 200 OK (4ms)
|
5737
|
+
Started GET "/icons" for 127.0.0.1 at 2013-10-23 21:16:44 -0400
|
5738
|
+
Processing by PagesController#icons as HTML
|
5739
|
+
Completed 200 OK in 5ms (Views: 5.1ms)
|
5740
|
+
Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2013-10-23 21:16:44 -0400
|
5741
|
+
Compiled font-awesome.css (13ms) (pid 17646)
|
5742
|
+
Compiled sprockets-require.css (17ms) (pid 17646)
|
5743
|
+
Served asset /sprockets-require.css - 200 OK (24ms)
|
5744
|
+
Started GET "/assets/sass-import.css" for 127.0.0.1 at 2013-10-23 21:16:44 -0400
|
5745
|
+
Compiled font-awesome.css (16ms) (pid 17646)
|
5746
|
+
Compiled sass-import.css (214ms) (pid 17646)
|
5747
|
+
Served asset /sass-import.css - 200 OK (220ms)
|
5748
|
+
Started GET "/assets/scss-import.css" for 127.0.0.1 at 2013-10-23 21:16:44 -0400
|
5749
|
+
Compiled font-awesome.css (14ms) (pid 17646)
|
5750
|
+
Compiled scss-import.css (245ms) (pid 17646)
|
5751
|
+
Served asset /scss-import.css - 200 OK (251ms)
|
5752
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 21:16:44 -0400
|
5753
|
+
Compiled font-awesome.css (17ms) (pid 17646)
|
5754
|
+
Served asset /font-awesome.css - 200 OK (24ms)
|
5755
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 21:16:44 -0400
|
5756
|
+
Served asset /font-awesome.css - 200 OK (0ms)
|
5757
|
+
Started GET "/assets/fontawesome-webfont.eot" for 127.0.0.1 at 2013-10-23 21:20:07 -0400
|
5758
|
+
Served asset /fontawesome-webfont.eot - 200 OK (3ms)
|
5759
|
+
Started GET "/assets/fontawesome-webfont.ttf" for 127.0.0.1 at 2013-10-23 21:20:07 -0400
|
5760
|
+
Served asset /fontawesome-webfont.ttf - 200 OK (3ms)
|
5761
|
+
Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2013-10-23 21:20:07 -0400
|
5762
|
+
Served asset /fontawesome-webfont.woff - 200 OK (3ms)
|
5763
|
+
Started GET "/icons" for 127.0.0.1 at 2013-10-23 21:20:07 -0400
|
5764
|
+
Processing by PagesController#icons as HTML
|
5765
|
+
Completed 200 OK in 5ms (Views: 5.1ms)
|
5766
|
+
Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2013-10-23 21:20:07 -0400
|
5767
|
+
Compiled font-awesome.css (13ms) (pid 18078)
|
5768
|
+
Compiled sprockets-require.css (16ms) (pid 18078)
|
5769
|
+
Served asset /sprockets-require.css - 200 OK (24ms)
|
5770
|
+
Started GET "/assets/sass-import.css" for 127.0.0.1 at 2013-10-23 21:20:08 -0400
|
5771
|
+
Compiled font-awesome.css (14ms) (pid 18078)
|
5772
|
+
Compiled sass-import.css (215ms) (pid 18078)
|
5773
|
+
Served asset /sass-import.css - 200 OK (221ms)
|
5774
|
+
Started GET "/assets/scss-import.css" for 127.0.0.1 at 2013-10-23 21:20:08 -0400
|
5775
|
+
Compiled font-awesome.css (19ms) (pid 18078)
|
5776
|
+
Compiled scss-import.css (251ms) (pid 18078)
|
5777
|
+
Served asset /scss-import.css - 200 OK (257ms)
|
5778
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 21:20:08 -0400
|
5779
|
+
Compiled font-awesome.css (18ms) (pid 18078)
|
5780
|
+
Served asset /font-awesome.css - 200 OK (24ms)
|
5781
|
+
Started GET "/assets/font-awesome.css" for 127.0.0.1 at 2013-10-23 21:20:08 -0400
|
5782
|
+
Served asset /font-awesome.css - 200 OK (0ms)
|