css_splitter 0.0.2 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/MIT-LICENSE +1 -1
- data/README.md +53 -10
- data/lib/css_splitter/splitter.rb +2 -46
- data/lib/css_splitter/version.rb +1 -1
- data/test/dummy/app/assets/stylesheets/test_stylesheet_with_media_queries.css +19145 -0
- data/test/dummy/app/assets/stylesheets/test_stylesheet_with_media_queries_split2.css.split2 +1 -0
- data/test/dummy/app/assets/stylesheets/too_big_stylesheet.css.scss +4 -0
- data/test/dummy/config/environments/production.rb +1 -1
- data/test/dummy/log/development.log +202 -0
- data/test/dummy/log/production.log +206 -0
- data/test/dummy/tmp/cache/assets/C66/170/sprockets%2F0830b343f8968ec4aa8370f868668248 +0 -0
- data/test/dummy/tmp/cache/assets/CBA/E20/sprockets%2F50f31c73e7bf4e4615292f7f386c9026 +0 -0
- data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/CFB/3F0/sprockets%2Fc5701cb90862b1e1da20a31c93180ff8 +0 -0
- data/test/dummy/tmp/cache/assets/CFC/990/sprockets%2F87aeb2d2c5f12012d6d908b3a3466b12 +0 -0
- data/test/dummy/tmp/cache/assets/D10/120/sprockets%2Fc42700fc2e334676ada28a968f262ed6 +0 -0
- data/test/dummy/tmp/cache/assets/D23/170/sprockets%2F45f2cb247bdf9a5c97748e3f0897822a +0 -0
- data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/D35/500/sprockets%2F45b349f1b8c8016ce45eac3aa5e63531 +0 -0
- data/test/dummy/tmp/cache/assets/D43/540/sprockets%2Fa296fc4bd718f6277c297b142bc3b58a +0 -0
- data/test/dummy/tmp/cache/assets/D44/640/sprockets%2F12084178a650e7df6c4b71baf988c5ea +0 -0
- data/test/dummy/tmp/cache/assets/D45/010/sprockets%2Fe5609c41f6effb12ebf399a01337457e +0 -0
- data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/D9E/DF0/sprockets%2F5c364cce43467cca51d7fee41b38b8d2 +0 -0
- data/test/dummy/tmp/cache/assets/DA2/FD0/sprockets%2F72ac2ef2ba1cb3e39d55428df6356ef8 +0 -0
- data/test/dummy/tmp/cache/assets/DB7/EE0/sprockets%2F32bab925c6af34ffea7c025aa09d511a +0 -0
- data/test/dummy/tmp/cache/assets/E32/A40/sprockets%2F5964a02e2bf7bc79ebffb414bfb6df5c +0 -0
- data/test/dummy/tmp/cache/sass/e89c44a583723860dc69c83f73f8c6d9513c313c/too_big_stylesheet.css.scssc +0 -0
- data/test/unit/splitter_test.rb +19 -3
- metadata +45 -13
- data/app/assets/javascripts/css_splitter/application.js +0 -15
- data/app/assets/stylesheets/css_splitter/application.css +0 -13
- data/app/controllers/css_splitter/application_controller.rb +0 -4
- data/app/views/layouts/css_splitter/application.html.erb +0 -14
- data/test/dummy/app/helpers/application_helper.rb +0 -2
- data/test/dummy/app/helpers/tests_helper.rb +0 -2
@@ -0,0 +1 @@
|
|
1
|
+
//= include 'test_stylesheet_with_media_queries'
|
@@ -46,7 +46,7 @@ Dummy::Application.configure do
|
|
46
46
|
# config.action_controller.asset_host = "http://assets.example.com"
|
47
47
|
|
48
48
|
# Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
|
49
|
-
config.assets.precompile += %w( too_big_stylesheet.css too_big_stylesheet_split2.css )
|
49
|
+
config.assets.precompile += %w( too_big_stylesheet.css too_big_stylesheet_split2.css test_stylesheet_with_media_queries.css test_stylesheet_with_media_queries_split2.css )
|
50
50
|
|
51
51
|
# Disable delivery errors, bad email addresses will be ignored
|
52
52
|
# config.action_mailer.raise_delivery_errors = false
|
@@ -0,0 +1,202 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
Started GET "/" for 127.0.0.1 at 2013-03-21 09:24:41 +0100
|
4
|
+
Processing by TestsController#test as HTML
|
5
|
+
Rendered tests/test.html.erb within layouts/application (19.5ms)
|
6
|
+
Compiled application.css (0ms) (pid 20781)
|
7
|
+
Compiled too_big_stylesheet.css (3468ms) (pid 20781)
|
8
|
+
Compiled too_big_stylesheet_split2.css (1380ms) (pid 20781)
|
9
|
+
Completed 200 OK in 4912ms (Views: 4911.6ms)
|
10
|
+
|
11
|
+
|
12
|
+
Started GET "/assets/too_big_stylesheet.css?body=1" for 127.0.0.1 at 2013-03-21 09:24:46 +0100
|
13
|
+
Served asset /too_big_stylesheet.css - 200 OK (52ms)
|
14
|
+
|
15
|
+
|
16
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-21 09:24:46 +0100
|
17
|
+
Served asset /application.css - 200 OK (1ms)
|
18
|
+
|
19
|
+
|
20
|
+
Started GET "/" for 127.0.0.1 at 2013-03-21 09:28:50 +0100
|
21
|
+
Processing by TestsController#test as HTML
|
22
|
+
Rendered tests/test.html.erb within layouts/application (0.1ms)
|
23
|
+
Compiled application.css (3ms) (pid 20781)
|
24
|
+
Completed 500 Internal Server Error in 47ms
|
25
|
+
|
26
|
+
ActionView::Template::Error (undefined method `bytesize' for nil:NilClass):
|
27
|
+
3: <head>
|
28
|
+
4: <title>Dummy</title>
|
29
|
+
5:
|
30
|
+
6: <%= split_stylesheet_link_tag "application", :media => "all" %>
|
31
|
+
7:
|
32
|
+
8: <%= split_stylesheet_link_tag "too_big_stylesheet", :media => "all" %>
|
33
|
+
9:
|
34
|
+
app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___1930786654659238004_70247216028040'
|
35
|
+
|
36
|
+
|
37
|
+
Rendered /home/jk/.rvm/gems/ruby-1.9.3-p385-perf@css_splitter/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
|
38
|
+
Rendered /home/jk/.rvm/gems/ruby-1.9.3-p385-perf@css_splitter/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
|
39
|
+
Rendered /home/jk/.rvm/gems/ruby-1.9.3-p385-perf@css_splitter/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.7ms)
|
40
|
+
|
41
|
+
|
42
|
+
Started GET "/" for 127.0.0.1 at 2013-03-21 09:30:03 +0100
|
43
|
+
Processing by TestsController#test as HTML
|
44
|
+
Rendered tests/test.html.erb within layouts/application (0.1ms)
|
45
|
+
Compiled application.css (7ms) (pid 20781)
|
46
|
+
Completed 500 Internal Server Error in 47ms
|
47
|
+
|
48
|
+
ActionView::Template::Error (undefined method `bytesize' for nil:NilClass):
|
49
|
+
3: <head>
|
50
|
+
4: <title>Dummy</title>
|
51
|
+
5:
|
52
|
+
6: <%= split_stylesheet_link_tag "application", :media => "all" %>
|
53
|
+
7:
|
54
|
+
8: <%= split_stylesheet_link_tag "too_big_stylesheet", :media => "all" %>
|
55
|
+
9:
|
56
|
+
app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___1930786654659238004_70247216028040'
|
57
|
+
|
58
|
+
|
59
|
+
Rendered /home/jk/.rvm/gems/ruby-1.9.3-p385-perf@css_splitter/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
|
60
|
+
Rendered /home/jk/.rvm/gems/ruby-1.9.3-p385-perf@css_splitter/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
|
61
|
+
Rendered /home/jk/.rvm/gems/ruby-1.9.3-p385-perf@css_splitter/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.4ms)
|
62
|
+
|
63
|
+
|
64
|
+
Started GET "/" for 127.0.0.1 at 2013-03-21 09:30:05 +0100
|
65
|
+
Processing by TestsController#test as HTML
|
66
|
+
Rendered tests/test.html.erb within layouts/application (0.1ms)
|
67
|
+
Completed 500 Internal Server Error in 9ms
|
68
|
+
|
69
|
+
ActionView::Template::Error (undefined method `bytesize' for nil:NilClass):
|
70
|
+
3: <head>
|
71
|
+
4: <title>Dummy</title>
|
72
|
+
5:
|
73
|
+
6: <%= split_stylesheet_link_tag "application", :media => "all" %>
|
74
|
+
7:
|
75
|
+
8: <%= split_stylesheet_link_tag "too_big_stylesheet", :media => "all" %>
|
76
|
+
9:
|
77
|
+
app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___1930786654659238004_70247216028040'
|
78
|
+
|
79
|
+
|
80
|
+
Rendered /home/jk/.rvm/gems/ruby-1.9.3-p385-perf@css_splitter/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
|
81
|
+
Rendered /home/jk/.rvm/gems/ruby-1.9.3-p385-perf@css_splitter/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
|
82
|
+
Rendered /home/jk/.rvm/gems/ruby-1.9.3-p385-perf@css_splitter/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.2ms)
|
83
|
+
|
84
|
+
|
85
|
+
Started GET "/" for 127.0.0.1 at 2013-03-21 09:30:05 +0100
|
86
|
+
Processing by TestsController#test as HTML
|
87
|
+
Rendered tests/test.html.erb within layouts/application (0.1ms)
|
88
|
+
Completed 500 Internal Server Error in 8ms
|
89
|
+
|
90
|
+
ActionView::Template::Error (undefined method `bytesize' for nil:NilClass):
|
91
|
+
3: <head>
|
92
|
+
4: <title>Dummy</title>
|
93
|
+
5:
|
94
|
+
6: <%= split_stylesheet_link_tag "application", :media => "all" %>
|
95
|
+
7:
|
96
|
+
8: <%= split_stylesheet_link_tag "too_big_stylesheet", :media => "all" %>
|
97
|
+
9:
|
98
|
+
app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___1930786654659238004_70247216028040'
|
99
|
+
|
100
|
+
|
101
|
+
Rendered /home/jk/.rvm/gems/ruby-1.9.3-p385-perf@css_splitter/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
|
102
|
+
Rendered /home/jk/.rvm/gems/ruby-1.9.3-p385-perf@css_splitter/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
|
103
|
+
Rendered /home/jk/.rvm/gems/ruby-1.9.3-p385-perf@css_splitter/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.2ms)
|
104
|
+
|
105
|
+
|
106
|
+
Started GET "/" for 127.0.0.1 at 2013-03-21 09:30:06 +0100
|
107
|
+
Processing by TestsController#test as HTML
|
108
|
+
Rendered tests/test.html.erb within layouts/application (0.1ms)
|
109
|
+
Completed 500 Internal Server Error in 8ms
|
110
|
+
|
111
|
+
ActionView::Template::Error (undefined method `bytesize' for nil:NilClass):
|
112
|
+
3: <head>
|
113
|
+
4: <title>Dummy</title>
|
114
|
+
5:
|
115
|
+
6: <%= split_stylesheet_link_tag "application", :media => "all" %>
|
116
|
+
7:
|
117
|
+
8: <%= split_stylesheet_link_tag "too_big_stylesheet", :media => "all" %>
|
118
|
+
9:
|
119
|
+
app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___1930786654659238004_70247216028040'
|
120
|
+
|
121
|
+
|
122
|
+
Rendered /home/jk/.rvm/gems/ruby-1.9.3-p385-perf@css_splitter/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
|
123
|
+
Rendered /home/jk/.rvm/gems/ruby-1.9.3-p385-perf@css_splitter/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
|
124
|
+
Rendered /home/jk/.rvm/gems/ruby-1.9.3-p385-perf@css_splitter/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.4ms)
|
125
|
+
|
126
|
+
|
127
|
+
Started GET "/" for 127.0.0.1 at 2013-03-21 09:30:08 +0100
|
128
|
+
Processing by TestsController#test as HTML
|
129
|
+
Rendered tests/test.html.erb within layouts/application (0.2ms)
|
130
|
+
Completed 500 Internal Server Error in 9ms
|
131
|
+
|
132
|
+
ActionView::Template::Error (undefined method `bytesize' for nil:NilClass):
|
133
|
+
3: <head>
|
134
|
+
4: <title>Dummy</title>
|
135
|
+
5:
|
136
|
+
6: <%= split_stylesheet_link_tag "application", :media => "all" %>
|
137
|
+
7:
|
138
|
+
8: <%= split_stylesheet_link_tag "too_big_stylesheet", :media => "all" %>
|
139
|
+
9:
|
140
|
+
app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___1930786654659238004_70247216028040'
|
141
|
+
|
142
|
+
|
143
|
+
Rendered /home/jk/.rvm/gems/ruby-1.9.3-p385-perf@css_splitter/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
|
144
|
+
Rendered /home/jk/.rvm/gems/ruby-1.9.3-p385-perf@css_splitter/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
|
145
|
+
Rendered /home/jk/.rvm/gems/ruby-1.9.3-p385-perf@css_splitter/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.4ms)
|
146
|
+
|
147
|
+
|
148
|
+
Started GET "/" for 127.0.0.1 at 2013-03-21 09:30:34 +0100
|
149
|
+
Processing by TestsController#test as HTML
|
150
|
+
Rendered tests/test.html.erb within layouts/application (0.2ms)
|
151
|
+
Completed 500 Internal Server Error in 10ms
|
152
|
+
|
153
|
+
ActionView::Template::Error (undefined method `bytesize' for nil:NilClass):
|
154
|
+
3: <head>
|
155
|
+
4: <title>Dummy</title>
|
156
|
+
5:
|
157
|
+
6: <%= split_stylesheet_link_tag "application", :media => "all" %>
|
158
|
+
7:
|
159
|
+
8: <%= split_stylesheet_link_tag "too_big_stylesheet", :media => "all" %>
|
160
|
+
9:
|
161
|
+
app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___1930786654659238004_70247216028040'
|
162
|
+
|
163
|
+
|
164
|
+
Rendered /home/jk/.rvm/gems/ruby-1.9.3-p385-perf@css_splitter/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (27.9ms)
|
165
|
+
Rendered /home/jk/.rvm/gems/ruby-1.9.3-p385-perf@css_splitter/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
|
166
|
+
Rendered /home/jk/.rvm/gems/ruby-1.9.3-p385-perf@css_splitter/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (32.8ms)
|
167
|
+
|
168
|
+
|
169
|
+
Started GET "/" for 127.0.0.1 at 2013-03-21 09:30:39 +0100
|
170
|
+
Processing by TestsController#test as HTML
|
171
|
+
Rendered tests/test.html.erb within layouts/application (0.3ms)
|
172
|
+
Completed 500 Internal Server Error in 11ms
|
173
|
+
|
174
|
+
ActionView::Template::Error (undefined method `bytesize' for nil:NilClass):
|
175
|
+
3: <head>
|
176
|
+
4: <title>Dummy</title>
|
177
|
+
5:
|
178
|
+
6: <%= split_stylesheet_link_tag "application", :media => "all" %>
|
179
|
+
7:
|
180
|
+
8: <%= split_stylesheet_link_tag "too_big_stylesheet", :media => "all" %>
|
181
|
+
9:
|
182
|
+
app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___1930786654659238004_70247216028040'
|
183
|
+
|
184
|
+
|
185
|
+
Rendered /home/jk/.rvm/gems/ruby-1.9.3-p385-perf@css_splitter/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
|
186
|
+
Rendered /home/jk/.rvm/gems/ruby-1.9.3-p385-perf@css_splitter/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
|
187
|
+
Rendered /home/jk/.rvm/gems/ruby-1.9.3-p385-perf@css_splitter/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.5ms)
|
188
|
+
|
189
|
+
|
190
|
+
Started GET "/" for 127.0.0.1 at 2013-05-20 11:55:58 +0200
|
191
|
+
Processing by TestsController#test as HTML
|
192
|
+
Rendered tests/test.html.erb within layouts/application (2.2ms)
|
193
|
+
Compiled application.css (0ms) (pid 10835)
|
194
|
+
Completed 200 OK in 54ms (Views: 53.5ms)
|
195
|
+
|
196
|
+
|
197
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-20 11:55:58 +0200
|
198
|
+
Served asset /application.css - 200 OK (3ms)
|
199
|
+
|
200
|
+
|
201
|
+
Started GET "/assets/too_big_stylesheet.css?body=1" for 127.0.0.1 at 2013-05-20 11:55:58 +0200
|
202
|
+
Served asset /too_big_stylesheet.css - 200 OK (24ms)
|
@@ -89,3 +89,209 @@ Compiled jquery.js (42ms) (pid 7159)
|
|
89
89
|
Compiled jquery_ujs.js (0ms) (pid 7159)
|
90
90
|
Compiled css_splitter/application.js (50ms) (pid 7159)
|
91
91
|
Compiled css_splitter/application.css (0ms) (pid 7159)
|
92
|
+
Compiled application.css (0ms) (pid 10530)
|
93
|
+
Compiled test_stylesheet_with_media_queries.css (1ms) (pid 10530)
|
94
|
+
Compiled too_big_stylesheet.css (2539ms) (pid 10530)
|
95
|
+
Compiled too_big_stylesheet_split2.css (608ms) (pid 10530)
|
96
|
+
Compiled jquery.js (1ms) (pid 10530)
|
97
|
+
Compiled jquery_ujs.js (0ms) (pid 10530)
|
98
|
+
Compiled css_splitter/application.js (45ms) (pid 10530)
|
99
|
+
Compiled css_splitter/application.css (0ms) (pid 10530)
|
100
|
+
Compiled application.css (0ms) (pid 10530)
|
101
|
+
Compiled test_stylesheet_with_media_queries.css (1ms) (pid 10530)
|
102
|
+
Compiled too_big_stylesheet.css (2568ms) (pid 10530)
|
103
|
+
Compiled too_big_stylesheet_split2.css (664ms) (pid 10530)
|
104
|
+
Compiled jquery.js (1ms) (pid 10530)
|
105
|
+
Compiled jquery_ujs.js (0ms) (pid 10530)
|
106
|
+
Compiled css_splitter/application.js (8ms) (pid 10530)
|
107
|
+
Compiled css_splitter/application.css (0ms) (pid 10530)
|
108
|
+
Compiled application.css (0ms) (pid 10640)
|
109
|
+
Compiled test_stylesheet_with_media_queries.css (1ms) (pid 10640)
|
110
|
+
Compiled test_stylesheet_with_media_queries_split2.css (22ms) (pid 10640)
|
111
|
+
Compiled too_big_stylesheet.css (2634ms) (pid 10640)
|
112
|
+
Compiled too_big_stylesheet_split2.css (660ms) (pid 10640)
|
113
|
+
Compiled jquery.js (1ms) (pid 10640)
|
114
|
+
Compiled jquery_ujs.js (0ms) (pid 10640)
|
115
|
+
Compiled css_splitter/application.js (51ms) (pid 10640)
|
116
|
+
Compiled css_splitter/application.css (0ms) (pid 10640)
|
117
|
+
Compiled application.css (0ms) (pid 10640)
|
118
|
+
Compiled test_stylesheet_with_media_queries.css (1ms) (pid 10640)
|
119
|
+
Compiled test_stylesheet_with_media_queries_split2.css (21ms) (pid 10640)
|
120
|
+
Compiled too_big_stylesheet.css (2579ms) (pid 10640)
|
121
|
+
Compiled too_big_stylesheet_split2.css (617ms) (pid 10640)
|
122
|
+
Compiled jquery.js (37ms) (pid 10640)
|
123
|
+
Compiled jquery_ujs.js (0ms) (pid 10640)
|
124
|
+
Compiled css_splitter/application.js (45ms) (pid 10640)
|
125
|
+
Compiled css_splitter/application.css (0ms) (pid 10640)
|
126
|
+
Compiled application.css (0ms) (pid 10780)
|
127
|
+
Compiled test_stylesheet_with_media_queries.css (1ms) (pid 10780)
|
128
|
+
Compiled test_stylesheet_with_media_queries_split2.css (22ms) (pid 10780)
|
129
|
+
Compiled too_big_stylesheet.css (2531ms) (pid 10780)
|
130
|
+
Compiled too_big_stylesheet_split2.css (608ms) (pid 10780)
|
131
|
+
Compiled jquery.js (1ms) (pid 10780)
|
132
|
+
Compiled jquery_ujs.js (0ms) (pid 10780)
|
133
|
+
Compiled css_splitter/application.js (43ms) (pid 10780)
|
134
|
+
Compiled css_splitter/application.css (0ms) (pid 10780)
|
135
|
+
Compiled application.css (0ms) (pid 10780)
|
136
|
+
Compiled test_stylesheet_with_media_queries.css (1ms) (pid 10780)
|
137
|
+
Compiled test_stylesheet_with_media_queries_split2.css (20ms) (pid 10780)
|
138
|
+
Compiled too_big_stylesheet.css (2576ms) (pid 10780)
|
139
|
+
Compiled too_big_stylesheet_split2.css (630ms) (pid 10780)
|
140
|
+
Compiled jquery.js (1ms) (pid 10780)
|
141
|
+
Compiled jquery_ujs.js (0ms) (pid 10780)
|
142
|
+
Compiled css_splitter/application.js (45ms) (pid 10780)
|
143
|
+
Compiled css_splitter/application.css (1ms) (pid 10780)
|
144
|
+
Compiled application.css (0ms) (pid 7753)
|
145
|
+
Compiled test_stylesheet_with_media_queries.css (17ms) (pid 7753)
|
146
|
+
Compiled test_stylesheet_with_media_queries_split2.css (26ms) (pid 7753)
|
147
|
+
Compiled too_big_stylesheet.css (2544ms) (pid 7753)
|
148
|
+
Compiled too_big_stylesheet_split2.css (659ms) (pid 7753)
|
149
|
+
Compiled jquery.js (1ms) (pid 7753)
|
150
|
+
Compiled jquery_ujs.js (0ms) (pid 7753)
|
151
|
+
Compiled css_splitter/application.js (46ms) (pid 7753)
|
152
|
+
Compiled css_splitter/application.css (0ms) (pid 7753)
|
153
|
+
Compiled application.css (0ms) (pid 7753)
|
154
|
+
Compiled test_stylesheet_with_media_queries.css (16ms) (pid 7753)
|
155
|
+
Compiled test_stylesheet_with_media_queries_split2.css (59ms) (pid 7753)
|
156
|
+
Compiled too_big_stylesheet.css (2646ms) (pid 7753)
|
157
|
+
Compiled too_big_stylesheet_split2.css (646ms) (pid 7753)
|
158
|
+
Compiled jquery.js (1ms) (pid 7753)
|
159
|
+
Compiled jquery_ujs.js (0ms) (pid 7753)
|
160
|
+
Compiled css_splitter/application.js (44ms) (pid 7753)
|
161
|
+
Compiled css_splitter/application.css (0ms) (pid 7753)
|
162
|
+
Compiled application.css (0ms) (pid 17362)
|
163
|
+
Compiled test_stylesheet_with_media_queries.css (16ms) (pid 17362)
|
164
|
+
Compiled test_stylesheet_with_media_queries_split2.css (58ms) (pid 17362)
|
165
|
+
Compiled too_big_stylesheet.css (2497ms) (pid 17362)
|
166
|
+
Compiled too_big_stylesheet_split2.css (625ms) (pid 17362)
|
167
|
+
Compiled jquery.js (1ms) (pid 17362)
|
168
|
+
Compiled jquery_ujs.js (0ms) (pid 17362)
|
169
|
+
Compiled css_splitter/application.js (12ms) (pid 17362)
|
170
|
+
Compiled css_splitter/application.css (0ms) (pid 17362)
|
171
|
+
Compiled application.css (0ms) (pid 17362)
|
172
|
+
Compiled test_stylesheet_with_media_queries.css (18ms) (pid 17362)
|
173
|
+
Compiled test_stylesheet_with_media_queries_split2.css (61ms) (pid 17362)
|
174
|
+
Compiled too_big_stylesheet.css (2752ms) (pid 17362)
|
175
|
+
Compiled too_big_stylesheet_split2.css (645ms) (pid 17362)
|
176
|
+
Compiled jquery.js (1ms) (pid 17362)
|
177
|
+
Compiled jquery_ujs.js (0ms) (pid 17362)
|
178
|
+
Compiled css_splitter/application.js (43ms) (pid 17362)
|
179
|
+
Compiled css_splitter/application.css (0ms) (pid 17362)
|
180
|
+
Compiled application.css (0ms) (pid 17440)
|
181
|
+
Compiled test_stylesheet_with_media_queries.css (16ms) (pid 17440)
|
182
|
+
Compiled test_stylesheet_with_media_queries_split2.css (58ms) (pid 17440)
|
183
|
+
Compiled too_big_stylesheet.css (2483ms) (pid 17440)
|
184
|
+
Compiled too_big_stylesheet_split2.css (619ms) (pid 17440)
|
185
|
+
Compiled jquery.js (1ms) (pid 17440)
|
186
|
+
Compiled jquery_ujs.js (0ms) (pid 17440)
|
187
|
+
Compiled css_splitter/application.js (9ms) (pid 17440)
|
188
|
+
Compiled css_splitter/application.css (0ms) (pid 17440)
|
189
|
+
Compiled application.css (0ms) (pid 17440)
|
190
|
+
Compiled test_stylesheet_with_media_queries.css (16ms) (pid 17440)
|
191
|
+
Compiled test_stylesheet_with_media_queries_split2.css (57ms) (pid 17440)
|
192
|
+
Compiled too_big_stylesheet.css (2509ms) (pid 17440)
|
193
|
+
Compiled too_big_stylesheet_split2.css (629ms) (pid 17440)
|
194
|
+
Compiled jquery.js (1ms) (pid 17440)
|
195
|
+
Compiled jquery_ujs.js (0ms) (pid 17440)
|
196
|
+
Compiled css_splitter/application.js (42ms) (pid 17440)
|
197
|
+
Compiled css_splitter/application.css (0ms) (pid 17440)
|
198
|
+
Compiled application.css (0ms) (pid 17646)
|
199
|
+
Compiled test_stylesheet_with_media_queries.css (16ms) (pid 17646)
|
200
|
+
Compiled test_stylesheet_with_media_queries_split2.css (58ms) (pid 17646)
|
201
|
+
Compiled too_big_stylesheet.css (2472ms) (pid 17646)
|
202
|
+
Compiled too_big_stylesheet_split2.css (622ms) (pid 17646)
|
203
|
+
Compiled jquery.js (1ms) (pid 17646)
|
204
|
+
Compiled jquery_ujs.js (0ms) (pid 17646)
|
205
|
+
Compiled css_splitter/application.js (9ms) (pid 17646)
|
206
|
+
Compiled css_splitter/application.css (0ms) (pid 17646)
|
207
|
+
Compiled application.css (0ms) (pid 17646)
|
208
|
+
Compiled test_stylesheet_with_media_queries.css (16ms) (pid 17646)
|
209
|
+
Compiled test_stylesheet_with_media_queries_split2.css (57ms) (pid 17646)
|
210
|
+
Compiled too_big_stylesheet.css (2566ms) (pid 17646)
|
211
|
+
Compiled too_big_stylesheet_split2.css (623ms) (pid 17646)
|
212
|
+
Compiled jquery.js (1ms) (pid 17646)
|
213
|
+
Compiled jquery_ujs.js (0ms) (pid 17646)
|
214
|
+
Compiled css_splitter/application.js (43ms) (pid 17646)
|
215
|
+
Compiled css_splitter/application.css (0ms) (pid 17646)
|
216
|
+
Compiled application.css (0ms) (pid 18039)
|
217
|
+
Compiled test_stylesheet_with_media_queries.css (16ms) (pid 18039)
|
218
|
+
Compiled test_stylesheet_with_media_queries_split2.css (20045ms) (pid 18039)
|
219
|
+
Compiled too_big_stylesheet.css (2475ms) (pid 18039)
|
220
|
+
Compiled too_big_stylesheet_split2.css (13656890ms) (pid 18039)
|
221
|
+
Compiled jquery.js (31ms) (pid 18039)
|
222
|
+
Compiled jquery_ujs.js (0ms) (pid 18039)
|
223
|
+
Compiled css_splitter/application.js (41ms) (pid 18039)
|
224
|
+
Compiled css_splitter/application.css (0ms) (pid 18039)
|
225
|
+
Compiled application.css (0ms) (pid 18039)
|
226
|
+
Compiled test_stylesheet_with_media_queries.css (16ms) (pid 18039)
|
227
|
+
Compiled test_stylesheet_with_media_queries_split2.css (27751ms) (pid 18039)
|
228
|
+
Compiled too_big_stylesheet.css (2529ms) (pid 18039)
|
229
|
+
Compiled too_big_stylesheet_split2.css (2398ms) (pid 18039)
|
230
|
+
Compiled jquery.js (1ms) (pid 18039)
|
231
|
+
Compiled jquery_ujs.js (0ms) (pid 18039)
|
232
|
+
Compiled css_splitter/application.js (11ms) (pid 18039)
|
233
|
+
Compiled css_splitter/application.css (0ms) (pid 18039)
|
234
|
+
Compiled application.css (0ms) (pid 18781)
|
235
|
+
Compiled test_stylesheet_with_media_queries.css (16ms) (pid 18781)
|
236
|
+
Compiled test_stylesheet_with_media_queries_split2.css (22771ms) (pid 18781)
|
237
|
+
Compiled too_big_stylesheet.css (2474ms) (pid 18781)
|
238
|
+
Compiled too_big_stylesheet_split2.css (145834ms) (pid 18781)
|
239
|
+
Compiled jquery.js (1ms) (pid 18781)
|
240
|
+
Compiled jquery_ujs.js (0ms) (pid 18781)
|
241
|
+
Compiled css_splitter/application.js (9ms) (pid 18781)
|
242
|
+
Compiled css_splitter/application.css (0ms) (pid 18781)
|
243
|
+
Compiled application.css (0ms) (pid 18781)
|
244
|
+
Compiled test_stylesheet_with_media_queries.css (16ms) (pid 18781)
|
245
|
+
Compiled test_stylesheet_with_media_queries_split2.css (2266ms) (pid 18781)
|
246
|
+
Compiled too_big_stylesheet.css (2534ms) (pid 18781)
|
247
|
+
Compiled too_big_stylesheet_split2.css (2429ms) (pid 18781)
|
248
|
+
Compiled jquery.js (1ms) (pid 18781)
|
249
|
+
Compiled jquery_ujs.js (0ms) (pid 18781)
|
250
|
+
Compiled css_splitter/application.js (30ms) (pid 18781)
|
251
|
+
Compiled css_splitter/application.css (0ms) (pid 18781)
|
252
|
+
Compiled application.css (0ms) (pid 18849)
|
253
|
+
Compiled test_stylesheet_with_media_queries.css (16ms) (pid 18849)
|
254
|
+
Compiled test_stylesheet_with_media_queries_split2.css (16209ms) (pid 18849)
|
255
|
+
Compiled too_big_stylesheet.css (2521ms) (pid 18849)
|
256
|
+
Compiled too_big_stylesheet_split2.css (83976ms) (pid 18849)
|
257
|
+
Compiled jquery.js (1ms) (pid 18849)
|
258
|
+
Compiled jquery_ujs.js (0ms) (pid 18849)
|
259
|
+
Compiled css_splitter/application.js (31ms) (pid 18849)
|
260
|
+
Compiled css_splitter/application.css (0ms) (pid 18849)
|
261
|
+
Compiled application.css (0ms) (pid 18849)
|
262
|
+
Compiled test_stylesheet_with_media_queries.css (1ms) (pid 18849)
|
263
|
+
Compiled test_stylesheet_with_media_queries_split2.css (2058ms) (pid 18849)
|
264
|
+
Compiled too_big_stylesheet.css (3119ms) (pid 18849)
|
265
|
+
Compiled too_big_stylesheet_split2.css (3012ms) (pid 18849)
|
266
|
+
Compiled jquery.js (1ms) (pid 18849)
|
267
|
+
Compiled jquery_ujs.js (0ms) (pid 18849)
|
268
|
+
Compiled css_splitter/application.js (46ms) (pid 18849)
|
269
|
+
Compiled css_splitter/application.css (0ms) (pid 18849)
|
270
|
+
Compiled application.css (0ms) (pid 18973)
|
271
|
+
Compiled test_stylesheet_with_media_queries.css (1ms) (pid 18973)
|
272
|
+
Compiled test_stylesheet_with_media_queries_split2.css (13433ms) (pid 18973)
|
273
|
+
Compiled too_big_stylesheet.css (3145ms) (pid 18973)
|
274
|
+
Compiled too_big_stylesheet_split2.css (93338ms) (pid 18973)
|
275
|
+
Compiled jquery.js (1ms) (pid 18973)
|
276
|
+
Compiled jquery_ujs.js (0ms) (pid 18973)
|
277
|
+
Compiled css_splitter/application.js (32ms) (pid 18973)
|
278
|
+
Compiled css_splitter/application.css (0ms) (pid 18973)
|
279
|
+
Compiled application.css (0ms) (pid 18973)
|
280
|
+
Compiled test_stylesheet_with_media_queries.css (1ms) (pid 18973)
|
281
|
+
Compiled test_stylesheet_with_media_queries_split2.css (5785ms) (pid 18973)
|
282
|
+
Compiled too_big_stylesheet.css (3139ms) (pid 18973)
|
283
|
+
Compiled too_big_stylesheet_split2.css (6940ms) (pid 18973)
|
284
|
+
Compiled jquery.js (1ms) (pid 18973)
|
285
|
+
Compiled jquery_ujs.js (0ms) (pid 18973)
|
286
|
+
Compiled css_splitter/application.js (45ms) (pid 18973)
|
287
|
+
Compiled css_splitter/application.css (0ms) (pid 18973)
|
288
|
+
Compiled application.css (0ms) (pid 4381)
|
289
|
+
Compiled test_stylesheet_with_media_queries.css (1ms) (pid 4381)
|
290
|
+
Compiled test_stylesheet_with_media_queries_split2.css (56ms) (pid 4381)
|
291
|
+
Compiled too_big_stylesheet.css (2479ms) (pid 4381)
|
292
|
+
Compiled too_big_stylesheet_split2.css (595ms) (pid 4381)
|
293
|
+
Compiled application.css (0ms) (pid 4381)
|
294
|
+
Compiled test_stylesheet_with_media_queries.css (1ms) (pid 4381)
|
295
|
+
Compiled test_stylesheet_with_media_queries_split2.css (58ms) (pid 4381)
|
296
|
+
Compiled too_big_stylesheet.css (2540ms) (pid 4381)
|
297
|
+
Compiled too_big_stylesheet_split2.css (609ms) (pid 4381)
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|