source-sans-pro-rails 0.5.0 → 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore CHANGED
@@ -14,4 +14,5 @@ rdoc
14
14
  spec/reports
15
15
  test/tmp
16
16
  test/version_tmp
17
+ test/dummy/log
17
18
  tmp
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # source-sans-pro-rails
1
+ # source-sans-pro-rails [![Gem Version](https://badge.fury.io/rb/source-sans-pro-rails.png)](http://badge.fury.io/rb/source-sans-pro-rails) [![Build Status](https://travis-ci.org/veracross/source-sans-pro-rails.png)](https://travis-ci.org/veracross/source-sans-pro-rails)
2
2
 
3
3
  Adds [Adobe's Source Sans Pro font](https://github.com/adobe/source-sans-pro) to Rails via the asset pipeline.
4
4
 
@@ -46,4 +46,8 @@ TTF font files were downloaded from Adobe and converted to `woff`, `eot`, and `s
46
46
  * The Adobe Source Sans Pro font is licensed under the [SIL Open Font License](http://scripts.sil.org/OFL)
47
47
  * This project is licensed under the MIT License.
48
48
 
49
+ ## Thanks
50
+
51
+ * Adobe for open sourcing this font
52
+ * [font-awesome-rails](https://github.com/bokmann/font-awesome-rails) for a good example of creating a font gem for the asset pipeline
49
53
 
@@ -1,11 +1,11 @@
1
1
  @mixin font($name, $weight, $style) {
2
2
  @font-face {
3
3
  font-family: 'SourceSansPro';
4
- src: font-url($name + '.eot');
5
- src: font-url($name + '.eot?#iefix') format('embedded-opentype'),
6
- font-url($name + '.woff') format('woff')
7
- font-url($name + '.ttf') format('truetype')
8
- font-url($name + '.svg#' + $name) format('svg');
4
+ src: url(font-path("#{$name}.eot"));
5
+ src: url(font-path("#{$name}.eot?#iefix")) format("embedded-opentype"),
6
+ url(font-path("#{$name}.woff")) format("woff")
7
+ url(font-path("#{$name}.ttf")) format("truetype")
8
+ url(font-path("#{$name}.svg##{$name}")) format("svg");
9
9
  font-weight: $weight;
10
10
  font-style: $style;
11
11
  }
@@ -1,5 +1,5 @@
1
1
  module SourceSansPro
2
2
  module Rails
3
- VERSION = "0.5.0"
3
+ VERSION = "0.6.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: source-sans-pro-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.6.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-06-07 00:00:00.000000000 Z
12
+ date: 2013-06-10 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: railties
@@ -159,7 +159,6 @@ files:
159
159
  - test/dummy/config/environment.rb
160
160
  - test/dummy/config/initializers/secret_token.rb
161
161
  - test/dummy/config/routes.rb
162
- - test/dummy/log/test.log
163
162
  - test/source_sans_pro_test.rb
164
163
  - test/test_helper.rb
165
164
  homepage: https://github.com/veracross/source-sans-pro-rails
@@ -196,6 +195,5 @@ test_files:
196
195
  - test/dummy/config/environment.rb
197
196
  - test/dummy/config/initializers/secret_token.rb
198
197
  - test/dummy/config/routes.rb
199
- - test/dummy/log/test.log
200
198
  - test/source_sans_pro_test.rb
201
199
  - test/test_helper.rb
@@ -1,952 +0,0 @@
1
- Started GET "/assets/sourcesanspro-regular.eot" for 127.0.0.1 at 2013-06-07 15:46:19 -0400
2
- Served asset /sourcesanspro-regular.eot - 404 Not Found (1ms)
3
-
4
- ActionController::RoutingError (No route matches [GET] "/assets/sourcesanspro-regular.eot"):
5
- actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
6
- actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
7
- railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
8
- railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
9
- activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
10
- railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
11
- actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
12
- rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
13
- rack (1.4.5) lib/rack/runtime.rb:17:in `call'
14
- activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
15
- rack (1.4.5) lib/rack/lock.rb:15:in `call'
16
- actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
17
- railties (3.2.13) lib/rails/engine.rb:479:in `call'
18
- railties (3.2.13) lib/rails/application.rb:223:in `call'
19
- rack-test (0.6.2) lib/rack/mock_session.rb:30:in `request'
20
- rack-test (0.6.2) lib/rack/test.rb:230:in `process_request'
21
- rack-test (0.6.2) lib/rack/test.rb:123:in `request'
22
- actionpack (3.2.13) lib/action_dispatch/testing/integration.rb:299:in `process'
23
- actionpack (3.2.13) lib/action_dispatch/testing/integration.rb:33:in `get'
24
- actionpack (3.2.13) lib/action_dispatch/testing/integration.rb:333:in `block (2 levels) in <module:Runner>'
25
- /Users/jeff/workspace/source-sans-pro-rails/test/source_sans_pro_test.rb:11:in `block in <class:FontAwesomeRailsTest>'
26
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:949:in `run'
27
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit/testcase.rb:17:in `run'
28
- activesupport (3.2.13) lib/active_support/testing/setup_and_teardown.rb:36:in `block in run'
29
- activesupport (3.2.13) lib/active_support/callbacks.rb:425:in `_run__571704895679524441__setup__2369188837432332505__callbacks'
30
- activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
31
- activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_setup_callbacks'
32
- activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
33
- activesupport (3.2.13) lib/active_support/testing/setup_and_teardown.rb:35:in `run'
34
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:787:in `block in _run_suite'
35
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:780:in `map'
36
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:780:in `_run_suite'
37
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:565:in `block in _run_suites'
38
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:563:in `each'
39
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:563:in `_run_suites'
40
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:746:in `_run_anything'
41
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:909:in `run_tests'
42
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:896:in `block in _run'
43
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:895:in `each'
44
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:895:in `_run'
45
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:884:in `run'
46
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:21:in `run'
47
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:326:in `block (2 levels) in autorun'
48
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:27:in `run_once'
49
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:325:in `block in autorun'
50
-
51
-
52
- Started GET "/assets/source-sans-pro.css" for 127.0.0.1 at 2013-06-07 15:46:19 -0400
53
- Served asset /source-sans-pro.css - 404 Not Found (1ms)
54
-
55
- ActionController::RoutingError (No route matches [GET] "/assets/source-sans-pro.css"):
56
- actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
57
- actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
58
- railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
59
- railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
60
- activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
61
- railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
62
- actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
63
- rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
64
- rack (1.4.5) lib/rack/runtime.rb:17:in `call'
65
- activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
66
- rack (1.4.5) lib/rack/lock.rb:15:in `call'
67
- actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
68
- railties (3.2.13) lib/rails/engine.rb:479:in `call'
69
- railties (3.2.13) lib/rails/application.rb:223:in `call'
70
- rack-test (0.6.2) lib/rack/mock_session.rb:30:in `request'
71
- rack-test (0.6.2) lib/rack/test.rb:230:in `process_request'
72
- rack-test (0.6.2) lib/rack/test.rb:123:in `request'
73
- actionpack (3.2.13) lib/action_dispatch/testing/integration.rb:299:in `process'
74
- actionpack (3.2.13) lib/action_dispatch/testing/integration.rb:33:in `get'
75
- actionpack (3.2.13) lib/action_dispatch/testing/integration.rb:333:in `block (2 levels) in <module:Runner>'
76
- /Users/jeff/workspace/source-sans-pro-rails/test/source_sans_pro_test.rb:20:in `block in <class:FontAwesomeRailsTest>'
77
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:949:in `run'
78
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit/testcase.rb:17:in `run'
79
- activesupport (3.2.13) lib/active_support/testing/setup_and_teardown.rb:36:in `block in run'
80
- activesupport (3.2.13) lib/active_support/callbacks.rb:425:in `_run__571704895679524441__setup__2369188837432332505__callbacks'
81
- activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
82
- activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_setup_callbacks'
83
- activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
84
- activesupport (3.2.13) lib/active_support/testing/setup_and_teardown.rb:35:in `run'
85
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:787:in `block in _run_suite'
86
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:780:in `map'
87
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:780:in `_run_suite'
88
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:565:in `block in _run_suites'
89
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:563:in `each'
90
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:563:in `_run_suites'
91
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:746:in `_run_anything'
92
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:909:in `run_tests'
93
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:896:in `block in _run'
94
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:895:in `each'
95
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:895:in `_run'
96
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:884:in `run'
97
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:21:in `run'
98
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:326:in `block (2 levels) in autorun'
99
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:27:in `run_once'
100
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:325:in `block in autorun'
101
-
102
-
103
- Started GET "/assets/sourcesanspro-regular.eot" for 127.0.0.1 at 2013-06-07 15:46:54 -0400
104
- Served asset /sourcesanspro-regular.eot - 404 Not Found (1ms)
105
-
106
- ActionController::RoutingError (No route matches [GET] "/assets/sourcesanspro-regular.eot"):
107
- actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
108
- actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
109
- railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
110
- railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
111
- activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
112
- railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
113
- actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
114
- rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
115
- rack (1.4.5) lib/rack/runtime.rb:17:in `call'
116
- activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
117
- rack (1.4.5) lib/rack/lock.rb:15:in `call'
118
- actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
119
- railties (3.2.13) lib/rails/engine.rb:479:in `call'
120
- railties (3.2.13) lib/rails/application.rb:223:in `call'
121
- rack-test (0.6.2) lib/rack/mock_session.rb:30:in `request'
122
- rack-test (0.6.2) lib/rack/test.rb:230:in `process_request'
123
- rack-test (0.6.2) lib/rack/test.rb:123:in `request'
124
- actionpack (3.2.13) lib/action_dispatch/testing/integration.rb:299:in `process'
125
- actionpack (3.2.13) lib/action_dispatch/testing/integration.rb:33:in `get'
126
- actionpack (3.2.13) lib/action_dispatch/testing/integration.rb:333:in `block (2 levels) in <module:Runner>'
127
- /Users/jeff/workspace/source-sans-pro-rails/test/source_sans_pro_test.rb:11:in `block in <class:SourceSansProTest>'
128
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:949:in `run'
129
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit/testcase.rb:17:in `run'
130
- activesupport (3.2.13) lib/active_support/testing/setup_and_teardown.rb:36:in `block in run'
131
- activesupport (3.2.13) lib/active_support/callbacks.rb:425:in `_run__165390978125656721__setup__1150529527055350622__callbacks'
132
- activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
133
- activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_setup_callbacks'
134
- activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
135
- activesupport (3.2.13) lib/active_support/testing/setup_and_teardown.rb:35:in `run'
136
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:787:in `block in _run_suite'
137
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:780:in `map'
138
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:780:in `_run_suite'
139
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:565:in `block in _run_suites'
140
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:563:in `each'
141
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:563:in `_run_suites'
142
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:746:in `_run_anything'
143
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:909:in `run_tests'
144
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:896:in `block in _run'
145
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:895:in `each'
146
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:895:in `_run'
147
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:884:in `run'
148
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:21:in `run'
149
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:326:in `block (2 levels) in autorun'
150
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:27:in `run_once'
151
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:325:in `block in autorun'
152
-
153
-
154
- Started GET "/assets/source-sans-pro.css" for 127.0.0.1 at 2013-06-07 15:46:54 -0400
155
- Served asset /source-sans-pro.css - 404 Not Found (1ms)
156
-
157
- ActionController::RoutingError (No route matches [GET] "/assets/source-sans-pro.css"):
158
- actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
159
- actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
160
- railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
161
- railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
162
- activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
163
- railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
164
- actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
165
- rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
166
- rack (1.4.5) lib/rack/runtime.rb:17:in `call'
167
- activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
168
- rack (1.4.5) lib/rack/lock.rb:15:in `call'
169
- actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
170
- railties (3.2.13) lib/rails/engine.rb:479:in `call'
171
- railties (3.2.13) lib/rails/application.rb:223:in `call'
172
- rack-test (0.6.2) lib/rack/mock_session.rb:30:in `request'
173
- rack-test (0.6.2) lib/rack/test.rb:230:in `process_request'
174
- rack-test (0.6.2) lib/rack/test.rb:123:in `request'
175
- actionpack (3.2.13) lib/action_dispatch/testing/integration.rb:299:in `process'
176
- actionpack (3.2.13) lib/action_dispatch/testing/integration.rb:33:in `get'
177
- actionpack (3.2.13) lib/action_dispatch/testing/integration.rb:333:in `block (2 levels) in <module:Runner>'
178
- /Users/jeff/workspace/source-sans-pro-rails/test/source_sans_pro_test.rb:20:in `block in <class:SourceSansProTest>'
179
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:949:in `run'
180
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit/testcase.rb:17:in `run'
181
- activesupport (3.2.13) lib/active_support/testing/setup_and_teardown.rb:36:in `block in run'
182
- activesupport (3.2.13) lib/active_support/callbacks.rb:425:in `_run__165390978125656721__setup__1150529527055350622__callbacks'
183
- activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
184
- activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_setup_callbacks'
185
- activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
186
- activesupport (3.2.13) lib/active_support/testing/setup_and_teardown.rb:35:in `run'
187
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:787:in `block in _run_suite'
188
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:780:in `map'
189
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:780:in `_run_suite'
190
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:565:in `block in _run_suites'
191
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:563:in `each'
192
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:563:in `_run_suites'
193
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:746:in `_run_anything'
194
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:909:in `run_tests'
195
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:896:in `block in _run'
196
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:895:in `each'
197
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:895:in `_run'
198
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:884:in `run'
199
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:21:in `run'
200
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:326:in `block (2 levels) in autorun'
201
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:27:in `run_once'
202
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:325:in `block in autorun'
203
-
204
-
205
- Started GET "/assets/sourcesanspro-regular.eot" for 127.0.0.1 at 2013-06-07 15:47:13 -0400
206
- Served asset /sourcesanspro-regular.eot - 404 Not Found (1ms)
207
-
208
- ActionController::RoutingError (No route matches [GET] "/assets/sourcesanspro-regular.eot"):
209
- actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
210
- actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
211
- railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
212
- railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
213
- activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
214
- railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
215
- actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
216
- rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
217
- rack (1.4.5) lib/rack/runtime.rb:17:in `call'
218
- activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
219
- rack (1.4.5) lib/rack/lock.rb:15:in `call'
220
- actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
221
- railties (3.2.13) lib/rails/engine.rb:479:in `call'
222
- railties (3.2.13) lib/rails/application.rb:223:in `call'
223
- rack-test (0.6.2) lib/rack/mock_session.rb:30:in `request'
224
- rack-test (0.6.2) lib/rack/test.rb:230:in `process_request'
225
- rack-test (0.6.2) lib/rack/test.rb:123:in `request'
226
- actionpack (3.2.13) lib/action_dispatch/testing/integration.rb:299:in `process'
227
- actionpack (3.2.13) lib/action_dispatch/testing/integration.rb:33:in `get'
228
- actionpack (3.2.13) lib/action_dispatch/testing/integration.rb:333:in `block (2 levels) in <module:Runner>'
229
- /Users/jeff/workspace/source-sans-pro-rails/test/source_sans_pro_test.rb:11:in `block in <class:SourceSansProTest>'
230
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:949:in `run'
231
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit/testcase.rb:17:in `run'
232
- activesupport (3.2.13) lib/active_support/testing/setup_and_teardown.rb:36:in `block in run'
233
- activesupport (3.2.13) lib/active_support/callbacks.rb:425:in `_run__2369183075529928076__setup__1128233628999220084__callbacks'
234
- activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
235
- activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_setup_callbacks'
236
- activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
237
- activesupport (3.2.13) lib/active_support/testing/setup_and_teardown.rb:35:in `run'
238
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:787:in `block in _run_suite'
239
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:780:in `map'
240
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:780:in `_run_suite'
241
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:565:in `block in _run_suites'
242
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:563:in `each'
243
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:563:in `_run_suites'
244
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:746:in `_run_anything'
245
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:909:in `run_tests'
246
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:896:in `block in _run'
247
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:895:in `each'
248
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:895:in `_run'
249
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:884:in `run'
250
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:21:in `run'
251
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:326:in `block (2 levels) in autorun'
252
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:27:in `run_once'
253
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:325:in `block in autorun'
254
-
255
-
256
- Started GET "/assets/source-sans-pro.css" for 127.0.0.1 at 2013-06-07 15:47:13 -0400
257
- Served asset /source-sans-pro.css - 404 Not Found (1ms)
258
-
259
- ActionController::RoutingError (No route matches [GET] "/assets/source-sans-pro.css"):
260
- actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
261
- actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
262
- railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
263
- railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
264
- activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
265
- railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
266
- actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
267
- rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
268
- rack (1.4.5) lib/rack/runtime.rb:17:in `call'
269
- activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
270
- rack (1.4.5) lib/rack/lock.rb:15:in `call'
271
- actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
272
- railties (3.2.13) lib/rails/engine.rb:479:in `call'
273
- railties (3.2.13) lib/rails/application.rb:223:in `call'
274
- rack-test (0.6.2) lib/rack/mock_session.rb:30:in `request'
275
- rack-test (0.6.2) lib/rack/test.rb:230:in `process_request'
276
- rack-test (0.6.2) lib/rack/test.rb:123:in `request'
277
- actionpack (3.2.13) lib/action_dispatch/testing/integration.rb:299:in `process'
278
- actionpack (3.2.13) lib/action_dispatch/testing/integration.rb:33:in `get'
279
- actionpack (3.2.13) lib/action_dispatch/testing/integration.rb:333:in `block (2 levels) in <module:Runner>'
280
- /Users/jeff/workspace/source-sans-pro-rails/test/source_sans_pro_test.rb:20:in `block in <class:SourceSansProTest>'
281
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:949:in `run'
282
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit/testcase.rb:17:in `run'
283
- activesupport (3.2.13) lib/active_support/testing/setup_and_teardown.rb:36:in `block in run'
284
- activesupport (3.2.13) lib/active_support/callbacks.rb:425:in `_run__2369183075529928076__setup__1128233628999220084__callbacks'
285
- activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
286
- activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_setup_callbacks'
287
- activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
288
- activesupport (3.2.13) lib/active_support/testing/setup_and_teardown.rb:35:in `run'
289
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:787:in `block in _run_suite'
290
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:780:in `map'
291
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:780:in `_run_suite'
292
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:565:in `block in _run_suites'
293
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:563:in `each'
294
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:563:in `_run_suites'
295
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:746:in `_run_anything'
296
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:909:in `run_tests'
297
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:896:in `block in _run'
298
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:895:in `each'
299
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:895:in `_run'
300
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:884:in `run'
301
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:21:in `run'
302
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:326:in `block (2 levels) in autorun'
303
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:27:in `run_once'
304
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:325:in `block in autorun'
305
-
306
-
307
- Started GET "/assets/sourcesanspro-regular.eot" for 127.0.0.1 at 2013-06-07 15:47:48 -0400
308
- Served asset /sourcesanspro-regular.eot - 404 Not Found (1ms)
309
-
310
- ActionController::RoutingError (No route matches [GET] "/assets/sourcesanspro-regular.eot"):
311
- actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
312
- actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
313
- railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
314
- railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
315
- activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
316
- railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
317
- actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
318
- rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
319
- rack (1.4.5) lib/rack/runtime.rb:17:in `call'
320
- activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
321
- rack (1.4.5) lib/rack/lock.rb:15:in `call'
322
- actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
323
- railties (3.2.13) lib/rails/engine.rb:479:in `call'
324
- railties (3.2.13) lib/rails/application.rb:223:in `call'
325
- rack-test (0.6.2) lib/rack/mock_session.rb:30:in `request'
326
- rack-test (0.6.2) lib/rack/test.rb:230:in `process_request'
327
- rack-test (0.6.2) lib/rack/test.rb:123:in `request'
328
- actionpack (3.2.13) lib/action_dispatch/testing/integration.rb:299:in `process'
329
- actionpack (3.2.13) lib/action_dispatch/testing/integration.rb:33:in `get'
330
- actionpack (3.2.13) lib/action_dispatch/testing/integration.rb:333:in `block (2 levels) in <module:Runner>'
331
- /Users/jeff/workspace/source-sans-pro-rails/test/source_sans_pro_test.rb:11:in `block in <class:SourceSansProTest>'
332
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:949:in `run'
333
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit/testcase.rb:17:in `run'
334
- activesupport (3.2.13) lib/active_support/testing/setup_and_teardown.rb:36:in `block in run'
335
- activesupport (3.2.13) lib/active_support/callbacks.rb:425:in `_run__4521474723195413073__setup__857559051343159298__callbacks'
336
- activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
337
- activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_setup_callbacks'
338
- activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
339
- activesupport (3.2.13) lib/active_support/testing/setup_and_teardown.rb:35:in `run'
340
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:787:in `block in _run_suite'
341
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:780:in `map'
342
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:780:in `_run_suite'
343
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:565:in `block in _run_suites'
344
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:563:in `each'
345
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:563:in `_run_suites'
346
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:746:in `_run_anything'
347
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:909:in `run_tests'
348
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:896:in `block in _run'
349
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:895:in `each'
350
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:895:in `_run'
351
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:884:in `run'
352
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:21:in `run'
353
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:326:in `block (2 levels) in autorun'
354
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:27:in `run_once'
355
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:325:in `block in autorun'
356
-
357
-
358
- Started GET "/assets/source-sans-pro.css" for 127.0.0.1 at 2013-06-07 15:47:48 -0400
359
- Served asset /source-sans-pro.css - 404 Not Found (1ms)
360
-
361
- ActionController::RoutingError (No route matches [GET] "/assets/source-sans-pro.css"):
362
- actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
363
- actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
364
- railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
365
- railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
366
- activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
367
- railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
368
- actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
369
- rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
370
- rack (1.4.5) lib/rack/runtime.rb:17:in `call'
371
- activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
372
- rack (1.4.5) lib/rack/lock.rb:15:in `call'
373
- actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
374
- railties (3.2.13) lib/rails/engine.rb:479:in `call'
375
- railties (3.2.13) lib/rails/application.rb:223:in `call'
376
- rack-test (0.6.2) lib/rack/mock_session.rb:30:in `request'
377
- rack-test (0.6.2) lib/rack/test.rb:230:in `process_request'
378
- rack-test (0.6.2) lib/rack/test.rb:123:in `request'
379
- actionpack (3.2.13) lib/action_dispatch/testing/integration.rb:299:in `process'
380
- actionpack (3.2.13) lib/action_dispatch/testing/integration.rb:33:in `get'
381
- actionpack (3.2.13) lib/action_dispatch/testing/integration.rb:333:in `block (2 levels) in <module:Runner>'
382
- /Users/jeff/workspace/source-sans-pro-rails/test/source_sans_pro_test.rb:20:in `block in <class:SourceSansProTest>'
383
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:949:in `run'
384
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit/testcase.rb:17:in `run'
385
- activesupport (3.2.13) lib/active_support/testing/setup_and_teardown.rb:36:in `block in run'
386
- activesupport (3.2.13) lib/active_support/callbacks.rb:425:in `_run__4521474723195413073__setup__857559051343159298__callbacks'
387
- activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
388
- activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_setup_callbacks'
389
- activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
390
- activesupport (3.2.13) lib/active_support/testing/setup_and_teardown.rb:35:in `run'
391
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:787:in `block in _run_suite'
392
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:780:in `map'
393
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:780:in `_run_suite'
394
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:565:in `block in _run_suites'
395
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:563:in `each'
396
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:563:in `_run_suites'
397
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:746:in `_run_anything'
398
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:909:in `run_tests'
399
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:896:in `block in _run'
400
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:895:in `each'
401
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:895:in `_run'
402
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:884:in `run'
403
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:21:in `run'
404
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:326:in `block (2 levels) in autorun'
405
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:27:in `run_once'
406
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:325:in `block in autorun'
407
-
408
-
409
- Started GET "/assets/sourcesanspro-regular.eot" for 127.0.0.1 at 2013-06-07 15:49:09 -0400
410
- Served asset /sourcesanspro-regular.eot - 404 Not Found (2ms)
411
-
412
- ActionController::RoutingError (No route matches [GET] "/assets/sourcesanspro-regular.eot"):
413
- actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
414
- actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
415
- railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
416
- railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
417
- activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
418
- railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
419
- actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
420
- rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
421
- rack (1.4.5) lib/rack/runtime.rb:17:in `call'
422
- activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
423
- rack (1.4.5) lib/rack/lock.rb:15:in `call'
424
- actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
425
- railties (3.2.13) lib/rails/engine.rb:479:in `call'
426
- railties (3.2.13) lib/rails/application.rb:223:in `call'
427
- rack-test (0.6.2) lib/rack/mock_session.rb:30:in `request'
428
- rack-test (0.6.2) lib/rack/test.rb:230:in `process_request'
429
- rack-test (0.6.2) lib/rack/test.rb:123:in `request'
430
- actionpack (3.2.13) lib/action_dispatch/testing/integration.rb:299:in `process'
431
- actionpack (3.2.13) lib/action_dispatch/testing/integration.rb:33:in `get'
432
- actionpack (3.2.13) lib/action_dispatch/testing/integration.rb:333:in `block (2 levels) in <module:Runner>'
433
- /Users/jeff/workspace/source-sans-pro-rails/test/source_sans_pro_test.rb:11:in `block in <class:SourceSansProTest>'
434
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:949:in `run'
435
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit/testcase.rb:17:in `run'
436
- activesupport (3.2.13) lib/active_support/testing/setup_and_teardown.rb:36:in `block in run'
437
- activesupport (3.2.13) lib/active_support/callbacks.rb:425:in `_run__3640528987917236262__setup__4017335125608209871__callbacks'
438
- activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
439
- activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_setup_callbacks'
440
- activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
441
- activesupport (3.2.13) lib/active_support/testing/setup_and_teardown.rb:35:in `run'
442
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:787:in `block in _run_suite'
443
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:780:in `map'
444
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:780:in `_run_suite'
445
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:565:in `block in _run_suites'
446
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:563:in `each'
447
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:563:in `_run_suites'
448
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:746:in `_run_anything'
449
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:909:in `run_tests'
450
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:896:in `block in _run'
451
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:895:in `each'
452
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:895:in `_run'
453
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/minitest/unit.rb:884:in `run'
454
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:21:in `run'
455
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:326:in `block (2 levels) in autorun'
456
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:27:in `run_once'
457
- /Users/jeff/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/test/unit.rb:325:in `block in autorun'
458
-
459
-
460
- Started GET "/assets/source-sans-pro.css" for 127.0.0.1 at 2013-06-07 15:49:09 -0400
461
- Compiled source-sans-pro.css (31ms) (pid 54252)
462
- Served asset /source-sans-pro.css - 200 OK (47ms)
463
- Started GET "/assets/sourcesanspro-regular-webfont.eot" for 127.0.0.1 at 2013-06-07 15:53:26 -0400
464
- Served asset /sourcesanspro-regular-webfont.eot - 200 OK (627ms)
465
- Started GET "/assets/sourcesanspro-regular-webfont.ttf" for 127.0.0.1 at 2013-06-07 15:53:27 -0400
466
- Served asset /sourcesanspro-regular-webfont.ttf - 200 OK (8ms)
467
- Started GET "/assets/sourcesanspro-regular-webfont.woff" for 127.0.0.1 at 2013-06-07 15:53:27 -0400
468
- Served asset /sourcesanspro-regular-webfont.woff - 200 OK (43ms)
469
- Started GET "/assets/source-sans-pro.css" for 127.0.0.1 at 2013-06-07 15:53:27 -0400
470
- Compiled source-sans-pro.css (29ms) (pid 54447)
471
- Served asset /source-sans-pro.css - 200 OK (79ms)
472
- Started GET "/assets/sourcesanspro-regular-webfont.eot" for 127.0.0.1 at 2013-06-07 15:54:14 -0400
473
- Served asset /sourcesanspro-regular-webfont.eot - 200 OK (8ms)
474
- Started GET "/assets/sourcesanspro-regular-webfont.ttf" for 127.0.0.1 at 2013-06-07 15:54:14 -0400
475
- Served asset /sourcesanspro-regular-webfont.ttf - 200 OK (10ms)
476
- Started GET "/assets/sourcesanspro-regular-webfont.woff" for 127.0.0.1 at 2013-06-07 15:54:14 -0400
477
- Served asset /sourcesanspro-regular-webfont.woff - 200 OK (9ms)
478
- Started GET "/assets/source-sans-pro.css" for 127.0.0.1 at 2013-06-07 15:54:14 -0400
479
- Compiled source-sans-pro.css (30ms) (pid 54538)
480
- Served asset /source-sans-pro.css - 200 OK (44ms)
481
- Started GET "/assets/sourcesanspro-regular-webfont.eot" for 127.0.0.1 at 2013-06-07 15:59:57 -0400
482
- Served asset /sourcesanspro-regular-webfont.eot - 200 OK (8ms)
483
- Started GET "/assets/sourcesanspro-regular-webfont.ttf" for 127.0.0.1 at 2013-06-07 15:59:57 -0400
484
- Served asset /sourcesanspro-regular-webfont.ttf - 200 OK (9ms)
485
- Started GET "/assets/sourcesanspro-regular-webfont.woff" for 127.0.0.1 at 2013-06-07 15:59:57 -0400
486
- Served asset /sourcesanspro-regular-webfont.woff - 200 OK (9ms)
487
- Started GET "/assets/source-sans-pro.css" for 127.0.0.1 at 2013-06-07 15:59:57 -0400
488
- Error compiling asset source-sans-pro.css:
489
- Sass::SyntaxError: Invalid CSS after "@include ": expected identifier, was "'source-sans-pr..."
490
- (in /Users/jeff/workspace/source-sans-pro-rails/app/assets/stylesheets/source-sans-pro.css.scss)
491
- Served asset /source-sans-pro.css - 500 Internal Server Error
492
-
493
-
494
- Started GET "/assets/sourcesanspro-regular-webfont.eot" for 127.0.0.1 at 2013-06-07 16:00:54 -0400
495
- Served asset /sourcesanspro-regular-webfont.eot - 200 OK (9ms)
496
- Started GET "/assets/sourcesanspro-regular-webfont.ttf" for 127.0.0.1 at 2013-06-07 16:00:54 -0400
497
- Served asset /sourcesanspro-regular-webfont.ttf - 200 OK (8ms)
498
- Started GET "/assets/sourcesanspro-regular-webfont.woff" for 127.0.0.1 at 2013-06-07 16:00:54 -0400
499
- Served asset /sourcesanspro-regular-webfont.woff - 200 OK (8ms)
500
- Started GET "/assets/source-sans-pro.css" for 127.0.0.1 at 2013-06-07 16:00:54 -0400
501
- Compiled source-sans-pro.css (32ms) (pid 55225)
502
- Served asset /source-sans-pro.css - 200 OK (48ms)
503
- Started GET "/assets/sourcesanspro-regular-webfont.eot" for 127.0.0.1 at 2013-06-07 16:03:46 -0400
504
- Served asset /sourcesanspro-regular-webfont.eot - 200 OK (10ms)
505
- Started GET "/assets/sourcesanspro-regular-webfont.ttf" for 127.0.0.1 at 2013-06-07 16:03:46 -0400
506
- Served asset /sourcesanspro-regular-webfont.ttf - 200 OK (8ms)
507
- Started GET "/assets/sourcesanspro-regular-webfont.woff" for 127.0.0.1 at 2013-06-07 16:03:46 -0400
508
- Served asset /sourcesanspro-regular-webfont.woff - 200 OK (9ms)
509
- Started GET "/assets/source-sans-pro.css" for 127.0.0.1 at 2013-06-07 16:03:46 -0400
510
- Compiled source-sans-pro.css (35ms) (pid 55383)
511
- Served asset /source-sans-pro.css - 200 OK (53ms)
512
- Started GET "/assets/source-sans-pro/light.css" for 127.0.0.1 at 2013-06-07 16:03:46 -0400
513
- Compiled source-sans-pro/light.css (7ms) (pid 55383)
514
- Served asset /source-sans-pro/light.css - 200 OK (52ms)
515
- Started GET "/assets/source-sans-pro.css" for 127.0.0.1 at 2013-06-07 16:03:46 -0400
516
- Served asset /source-sans-pro.css - 200 OK (0ms)
517
- Started GET "/assets/sourcesanspro-regular-webfont.eot" for 127.0.0.1 at 2013-06-07 16:06:06 -0400
518
- Served asset /sourcesanspro-regular-webfont.eot - 200 OK (8ms)
519
- Started GET "/assets/sourcesanspro-regular-webfont.ttf" for 127.0.0.1 at 2013-06-07 16:06:06 -0400
520
- Served asset /sourcesanspro-regular-webfont.ttf - 200 OK (9ms)
521
- Started GET "/assets/sourcesanspro-regular-webfont.woff" for 127.0.0.1 at 2013-06-07 16:06:06 -0400
522
- Served asset /sourcesanspro-regular-webfont.woff - 200 OK (8ms)
523
- Started GET "/assets/source-sans-pro.css" for 127.0.0.1 at 2013-06-07 16:06:06 -0400
524
- Compiled source-sans-pro.css (32ms) (pid 55486)
525
- Served asset /source-sans-pro.css - 200 OK (47ms)
526
- Started GET "/assets/source-sans-pro/light.css" for 127.0.0.1 at 2013-06-07 16:06:06 -0400
527
- Compiled source-sans-pro/light.css (6ms) (pid 55486)
528
- Served asset /source-sans-pro/light.css - 200 OK (48ms)
529
- Started GET "/assets/source-sans-pro.css" for 127.0.0.1 at 2013-06-07 16:06:06 -0400
530
- Served asset /source-sans-pro.css - 200 OK (0ms)
531
- Started GET "/assets/sourcesanspro-regular-webfont.eot" for 127.0.0.1 at 2013-06-07 16:06:29 -0400
532
- Served asset /sourcesanspro-regular-webfont.eot - 200 OK (8ms)
533
- Started GET "/assets/sourcesanspro-regular-webfont.ttf" for 127.0.0.1 at 2013-06-07 16:06:29 -0400
534
- Served asset /sourcesanspro-regular-webfont.ttf - 200 OK (8ms)
535
- Started GET "/assets/sourcesanspro-regular-webfont.woff" for 127.0.0.1 at 2013-06-07 16:06:29 -0400
536
- Served asset /sourcesanspro-regular-webfont.woff - 200 OK (8ms)
537
- Started GET "/assets/source-sans-pro.css" for 127.0.0.1 at 2013-06-07 16:06:29 -0400
538
- Compiled source-sans-pro.css (33ms) (pid 55548)
539
- Served asset /source-sans-pro.css - 200 OK (48ms)
540
- Started GET "/assets/source-sans-pro/light.css" for 127.0.0.1 at 2013-06-07 16:06:29 -0400
541
- Compiled source-sans-pro/light.css (6ms) (pid 55548)
542
- Served asset /source-sans-pro/light.css - 200 OK (48ms)
543
- Started GET "/assets/source-sans-pro.css" for 127.0.0.1 at 2013-06-07 16:06:29 -0400
544
- Served asset /source-sans-pro.css - 200 OK (0ms)
545
- Started GET "/assets/sourcesanspro-regular-webfont.eot" for 127.0.0.1 at 2013-06-07 16:07:41 -0400
546
- Served asset /sourcesanspro-regular-webfont.eot - 200 OK (8ms)
547
- Started GET "/assets/sourcesanspro-regular-webfont.ttf" for 127.0.0.1 at 2013-06-07 16:07:41 -0400
548
- Served asset /sourcesanspro-regular-webfont.ttf - 200 OK (9ms)
549
- Started GET "/assets/sourcesanspro-regular-webfont.woff" for 127.0.0.1 at 2013-06-07 16:07:41 -0400
550
- Served asset /sourcesanspro-regular-webfont.woff - 200 OK (8ms)
551
- Started GET "/assets/source-sans-pro.css" for 127.0.0.1 at 2013-06-07 16:07:41 -0400
552
- Compiled source-sans-pro.css (32ms) (pid 55624)
553
- Served asset /source-sans-pro.css - 200 OK (47ms)
554
- Started GET "/assets/source-sans-pro/light.css" for 127.0.0.1 at 2013-06-07 16:07:41 -0400
555
- Compiled source-sans-pro/light.css (6ms) (pid 55624)
556
- Served asset /source-sans-pro/light.css - 200 OK (47ms)
557
- Started GET "/assets/source-sans-pro.css" for 127.0.0.1 at 2013-06-07 16:07:41 -0400
558
- Served asset /source-sans-pro.css - 200 OK (0ms)
559
- Started GET "/assets/sourcesanspro-regular-webfont.eot" for 127.0.0.1 at 2013-06-07 16:12:28 -0400
560
- Served asset /sourcesanspro-regular-webfont.eot - 200 OK (8ms)
561
- Started GET "/assets/sourcesanspro-regular-webfont.ttf" for 127.0.0.1 at 2013-06-07 16:12:28 -0400
562
- Served asset /sourcesanspro-regular-webfont.ttf - 200 OK (8ms)
563
- Started GET "/assets/sourcesanspro-regular-webfont.woff" for 127.0.0.1 at 2013-06-07 16:12:28 -0400
564
- Served asset /sourcesanspro-regular-webfont.woff - 200 OK (9ms)
565
- Started GET "/assets/source-sans-pro.css" for 127.0.0.1 at 2013-06-07 16:12:28 -0400
566
- Compiled source-sans-pro.css (33ms) (pid 55990)
567
- Served asset /source-sans-pro.css - 200 OK (48ms)
568
- Started GET "/assets/source-sans-pro/black.css" for 127.0.0.1 at 2013-06-07 16:12:28 -0400
569
- Compiled source-sans-pro/black.css (6ms) (pid 55990)
570
- Served asset /source-sans-pro/black.css - 200 OK (47ms)
571
- Started GET "/assets/source-sans-pro/bold.css" for 127.0.0.1 at 2013-06-07 16:12:28 -0400
572
- Compiled source-sans-pro/bold.css (6ms) (pid 55990)
573
- Served asset /source-sans-pro/bold.css - 200 OK (20ms)
574
- Started GET "/assets/source-sans-pro/extralight.css" for 127.0.0.1 at 2013-06-07 16:12:28 -0400
575
- Compiled source-sans-pro/extralight.css (6ms) (pid 55990)
576
- Served asset /source-sans-pro/extralight.css - 200 OK (21ms)
577
- Started GET "/assets/source-sans-pro/italic.css" for 127.0.0.1 at 2013-06-07 16:12:28 -0400
578
- Compiled source-sans-pro/italic.css (6ms) (pid 55990)
579
- Served asset /source-sans-pro/italic.css - 200 OK (21ms)
580
- Started GET "/assets/source-sans-pro/light.css" for 127.0.0.1 at 2013-06-07 16:12:28 -0400
581
- Compiled source-sans-pro/light.css (6ms) (pid 55990)
582
- Served asset /source-sans-pro/light.css - 200 OK (49ms)
583
- Started GET "/assets/source-sans-pro/regular.css" for 127.0.0.1 at 2013-06-07 16:12:28 -0400
584
- Compiled source-sans-pro/regular.css (6ms) (pid 55990)
585
- Served asset /source-sans-pro/regular.css - 200 OK (20ms)
586
- Started GET "/assets/source-sans-pro/semibold.css" for 127.0.0.1 at 2013-06-07 16:12:28 -0400
587
- Compiled source-sans-pro/semibold.css (6ms) (pid 55990)
588
- Served asset /source-sans-pro/semibold.css - 200 OK (19ms)
589
- Started GET "/assets/source-sans-pro.css" for 127.0.0.1 at 2013-06-07 16:12:28 -0400
590
- Served asset /source-sans-pro.css - 200 OK (0ms)
591
- Started GET "/assets/sourcesanspro-regular-webfont.eot" for 127.0.0.1 at 2013-06-07 16:13:14 -0400
592
- Served asset /sourcesanspro-regular-webfont.eot - 200 OK (8ms)
593
- Started GET "/assets/sourcesanspro-regular-webfont.ttf" for 127.0.0.1 at 2013-06-07 16:13:14 -0400
594
- Served asset /sourcesanspro-regular-webfont.ttf - 200 OK (8ms)
595
- Started GET "/assets/sourcesanspro-regular-webfont.woff" for 127.0.0.1 at 2013-06-07 16:13:14 -0400
596
- Served asset /sourcesanspro-regular-webfont.woff - 200 OK (9ms)
597
- Started GET "/assets/sourcesanspro-regular-webfont.svg" for 127.0.0.1 at 2013-06-07 16:13:14 -0400
598
- Served asset /sourcesanspro-regular-webfont.svg - 200 OK (9ms)
599
- Started GET "/assets/source-sans-pro.css" for 127.0.0.1 at 2013-06-07 16:13:14 -0400
600
- Compiled source-sans-pro.css (32ms) (pid 56061)
601
- Served asset /source-sans-pro.css - 200 OK (72ms)
602
- Started GET "/assets/source-sans-pro/black.css" for 127.0.0.1 at 2013-06-07 16:13:14 -0400
603
- Compiled source-sans-pro/black.css (6ms) (pid 56061)
604
- Served asset /source-sans-pro/black.css - 200 OK (23ms)
605
- Started GET "/assets/source-sans-pro/bold.css" for 127.0.0.1 at 2013-06-07 16:13:14 -0400
606
- Compiled source-sans-pro/bold.css (7ms) (pid 56061)
607
- Served asset /source-sans-pro/bold.css - 200 OK (20ms)
608
- Started GET "/assets/source-sans-pro/extralight.css" for 127.0.0.1 at 2013-06-07 16:13:14 -0400
609
- Compiled source-sans-pro/extralight.css (6ms) (pid 56061)
610
- Served asset /source-sans-pro/extralight.css - 200 OK (22ms)
611
- Started GET "/assets/source-sans-pro/italic.css" for 127.0.0.1 at 2013-06-07 16:13:14 -0400
612
- Compiled source-sans-pro/italic.css (9ms) (pid 56061)
613
- Served asset /source-sans-pro/italic.css - 200 OK (27ms)
614
- Started GET "/assets/source-sans-pro/light.css" for 127.0.0.1 at 2013-06-07 16:13:14 -0400
615
- Compiled source-sans-pro/light.css (6ms) (pid 56061)
616
- Served asset /source-sans-pro/light.css - 200 OK (51ms)
617
- Started GET "/assets/source-sans-pro/regular.css" for 127.0.0.1 at 2013-06-07 16:13:14 -0400
618
- Compiled source-sans-pro/regular.css (6ms) (pid 56061)
619
- Served asset /source-sans-pro/regular.css - 200 OK (22ms)
620
- Started GET "/assets/source-sans-pro/semibold.css" for 127.0.0.1 at 2013-06-07 16:13:14 -0400
621
- Compiled source-sans-pro/semibold.css (6ms) (pid 56061)
622
- Served asset /source-sans-pro/semibold.css - 200 OK (20ms)
623
- Started GET "/assets/source-sans-pro.css" for 127.0.0.1 at 2013-06-07 16:13:14 -0400
624
- Served asset /source-sans-pro.css - 200 OK (0ms)
625
- Started GET "/assets/sourcesanspro-regular-webfont.eot" for 127.0.0.1 at 2013-06-07 16:14:31 -0400
626
- Served asset /sourcesanspro-regular-webfont.eot - 200 OK (8ms)
627
- Started GET "/assets/sourcesanspro-regular-webfont.ttf" for 127.0.0.1 at 2013-06-07 16:14:31 -0400
628
- Served asset /sourcesanspro-regular-webfont.ttf - 200 OK (8ms)
629
- Started GET "/assets/sourcesanspro-regular-webfont.woff" for 127.0.0.1 at 2013-06-07 16:14:31 -0400
630
- Served asset /sourcesanspro-regular-webfont.woff - 200 OK (8ms)
631
- Started GET "/assets/sourcesanspro-regular-webfont.svg" for 127.0.0.1 at 2013-06-07 16:14:31 -0400
632
- Served asset /sourcesanspro-regular-webfont.svg - 200 OK (8ms)
633
- Started GET "/assets/source-sans-pro.css" for 127.0.0.1 at 2013-06-07 16:14:31 -0400
634
- Compiled source-sans-pro/black.css (12ms) (pid 56174)
635
- Compiled source-sans-pro/bold.css (6ms) (pid 56174)
636
- Compiled source-sans-pro/extralight.css (6ms) (pid 56174)
637
- Compiled source-sans-pro/font-helper.css (1ms) (pid 56174)
638
- Compiled source-sans-pro/italic.css (6ms) (pid 56174)
639
- Compiled source-sans-pro/light.css (7ms) (pid 56174)
640
- Compiled source-sans-pro/regular.css (6ms) (pid 56174)
641
- Compiled source-sans-pro/semibold.css (6ms) (pid 56174)
642
- Compiled source-sans-pro.css (191ms) (pid 56174)
643
- Served asset /source-sans-pro.css - 200 OK (206ms)
644
- Started GET "/assets/source-sans-pro/black.css" for 127.0.0.1 at 2013-06-07 16:14:31 -0400
645
- Served asset /source-sans-pro/black.css - 200 OK (9ms)
646
- Started GET "/assets/source-sans-pro/bold.css" for 127.0.0.1 at 2013-06-07 16:14:31 -0400
647
- Served asset /source-sans-pro/bold.css - 200 OK (6ms)
648
- Started GET "/assets/source-sans-pro/extralight.css" for 127.0.0.1 at 2013-06-07 16:14:31 -0400
649
- Served asset /source-sans-pro/extralight.css - 200 OK (6ms)
650
- Started GET "/assets/source-sans-pro/italic.css" for 127.0.0.1 at 2013-06-07 16:14:31 -0400
651
- Served asset /source-sans-pro/italic.css - 200 OK (6ms)
652
- Started GET "/assets/source-sans-pro/light.css" for 127.0.0.1 at 2013-06-07 16:14:31 -0400
653
- Served asset /source-sans-pro/light.css - 200 OK (6ms)
654
- Started GET "/assets/source-sans-pro/regular.css" for 127.0.0.1 at 2013-06-07 16:14:31 -0400
655
- Served asset /source-sans-pro/regular.css - 200 OK (6ms)
656
- Started GET "/assets/source-sans-pro/semibold.css" for 127.0.0.1 at 2013-06-07 16:14:31 -0400
657
- Served asset /source-sans-pro/semibold.css - 200 OK (6ms)
658
- Started GET "/assets/source-sans-pro.css" for 127.0.0.1 at 2013-06-07 16:14:31 -0400
659
- Served asset /source-sans-pro.css - 200 OK (0ms)
660
- Started GET "/assets/sourcesanspro-regular-webfont.eot" for 127.0.0.1 at 2013-06-07 16:16:12 -0400
661
- Served asset /sourcesanspro-regular-webfont.eot - 200 OK (8ms)
662
- Started GET "/assets/sourcesanspro-regular-webfont.ttf" for 127.0.0.1 at 2013-06-07 16:16:12 -0400
663
- Served asset /sourcesanspro-regular-webfont.ttf - 200 OK (9ms)
664
- Started GET "/assets/sourcesanspro-regular-webfont.woff" for 127.0.0.1 at 2013-06-07 16:16:12 -0400
665
- Served asset /sourcesanspro-regular-webfont.woff - 200 OK (9ms)
666
- Started GET "/assets/sourcesanspro-regular-webfont.svg" for 127.0.0.1 at 2013-06-07 16:16:12 -0400
667
- Served asset /sourcesanspro-regular-webfont.svg - 200 OK (8ms)
668
- Started GET "/assets/source-sans-pro.css" for 127.0.0.1 at 2013-06-07 16:16:12 -0400
669
- Compiled source-sans-pro/black.css (13ms) (pid 56263)
670
- Compiled source-sans-pro/bold.css (35ms) (pid 56263)
671
- Compiled source-sans-pro/extralight.css (10ms) (pid 56263)
672
- Compiled source-sans-pro/font-helper.css (1ms) (pid 56263)
673
- Compiled source-sans-pro/italic.css (6ms) (pid 56263)
674
- Compiled source-sans-pro/light.css (8ms) (pid 56263)
675
- Compiled source-sans-pro/regular.css (6ms) (pid 56263)
676
- Compiled source-sans-pro/semibold.css (6ms) (pid 56263)
677
- Compiled source-sans-pro/index.css (2894ms) (pid 56263)
678
- Served asset /source-sans-pro.css - 200 OK (2909ms)
679
- Started GET "/assets/source-sans-pro/black.css" for 127.0.0.1 at 2013-06-07 16:16:15 -0400
680
- Served asset /source-sans-pro/black.css - 200 OK (8ms)
681
- Started GET "/assets/source-sans-pro/bold.css" for 127.0.0.1 at 2013-06-07 16:16:15 -0400
682
- Served asset /source-sans-pro/bold.css - 200 OK (7ms)
683
- Started GET "/assets/source-sans-pro/extralight.css" for 127.0.0.1 at 2013-06-07 16:16:15 -0400
684
- Served asset /source-sans-pro/extralight.css - 200 OK (8ms)
685
- Started GET "/assets/source-sans-pro/italic.css" for 127.0.0.1 at 2013-06-07 16:16:15 -0400
686
- Served asset /source-sans-pro/italic.css - 200 OK (8ms)
687
- Started GET "/assets/source-sans-pro/light.css" for 127.0.0.1 at 2013-06-07 16:16:15 -0400
688
- Served asset /source-sans-pro/light.css - 200 OK (8ms)
689
- Started GET "/assets/source-sans-pro/regular.css" for 127.0.0.1 at 2013-06-07 16:16:15 -0400
690
- Served asset /source-sans-pro/regular.css - 200 OK (11ms)
691
- Started GET "/assets/source-sans-pro/semibold.css" for 127.0.0.1 at 2013-06-07 16:16:15 -0400
692
- Served asset /source-sans-pro/semibold.css - 200 OK (34ms)
693
- Started GET "/assets/source-sans-pro.css" for 127.0.0.1 at 2013-06-07 16:16:15 -0400
694
- Served asset /source-sans-pro.css - 200 OK (0ms)
695
- Started GET "/assets/sourcesanspro-regular-webfont.eot" for 127.0.0.1 at 2013-06-07 16:16:56 -0400
696
- Served asset /sourcesanspro-regular-webfont.eot - 200 OK (8ms)
697
- Started GET "/assets/sourcesanspro-regular-webfont.ttf" for 127.0.0.1 at 2013-06-07 16:16:56 -0400
698
- Served asset /sourcesanspro-regular-webfont.ttf - 200 OK (9ms)
699
- Started GET "/assets/sourcesanspro-regular-webfont.woff" for 127.0.0.1 at 2013-06-07 16:16:56 -0400
700
- Served asset /sourcesanspro-regular-webfont.woff - 200 OK (8ms)
701
- Started GET "/assets/sourcesanspro-regular-webfont.svg" for 127.0.0.1 at 2013-06-07 16:16:56 -0400
702
- Served asset /sourcesanspro-regular-webfont.svg - 200 OK (9ms)
703
- Started GET "/assets/source-sans-pro.css" for 127.0.0.1 at 2013-06-07 16:16:56 -0400
704
- Compiled source-sans-pro/black.css (14ms) (pid 56334)
705
- Compiled source-sans-pro/bold.css (33ms) (pid 56334)
706
- Compiled source-sans-pro/extralight.css (7ms) (pid 56334)
707
- Compiled source-sans-pro/font-helper.css (2ms) (pid 56334)
708
- Compiled source-sans-pro/italic.css (8ms) (pid 56334)
709
- Compiled source-sans-pro/light.css (7ms) (pid 56334)
710
- Compiled source-sans-pro/regular.css (7ms) (pid 56334)
711
- Compiled source-sans-pro/semibold.css (6ms) (pid 56334)
712
- Compiled source-sans-pro/index.css (203ms) (pid 56334)
713
- Served asset /source-sans-pro.css - 200 OK (222ms)
714
- Started GET "/assets/source-sans-pro/black.css" for 127.0.0.1 at 2013-06-07 16:16:56 -0400
715
- Served asset /source-sans-pro/black.css - 200 OK (8ms)
716
- Started GET "/assets/source-sans-pro/bold.css" for 127.0.0.1 at 2013-06-07 16:16:56 -0400
717
- Served asset /source-sans-pro/bold.css - 200 OK (6ms)
718
- Started GET "/assets/source-sans-pro/extralight.css" for 127.0.0.1 at 2013-06-07 16:16:56 -0400
719
- Served asset /source-sans-pro/extralight.css - 200 OK (6ms)
720
- Started GET "/assets/source-sans-pro/italic.css" for 127.0.0.1 at 2013-06-07 16:16:56 -0400
721
- Served asset /source-sans-pro/italic.css - 200 OK (6ms)
722
- Started GET "/assets/source-sans-pro/light.css" for 127.0.0.1 at 2013-06-07 16:16:56 -0400
723
- Served asset /source-sans-pro/light.css - 200 OK (6ms)
724
- Started GET "/assets/source-sans-pro/regular.css" for 127.0.0.1 at 2013-06-07 16:16:56 -0400
725
- Served asset /source-sans-pro/regular.css - 200 OK (6ms)
726
- Started GET "/assets/source-sans-pro/semibold.css" for 127.0.0.1 at 2013-06-07 16:16:56 -0400
727
- Served asset /source-sans-pro/semibold.css - 200 OK (33ms)
728
- Started GET "/assets/source-sans-pro.css" for 127.0.0.1 at 2013-06-07 16:16:57 -0400
729
- Served asset /source-sans-pro.css - 200 OK (0ms)
730
- Started GET "/assets/sourcesanspro-regular-webfont.eot" for 127.0.0.1 at 2013-06-07 16:18:34 -0400
731
- Served asset /sourcesanspro-regular-webfont.eot - 200 OK (8ms)
732
- Started GET "/assets/sourcesanspro-regular-webfont.ttf" for 127.0.0.1 at 2013-06-07 16:18:34 -0400
733
- Served asset /sourcesanspro-regular-webfont.ttf - 200 OK (10ms)
734
- Started GET "/assets/sourcesanspro-regular-webfont.woff" for 127.0.0.1 at 2013-06-07 16:18:34 -0400
735
- Served asset /sourcesanspro-regular-webfont.woff - 200 OK (8ms)
736
- Started GET "/assets/sourcesanspro-regular-webfont.svg" for 127.0.0.1 at 2013-06-07 16:18:34 -0400
737
- Served asset /sourcesanspro-regular-webfont.svg - 200 OK (8ms)
738
- Started GET "/assets/source-sans-pro.css" for 127.0.0.1 at 2013-06-07 16:18:34 -0400
739
- Compiled source-sans-pro/black.css (12ms) (pid 56570)
740
- Compiled source-sans-pro/bold.css (31ms) (pid 56570)
741
- Compiled source-sans-pro/extralight.css (6ms) (pid 56570)
742
- Compiled source-sans-pro/font-helper.css (1ms) (pid 56570)
743
- Compiled source-sans-pro/italic.css (7ms) (pid 56570)
744
- Compiled source-sans-pro/light.css (6ms) (pid 56570)
745
- Compiled source-sans-pro/regular.css (7ms) (pid 56570)
746
- Compiled source-sans-pro/semibold.css (6ms) (pid 56570)
747
- Compiled source-sans-pro/index.css (571ms) (pid 56570)
748
- Served asset /source-sans-pro.css - 200 OK (587ms)
749
- Started GET "/assets/source-sans-pro/black.css" for 127.0.0.1 at 2013-06-07 16:18:35 -0400
750
- Served asset /source-sans-pro/black.css - 200 OK (8ms)
751
- Started GET "/assets/source-sans-pro/bold.css" for 127.0.0.1 at 2013-06-07 16:18:35 -0400
752
- Served asset /source-sans-pro/bold.css - 200 OK (7ms)
753
- Started GET "/assets/source-sans-pro/extralight.css" for 127.0.0.1 at 2013-06-07 16:18:35 -0400
754
- Served asset /source-sans-pro/extralight.css - 200 OK (7ms)
755
- Started GET "/assets/source-sans-pro/italic.css" for 127.0.0.1 at 2013-06-07 16:18:35 -0400
756
- Served asset /source-sans-pro/italic.css - 200 OK (8ms)
757
- Started GET "/assets/source-sans-pro/light.css" for 127.0.0.1 at 2013-06-07 16:18:35 -0400
758
- Served asset /source-sans-pro/light.css - 200 OK (7ms)
759
- Started GET "/assets/source-sans-pro/regular.css" for 127.0.0.1 at 2013-06-07 16:18:35 -0400
760
- Served asset /source-sans-pro/regular.css - 200 OK (7ms)
761
- Started GET "/assets/source-sans-pro/semibold.css" for 127.0.0.1 at 2013-06-07 16:18:35 -0400
762
- Served asset /source-sans-pro/semibold.css - 200 OK (35ms)
763
- Started GET "/assets/source-sans-pro.css" for 127.0.0.1 at 2013-06-07 16:18:35 -0400
764
- Served asset /source-sans-pro.css - 200 OK (0ms)
765
- Started GET "/assets/sourcesanspro-regular-webfont.eot" for 127.0.0.1 at 2013-06-07 16:22:29 -0400
766
- Served asset /sourcesanspro-regular-webfont.eot - 200 OK (468ms)
767
- Started GET "/assets/sourcesanspro-regular-webfont.ttf" for 127.0.0.1 at 2013-06-07 16:22:30 -0400
768
- Served asset /sourcesanspro-regular-webfont.ttf - 200 OK (9ms)
769
- Started GET "/assets/sourcesanspro-regular-webfont.woff" for 127.0.0.1 at 2013-06-07 16:22:30 -0400
770
- Served asset /sourcesanspro-regular-webfont.woff - 200 OK (31ms)
771
- Started GET "/assets/sourcesanspro-regular-webfont.svg" for 127.0.0.1 at 2013-06-07 16:22:30 -0400
772
- Served asset /sourcesanspro-regular-webfont.svg - 200 OK (10ms)
773
- Started GET "/assets/source-sans-pro.css" for 127.0.0.1 at 2013-06-07 16:22:30 -0400
774
- Compiled source-sans-pro/black.css (13ms) (pid 57138)
775
- Compiled source-sans-pro/bold.css (6ms) (pid 57138)
776
- Compiled source-sans-pro/extralight.css (7ms) (pid 57138)
777
- Compiled source-sans-pro/font-helper.css (1ms) (pid 57138)
778
- Compiled source-sans-pro/italic.css (6ms) (pid 57138)
779
- Compiled source-sans-pro/light.css (6ms) (pid 57138)
780
- Compiled source-sans-pro/regular.css (7ms) (pid 57138)
781
- Compiled source-sans-pro/semibold.css (7ms) (pid 57138)
782
- Compiled source-sans-pro/index.css (164ms) (pid 57138)
783
- Served asset /source-sans-pro.css - 200 OK (178ms)
784
- Started GET "/assets/source-sans-pro/black.css" for 127.0.0.1 at 2013-06-07 16:22:30 -0400
785
- Served asset /source-sans-pro/black.css - 200 OK (35ms)
786
- Started GET "/assets/source-sans-pro/bold.css" for 127.0.0.1 at 2013-06-07 16:22:30 -0400
787
- Served asset /source-sans-pro/bold.css - 200 OK (7ms)
788
- Started GET "/assets/source-sans-pro/extralight.css" for 127.0.0.1 at 2013-06-07 16:22:30 -0400
789
- Served asset /source-sans-pro/extralight.css - 200 OK (7ms)
790
- Started GET "/assets/source-sans-pro/italic.css" for 127.0.0.1 at 2013-06-07 16:22:30 -0400
791
- Served asset /source-sans-pro/italic.css - 200 OK (6ms)
792
- Started GET "/assets/source-sans-pro/light.css" for 127.0.0.1 at 2013-06-07 16:22:30 -0400
793
- Served asset /source-sans-pro/light.css - 200 OK (6ms)
794
- Started GET "/assets/source-sans-pro/regular.css" for 127.0.0.1 at 2013-06-07 16:22:30 -0400
795
- Served asset /source-sans-pro/regular.css - 200 OK (6ms)
796
- Started GET "/assets/source-sans-pro/semibold.css" for 127.0.0.1 at 2013-06-07 16:22:30 -0400
797
- Served asset /source-sans-pro/semibold.css - 200 OK (6ms)
798
- Started GET "/assets/source-sans-pro.css" for 127.0.0.1 at 2013-06-07 16:22:30 -0400
799
- Served asset /source-sans-pro.css - 200 OK (0ms)
800
- Started GET "/assets/sourcesanspro-regular-webfont.eot" for 127.0.0.1 at 2013-06-07 16:24:17 -0400
801
- Served asset /sourcesanspro-regular-webfont.eot - 200 OK (8ms)
802
- Started GET "/assets/sourcesanspro-regular-webfont.ttf" for 127.0.0.1 at 2013-06-07 16:24:17 -0400
803
- Served asset /sourcesanspro-regular-webfont.ttf - 200 OK (9ms)
804
- Started GET "/assets/sourcesanspro-regular-webfont.woff" for 127.0.0.1 at 2013-06-07 16:24:17 -0400
805
- Served asset /sourcesanspro-regular-webfont.woff - 200 OK (35ms)
806
- Started GET "/assets/sourcesanspro-regular-webfont.svg" for 127.0.0.1 at 2013-06-07 16:24:17 -0400
807
- Served asset /sourcesanspro-regular-webfont.svg - 200 OK (11ms)
808
- Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2013-06-07 16:24:17 -0400
809
- Compiled source-sans-pro/black.css (13ms) (pid 57316)
810
- Compiled source-sans-pro/bold.css (6ms) (pid 57316)
811
- Compiled source-sans-pro/extralight.css (6ms) (pid 57316)
812
- Compiled source-sans-pro/font-helper.css (1ms) (pid 57316)
813
- Compiled source-sans-pro/italic.css (7ms) (pid 57316)
814
- Compiled source-sans-pro/light.css (8ms) (pid 57316)
815
- Compiled source-sans-pro/regular.css (7ms) (pid 57316)
816
- Compiled source-sans-pro/semibold.css (6ms) (pid 57316)
817
- Compiled source-sans-pro/index.css (199ms) (pid 57316)
818
- Compiled sprockets-require.css (212ms) (pid 57316)
819
- Served asset /sprockets-require.css - 200 OK (225ms)
820
- Started GET "/assets/sass-import.css" for 127.0.0.1 at 2013-06-07 16:24:17 -0400
821
- Compiled sass-import.css (6ms) (pid 57316)
822
- Served asset /sass-import.css - 200 OK (19ms)
823
- Started GET "/assets/scss-import.css" for 127.0.0.1 at 2013-06-07 16:24:17 -0400
824
- Compiled scss-import.css (7ms) (pid 57316)
825
- Served asset /scss-import.css - 200 OK (20ms)
826
- Started GET "/assets/source-sans-pro.css" for 127.0.0.1 at 2013-06-07 16:24:17 -0400
827
- Compiled source-sans-pro/black.css (11ms) (pid 57316)
828
- Compiled source-sans-pro/bold.css (6ms) (pid 57316)
829
- Compiled source-sans-pro/extralight.css (6ms) (pid 57316)
830
- Compiled source-sans-pro/font-helper.css (2ms) (pid 57316)
831
- Compiled source-sans-pro/italic.css (6ms) (pid 57316)
832
- Compiled source-sans-pro/light.css (6ms) (pid 57316)
833
- Compiled source-sans-pro/regular.css (6ms) (pid 57316)
834
- Compiled source-sans-pro/semibold.css (32ms) (pid 57316)
835
- Compiled source-sans-pro/index.css (179ms) (pid 57316)
836
- Served asset /source-sans-pro.css - 200 OK (193ms)
837
- Started GET "/assets/source-sans-pro/black.css" for 127.0.0.1 at 2013-06-07 16:24:18 -0400
838
- Served asset /source-sans-pro/black.css - 200 OK (8ms)
839
- Started GET "/assets/source-sans-pro/bold.css" for 127.0.0.1 at 2013-06-07 16:24:18 -0400
840
- Served asset /source-sans-pro/bold.css - 200 OK (6ms)
841
- Started GET "/assets/source-sans-pro/extralight.css" for 127.0.0.1 at 2013-06-07 16:24:18 -0400
842
- Served asset /source-sans-pro/extralight.css - 200 OK (6ms)
843
- Started GET "/assets/source-sans-pro/italic.css" for 127.0.0.1 at 2013-06-07 16:24:18 -0400
844
- Served asset /source-sans-pro/italic.css - 200 OK (6ms)
845
- Started GET "/assets/source-sans-pro/light.css" for 127.0.0.1 at 2013-06-07 16:24:18 -0400
846
- Served asset /source-sans-pro/light.css - 200 OK (6ms)
847
- Started GET "/assets/source-sans-pro/regular.css" for 127.0.0.1 at 2013-06-07 16:24:18 -0400
848
- Served asset /source-sans-pro/regular.css - 200 OK (6ms)
849
- Started GET "/assets/source-sans-pro/semibold.css" for 127.0.0.1 at 2013-06-07 16:24:18 -0400
850
- Served asset /source-sans-pro/semibold.css - 200 OK (7ms)
851
- Started GET "/assets/source-sans-pro.css" for 127.0.0.1 at 2013-06-07 16:24:18 -0400
852
- Served asset /source-sans-pro.css - 200 OK (0ms)
853
- Started GET "/assets/sourcesanspro-regular-webfont.eot" for 127.0.0.1 at 2013-06-07 16:24:32 -0400
854
- Served asset /sourcesanspro-regular-webfont.eot - 200 OK (10ms)
855
- Started GET "/assets/sourcesanspro-regular-webfont.ttf" for 127.0.0.1 at 2013-06-07 16:24:32 -0400
856
- Served asset /sourcesanspro-regular-webfont.ttf - 200 OK (10ms)
857
- Started GET "/assets/sourcesanspro-regular-webfont.woff" for 127.0.0.1 at 2013-06-07 16:24:32 -0400
858
- Served asset /sourcesanspro-regular-webfont.woff - 200 OK (31ms)
859
- Started GET "/assets/sourcesanspro-regular-webfont.svg" for 127.0.0.1 at 2013-06-07 16:24:32 -0400
860
- Served asset /sourcesanspro-regular-webfont.svg - 200 OK (9ms)
861
- Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2013-06-07 16:24:32 -0400
862
- Compiled source-sans-pro/black.css (13ms) (pid 57384)
863
- Compiled source-sans-pro/bold.css (7ms) (pid 57384)
864
- Compiled source-sans-pro/extralight.css (6ms) (pid 57384)
865
- Compiled source-sans-pro/font-helper.css (1ms) (pid 57384)
866
- Compiled source-sans-pro/italic.css (6ms) (pid 57384)
867
- Compiled source-sans-pro/light.css (8ms) (pid 57384)
868
- Compiled source-sans-pro/regular.css (7ms) (pid 57384)
869
- Compiled source-sans-pro/semibold.css (8ms) (pid 57384)
870
- Compiled source-sans-pro/index.css (835ms) (pid 57384)
871
- Compiled sprockets-require.css (848ms) (pid 57384)
872
- Served asset /sprockets-require.css - 200 OK (864ms)
873
- Started GET "/assets/sass-import.css" for 127.0.0.1 at 2013-06-07 16:24:33 -0400
874
- Compiled sass-import.css (6ms) (pid 57384)
875
- Served asset /sass-import.css - 200 OK (20ms)
876
- Started GET "/assets/scss-import.css" for 127.0.0.1 at 2013-06-07 16:24:33 -0400
877
- Compiled scss-import.css (7ms) (pid 57384)
878
- Served asset /scss-import.css - 200 OK (21ms)
879
- Started GET "/assets/source-sans-pro.css" for 127.0.0.1 at 2013-06-07 16:24:33 -0400
880
- Compiled source-sans-pro/black.css (12ms) (pid 57384)
881
- Compiled source-sans-pro/bold.css (6ms) (pid 57384)
882
- Compiled source-sans-pro/extralight.css (7ms) (pid 57384)
883
- Compiled source-sans-pro/font-helper.css (1ms) (pid 57384)
884
- Compiled source-sans-pro/italic.css (7ms) (pid 57384)
885
- Compiled source-sans-pro/light.css (6ms) (pid 57384)
886
- Compiled source-sans-pro/regular.css (6ms) (pid 57384)
887
- Compiled source-sans-pro/semibold.css (6ms) (pid 57384)
888
- Compiled source-sans-pro/index.css (185ms) (pid 57384)
889
- Served asset /source-sans-pro.css - 200 OK (200ms)
890
- Started GET "/assets/source-sans-pro/black.css" for 127.0.0.1 at 2013-06-07 16:24:33 -0400
891
- Served asset /source-sans-pro/black.css - 200 OK (8ms)
892
- Started GET "/assets/source-sans-pro/bold.css" for 127.0.0.1 at 2013-06-07 16:24:33 -0400
893
- Served asset /source-sans-pro/bold.css - 200 OK (6ms)
894
- Started GET "/assets/source-sans-pro/extralight.css" for 127.0.0.1 at 2013-06-07 16:24:34 -0400
895
- Served asset /source-sans-pro/extralight.css - 200 OK (6ms)
896
- Started GET "/assets/source-sans-pro/italic.css" for 127.0.0.1 at 2013-06-07 16:24:34 -0400
897
- Served asset /source-sans-pro/italic.css - 200 OK (6ms)
898
- Started GET "/assets/source-sans-pro/light.css" for 127.0.0.1 at 2013-06-07 16:24:34 -0400
899
- Served asset /source-sans-pro/light.css - 200 OK (34ms)
900
- Started GET "/assets/source-sans-pro/regular.css" for 127.0.0.1 at 2013-06-07 16:24:34 -0400
901
- Served asset /source-sans-pro/regular.css - 200 OK (7ms)
902
- Started GET "/assets/source-sans-pro/semibold.css" for 127.0.0.1 at 2013-06-07 16:24:34 -0400
903
- Served asset /source-sans-pro/semibold.css - 200 OK (7ms)
904
- Started GET "/assets/source-sans-pro.css" for 127.0.0.1 at 2013-06-07 16:24:34 -0400
905
- Served asset /source-sans-pro.css - 200 OK (0ms)
906
- Started GET "/assets/sourcesanspro-regular-webfont.eot" for 127.0.0.1 at 2013-06-07 16:26:41 -0400
907
- Served asset /sourcesanspro-regular-webfont.eot - 200 OK (10ms)
908
- Started GET "/assets/sourcesanspro-regular-webfont.ttf" for 127.0.0.1 at 2013-06-07 16:26:41 -0400
909
- Served asset /sourcesanspro-regular-webfont.ttf - 200 OK (8ms)
910
- Started GET "/assets/sourcesanspro-regular-webfont.woff" for 127.0.0.1 at 2013-06-07 16:26:41 -0400
911
- Served asset /sourcesanspro-regular-webfont.woff - 200 OK (31ms)
912
- Started GET "/assets/sourcesanspro-regular-webfont.svg" for 127.0.0.1 at 2013-06-07 16:26:41 -0400
913
- Served asset /sourcesanspro-regular-webfont.svg - 200 OK (897ms)
914
- Started GET "/assets/sprockets-require.css" for 127.0.0.1 at 2013-06-07 16:26:42 -0400
915
- Compiled source-sans-pro/black.css (12ms) (pid 57512)
916
- Compiled source-sans-pro/bold.css (7ms) (pid 57512)
917
- Compiled source-sans-pro/extralight.css (7ms) (pid 57512)
918
- Compiled source-sans-pro/font-helper.css (2ms) (pid 57512)
919
- Compiled source-sans-pro/italic.css (6ms) (pid 57512)
920
- Compiled source-sans-pro/light.css (7ms) (pid 57512)
921
- Compiled source-sans-pro/regular.css (7ms) (pid 57512)
922
- Compiled source-sans-pro/semibold.css (6ms) (pid 57512)
923
- Compiled source-sans-pro/index.css (219ms) (pid 57512)
924
- Compiled sprockets-require.css (233ms) (pid 57512)
925
- Served asset /sprockets-require.css - 200 OK (246ms)
926
- Started GET "/assets/source-sans-pro.css" for 127.0.0.1 at 2013-06-07 16:26:42 -0400
927
- Compiled source-sans-pro/black.css (12ms) (pid 57512)
928
- Compiled source-sans-pro/bold.css (6ms) (pid 57512)
929
- Compiled source-sans-pro/extralight.css (6ms) (pid 57512)
930
- Compiled source-sans-pro/font-helper.css (1ms) (pid 57512)
931
- Compiled source-sans-pro/italic.css (6ms) (pid 57512)
932
- Compiled source-sans-pro/light.css (6ms) (pid 57512)
933
- Compiled source-sans-pro/regular.css (5ms) (pid 57512)
934
- Compiled source-sans-pro/semibold.css (6ms) (pid 57512)
935
- Compiled source-sans-pro/index.css (149ms) (pid 57512)
936
- Served asset /source-sans-pro.css - 200 OK (188ms)
937
- Started GET "/assets/source-sans-pro/black.css" for 127.0.0.1 at 2013-06-07 16:26:43 -0400
938
- Served asset /source-sans-pro/black.css - 200 OK (8ms)
939
- Started GET "/assets/source-sans-pro/bold.css" for 127.0.0.1 at 2013-06-07 16:26:43 -0400
940
- Served asset /source-sans-pro/bold.css - 200 OK (6ms)
941
- Started GET "/assets/source-sans-pro/extralight.css" for 127.0.0.1 at 2013-06-07 16:26:43 -0400
942
- Served asset /source-sans-pro/extralight.css - 200 OK (7ms)
943
- Started GET "/assets/source-sans-pro/italic.css" for 127.0.0.1 at 2013-06-07 16:26:43 -0400
944
- Served asset /source-sans-pro/italic.css - 200 OK (6ms)
945
- Started GET "/assets/source-sans-pro/light.css" for 127.0.0.1 at 2013-06-07 16:26:43 -0400
946
- Served asset /source-sans-pro/light.css - 200 OK (6ms)
947
- Started GET "/assets/source-sans-pro/regular.css" for 127.0.0.1 at 2013-06-07 16:26:43 -0400
948
- Served asset /source-sans-pro/regular.css - 200 OK (6ms)
949
- Started GET "/assets/source-sans-pro/semibold.css" for 127.0.0.1 at 2013-06-07 16:26:43 -0400
950
- Served asset /source-sans-pro/semibold.css - 200 OK (6ms)
951
- Started GET "/assets/source-sans-pro.css" for 127.0.0.1 at 2013-06-07 16:26:43 -0400
952
- Served asset /source-sans-pro.css - 200 OK (0ms)