rails_pagination 2.0.5
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 +20 -0
- data/README.rdoc +62 -0
- data/Rakefile +38 -0
- data/lib/rails_pagination/action_view/base.rb +11 -0
- data/lib/rails_pagination/active_record/base.rb +25 -0
- data/lib/rails_pagination/active_record/relation.rb +82 -0
- data/lib/rails_pagination/navigation.rb +39 -0
- data/lib/rails_pagination/pager.rb +97 -0
- data/lib/rails_pagination/railtie.rb +15 -0
- data/lib/rails_pagination/version.rb +5 -0
- data/lib/rails_pagination.rb +10 -0
- data/test/collection_empty_test.rb +41 -0
- data/test/collection_first_test.rb +42 -0
- data/test/collection_last_test.rb +42 -0
- data/test/collection_middle_test.rb +42 -0
- data/test/collection_padding_test.rb +83 -0
- data/test/dummy/README.rdoc +261 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/assets/javascripts/application.js +15 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/controllers/test_controller.rb +7 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/models/model.rb +3 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/app/views/test/index.html.erb +30 -0
- data/test/dummy/config/application.rb +59 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +37 -0
- data/test/dummy/config/environments/production.rb +67 -0
- data/test/dummy/config/environments/test.rb +37 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/inflections.rb +15 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +61 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20120908215532_create_models.rb +8 -0
- data/test/dummy/db/schema.rb +22 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +1998 -0
- data/test/dummy/log/test.log +149351 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +25 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/script/rails +6 -0
- data/test/dummy/tmp/cache/assets/CBF/7A0/sprockets%2Fc9192594b6d1b927590d37ebad844808 +0 -0
- data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/dummy/tmp/cache/assets/D50/930/sprockets%2F277654ad498bbc928b88364ffcbad129 +0 -0
- data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/DB2/700/sprockets%2Fa4f4b12a5cbea015faede527e4a04307 +0 -0
- data/test/dummy/tmp/cache/assets/DD5/C50/sprockets%2Fcdcdad84697d0b186a1de99f1950e5ab +0 -0
- data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/helpers_empty_test.rb +46 -0
- data/test/helpers_first_test.rb +47 -0
- data/test/helpers_last_test.rb +47 -0
- data/test/helpers_middle_test.rb +47 -0
- data/test/rails_pagination_test.rb +9 -0
- data/test/test_helper.rb +21 -0
- metadata +204 -0
@@ -0,0 +1,1998 @@
|
|
1
|
+
Connecting to database specified by database.yml
|
2
|
+
Connecting to database specified by database.yml
|
3
|
+
Connecting to database specified by database.yml
|
4
|
+
Connecting to database specified by database.yml
|
5
|
+
Connecting to database specified by database.yml
|
6
|
+
Connecting to database specified by database.yml
|
7
|
+
[1m[36m (0.2ms)[0m [1mselect sqlite_version(*)[0m
|
8
|
+
[1m[35m (2.7ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
9
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
10
|
+
[1m[35m (2.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
11
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
12
|
+
Migrating to CreateHouses (20120908215532)
|
13
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14
|
+
[1m[36m (0.5ms)[0m [1mCREATE TABLE "houses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
15
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120908215532')
|
16
|
+
[1m[36m (3.0ms)[0m [1mcommit transaction[0m
|
17
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
18
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
19
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("houses")
|
20
|
+
Connecting to database specified by database.yml
|
21
|
+
Connecting to database specified by database.yml
|
22
|
+
Connecting to database specified by database.yml
|
23
|
+
Connecting to database specified by database.yml
|
24
|
+
Connecting to database specified by database.yml
|
25
|
+
Connecting to database specified by database.yml
|
26
|
+
Connecting to database specified by database.yml
|
27
|
+
Connecting to database specified by database.yml
|
28
|
+
Connecting to database specified by database.yml
|
29
|
+
Connecting to database specified by database.yml
|
30
|
+
Connecting to database specified by database.yml
|
31
|
+
Connecting to database specified by database.yml
|
32
|
+
Connecting to database specified by database.yml
|
33
|
+
Connecting to database specified by database.yml
|
34
|
+
Connecting to database specified by database.yml
|
35
|
+
Connecting to database specified by database.yml
|
36
|
+
Connecting to database specified by database.yml
|
37
|
+
Connecting to database specified by database.yml
|
38
|
+
Connecting to database specified by database.yml
|
39
|
+
Connecting to database specified by database.yml
|
40
|
+
Connecting to database specified by database.yml
|
41
|
+
Connecting to database specified by database.yml
|
42
|
+
Connecting to database specified by database.yml
|
43
|
+
Connecting to database specified by database.yml
|
44
|
+
Connecting to database specified by database.yml
|
45
|
+
Connecting to database specified by database.yml
|
46
|
+
Connecting to database specified by database.yml
|
47
|
+
Connecting to database specified by database.yml
|
48
|
+
Connecting to database specified by database.yml
|
49
|
+
Connecting to database specified by database.yml
|
50
|
+
Connecting to database specified by database.yml
|
51
|
+
Connecting to database specified by database.yml
|
52
|
+
Connecting to database specified by database.yml
|
53
|
+
Connecting to database specified by database.yml
|
54
|
+
Connecting to database specified by database.yml
|
55
|
+
Connecting to database specified by database.yml
|
56
|
+
Connecting to database specified by database.yml
|
57
|
+
Connecting to database specified by database.yml
|
58
|
+
Connecting to database specified by database.yml
|
59
|
+
Connecting to database specified by database.yml
|
60
|
+
Connecting to database specified by database.yml
|
61
|
+
Connecting to database specified by database.yml
|
62
|
+
Connecting to database specified by database.yml
|
63
|
+
Connecting to database specified by database.yml
|
64
|
+
Connecting to database specified by database.yml
|
65
|
+
Connecting to database specified by database.yml
|
66
|
+
Connecting to database specified by database.yml
|
67
|
+
Connecting to database specified by database.yml
|
68
|
+
Connecting to database specified by database.yml
|
69
|
+
Connecting to database specified by database.yml
|
70
|
+
Connecting to database specified by database.yml
|
71
|
+
Connecting to database specified by database.yml
|
72
|
+
Connecting to database specified by database.yml
|
73
|
+
Connecting to database specified by database.yml
|
74
|
+
Connecting to database specified by database.yml
|
75
|
+
Connecting to database specified by database.yml
|
76
|
+
Connecting to database specified by database.yml
|
77
|
+
Connecting to database specified by database.yml
|
78
|
+
Connecting to database specified by database.yml
|
79
|
+
Connecting to database specified by database.yml
|
80
|
+
Connecting to database specified by database.yml
|
81
|
+
Connecting to database specified by database.yml
|
82
|
+
Connecting to database specified by database.yml
|
83
|
+
Connecting to database specified by database.yml
|
84
|
+
Connecting to database specified by database.yml
|
85
|
+
Connecting to database specified by database.yml
|
86
|
+
Connecting to database specified by database.yml
|
87
|
+
Connecting to database specified by database.yml
|
88
|
+
Connecting to database specified by database.yml
|
89
|
+
Connecting to database specified by database.yml
|
90
|
+
Connecting to database specified by database.yml
|
91
|
+
Connecting to database specified by database.yml
|
92
|
+
Connecting to database specified by database.yml
|
93
|
+
Connecting to database specified by database.yml
|
94
|
+
Connecting to database specified by database.yml
|
95
|
+
Connecting to database specified by database.yml
|
96
|
+
Connecting to database specified by database.yml
|
97
|
+
Connecting to database specified by database.yml
|
98
|
+
Connecting to database specified by database.yml
|
99
|
+
Connecting to database specified by database.yml
|
100
|
+
Connecting to database specified by database.yml
|
101
|
+
Connecting to database specified by database.yml
|
102
|
+
Connecting to database specified by database.yml
|
103
|
+
Connecting to database specified by database.yml
|
104
|
+
Connecting to database specified by database.yml
|
105
|
+
Connecting to database specified by database.yml
|
106
|
+
Connecting to database specified by database.yml
|
107
|
+
Connecting to database specified by database.yml
|
108
|
+
Connecting to database specified by database.yml
|
109
|
+
Connecting to database specified by database.yml
|
110
|
+
Connecting to database specified by database.yml
|
111
|
+
Connecting to database specified by database.yml
|
112
|
+
Connecting to database specified by database.yml
|
113
|
+
Connecting to database specified by database.yml
|
114
|
+
Connecting to database specified by database.yml
|
115
|
+
Connecting to database specified by database.yml
|
116
|
+
Connecting to database specified by database.yml
|
117
|
+
Connecting to database specified by database.yml
|
118
|
+
Connecting to database specified by database.yml
|
119
|
+
Connecting to database specified by database.yml
|
120
|
+
Connecting to database specified by database.yml
|
121
|
+
Connecting to database specified by database.yml
|
122
|
+
Connecting to database specified by database.yml
|
123
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
124
|
+
[1m[35m (2.4ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
125
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
126
|
+
[1m[35m (2.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
127
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
128
|
+
Migrating to CreateHouses (20120908215532)
|
129
|
+
[1m[35m (0.0ms)[0m begin transaction
|
130
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
131
|
+
Connecting to database specified by database.yml
|
132
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
133
|
+
Migrating to CreateModels (20120908215532)
|
134
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
135
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
136
|
+
[1m[35m (0.4ms)[0m CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
137
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120908215532')[0m
|
138
|
+
[1m[35m (57.6ms)[0m commit transaction
|
139
|
+
[1m[36m (0.3ms)[0m [1mselect sqlite_version(*)[0m
|
140
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
141
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("models")[0m
|
142
|
+
Connecting to database specified by database.yml
|
143
|
+
Connecting to database specified by database.yml
|
144
|
+
|
145
|
+
|
146
|
+
Started GET "/" for 127.0.0.1 at 2012-12-02 16:20:59 -0200
|
147
|
+
Processing by TestController#index as HTML
|
148
|
+
ERROR: compiling _app_views_test_index_html_erb__4455616764571100546_70181944554160 RAISED /Users/matt/Documents/Mattways/Emprendimientos/Rails/rails-pagination/test/dummy/app/views/test/index.html.erb:31: syntax error, unexpected keyword_ensure, expecting keyword_end
|
149
|
+
/Users/matt/Documents/Mattways/Emprendimientos/Rails/rails-pagination/test/dummy/app/views/test/index.html.erb:33: syntax error, unexpected $end, expecting keyword_end
|
150
|
+
Function body: def _app_views_test_index_html_erb__4455616764571100546_70181944554160(local_assigns, output_buffer)
|
151
|
+
_old_virtual_path, @virtual_path = @virtual_path, "test/index";_old_output_buffer = @output_buffer;;@output_buffer = output_buffer || ActionView::OutputBuffer.new; pager = paginate(@collection, :navigation => 3, :parameter => :p)
|
152
|
+
if pager.has_multiple_pages?
|
153
|
+
@output_buffer.safe_concat(' <div id="pager">
|
154
|
+
'); if pager.has_first_page?
|
155
|
+
@output_buffer.safe_concat(' <a class="first" href="');@output_buffer.append= ( pager.first_page_path );@output_buffer.safe_concat('">');@output_buffer.append= ( t('pager.first') );@output_buffer.safe_concat('</a>
|
156
|
+
'); end
|
157
|
+
if pager.has_previous_page?
|
158
|
+
@output_buffer.safe_concat(' <a class="previous" href="');@output_buffer.append= ( pager.previous_page_path );@output_buffer.safe_concat('">');@output_buffer.append= ( t('pager.previous') );@output_buffer.safe_concat('</a>
|
159
|
+
'); end
|
160
|
+
if pager.navigation.has_less_pages?
|
161
|
+
@output_buffer.safe_concat(' <span class="ellipsis">...</span>
|
162
|
+
'); end
|
163
|
+
for page in pager.navigation.pages
|
164
|
+
if pager.is_current_page? page
|
165
|
+
@output_buffer.safe_concat(' <span class="page current">');@output_buffer.append= ( page );@output_buffer.safe_concat('</span>
|
166
|
+
'); else
|
167
|
+
@output_buffer.safe_concat(' <a class="page" href="');@output_buffer.append= ( pager.page_path(page) );@output_buffer.safe_concat('">');@output_buffer.append= ( page );@output_buffer.safe_concat('</a>
|
168
|
+
'); end
|
169
|
+
if pager.navigation.has_more_pages?
|
170
|
+
@output_buffer.safe_concat(' <span class="ellipsis">...</span>
|
171
|
+
'); end
|
172
|
+
if pager.has_next_page?
|
173
|
+
@output_buffer.safe_concat(' <a class="next" href="');@output_buffer.append= ( pager.next_page_path );@output_buffer.safe_concat('">');@output_buffer.append= ( t('pager.next') );@output_buffer.safe_concat('</a>
|
174
|
+
'); end
|
175
|
+
if pager.has_last_page?
|
176
|
+
@output_buffer.safe_concat(' <a class="last" href="');@output_buffer.append= ( pager.last_page_path );@output_buffer.safe_concat('">');@output_buffer.append= ( t('pager.last') );@output_buffer.safe_concat('</a>
|
177
|
+
'); end
|
178
|
+
@output_buffer.safe_concat(' </div>
|
179
|
+
'); end
|
180
|
+
@output_buffer.to_s
|
181
|
+
ensure
|
182
|
+
@virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer
|
183
|
+
end
|
184
|
+
|
185
|
+
Backtrace: /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_view/template.rb:297:in `module_eval'
|
186
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_view/template.rb:297:in `compile'
|
187
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_view/template.rb:244:in `block in compile!'
|
188
|
+
<internal:prelude>:10:in `synchronize'
|
189
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_view/template.rb:232:in `compile!'
|
190
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_view/template.rb:144:in `block in render'
|
191
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.8/lib/active_support/notifications.rb:125:in `instrument'
|
192
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_view/template.rb:143:in `render'
|
193
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
194
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
195
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument'
|
196
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
197
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument'
|
198
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
199
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
200
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
201
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
202
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_view/renderer/template_renderer.rb:18:in `render'
|
203
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_view/renderer/renderer.rb:36:in `render_template'
|
204
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_view/renderer/renderer.rb:17:in `render'
|
205
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:110:in `_render_template'
|
206
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
207
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
208
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
209
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
210
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:88:in `render'
|
211
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb:16:in `render'
|
212
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
213
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.8/lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
214
|
+
/Users/matt/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
215
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.8/lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
216
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
217
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
218
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
219
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:39:in `render'
|
220
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
221
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
222
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:167:in `process_action'
|
223
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_controller/metal/rendering.rb:10:in `process_action'
|
224
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
225
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:414:in `_run__3826713535409500211__process_action__2761810839518818863__callbacks'
|
226
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback'
|
227
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
228
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks'
|
229
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/abstract_controller/callbacks.rb:17:in `process_action'
|
230
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_controller/metal/rescue.rb:29:in `process_action'
|
231
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
232
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `block in instrument'
|
233
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
234
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.8/lib/active_support/notifications.rb:123:in `instrument'
|
235
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
236
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
237
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/activerecord-3.2.8/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
238
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/abstract_controller/base.rb:121:in `process'
|
239
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/abstract_controller/rendering.rb:45:in `process'
|
240
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_controller/metal.rb:203:in `dispatch'
|
241
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
242
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_controller/metal.rb:246:in `block in action'
|
243
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `call'
|
244
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
245
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:36:in `call'
|
246
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
|
247
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
|
248
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
|
249
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/routing/route_set.rb:600:in `call'
|
250
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
251
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call'
|
252
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/rack-1.4.1/lib/rack/conditionalget.rb:25:in `call'
|
253
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/head.rb:14:in `call'
|
254
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
255
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/flash.rb:242:in `call'
|
256
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context'
|
257
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call'
|
258
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/cookies.rb:339:in `call'
|
259
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/activerecord-3.2.8/lib/active_record/query_cache.rb:64:in `call'
|
260
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/activerecord-3.2.8/lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
|
261
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
262
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `_run__1880878322598319877__call__2574047420790886458__callbacks'
|
263
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:405:in `__run_callback'
|
264
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
265
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.8/lib/active_support/callbacks.rb:81:in `run_callbacks'
|
266
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
267
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
268
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
269
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
270
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
271
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/railties-3.2.8/lib/rails/rack/logger.rb:26:in `call_app'
|
272
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/railties-3.2.8/lib/rails/rack/logger.rb:16:in `call'
|
273
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
274
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call'
|
275
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call'
|
276
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.8/lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
277
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call'
|
278
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/static.rb:62:in `call'
|
279
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/railties-3.2.8/lib/rails/engine.rb:479:in `call'
|
280
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/railties-3.2.8/lib/rails/application.rb:223:in `call'
|
281
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call'
|
282
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/railties-3.2.8/lib/rails/rack/log_tailer.rb:17:in `call'
|
283
|
+
/Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service'
|
284
|
+
/Users/matt/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
285
|
+
/Users/matt/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
286
|
+
/Users/matt/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
287
|
+
Rendered test/index.html.erb within layouts/application (11.3ms)
|
288
|
+
Completed 500 Internal Server Error in 79ms
|
289
|
+
|
290
|
+
ActionView::Template::Error (/Users/matt/Documents/Mattways/Emprendimientos/Rails/rails-pagination/test/dummy/app/views/test/index.html.erb:31: syntax error, unexpected keyword_ensure, expecting keyword_end
|
291
|
+
/Users/matt/Documents/Mattways/Emprendimientos/Rails/rails-pagination/test/dummy/app/views/test/index.html.erb:33: syntax error, unexpected $end, expecting keyword_end):
|
292
|
+
28: </div>
|
293
|
+
29: <% end %>
|
294
|
+
actionpack (3.2.8) lib/action_view/template.rb:297:in `module_eval'
|
295
|
+
actionpack (3.2.8) lib/action_view/template.rb:297:in `compile'
|
296
|
+
actionpack (3.2.8) lib/action_view/template.rb:244:in `block in compile!'
|
297
|
+
<internal:prelude>:10:in `synchronize'
|
298
|
+
actionpack (3.2.8) lib/action_view/template.rb:232:in `compile!'
|
299
|
+
actionpack (3.2.8) lib/action_view/template.rb:144:in `block in render'
|
300
|
+
activesupport (3.2.8) lib/active_support/notifications.rb:125:in `instrument'
|
301
|
+
actionpack (3.2.8) lib/action_view/template.rb:143:in `render'
|
302
|
+
actionpack (3.2.8) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
303
|
+
actionpack (3.2.8) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
304
|
+
activesupport (3.2.8) lib/active_support/notifications.rb:123:in `block in instrument'
|
305
|
+
activesupport (3.2.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
306
|
+
activesupport (3.2.8) lib/active_support/notifications.rb:123:in `instrument'
|
307
|
+
actionpack (3.2.8) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
308
|
+
actionpack (3.2.8) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
309
|
+
actionpack (3.2.8) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
310
|
+
actionpack (3.2.8) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
311
|
+
actionpack (3.2.8) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
312
|
+
actionpack (3.2.8) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
313
|
+
actionpack (3.2.8) lib/action_view/renderer/renderer.rb:17:in `render'
|
314
|
+
actionpack (3.2.8) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
315
|
+
actionpack (3.2.8) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
316
|
+
actionpack (3.2.8) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
317
|
+
actionpack (3.2.8) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
318
|
+
actionpack (3.2.8) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
319
|
+
actionpack (3.2.8) lib/abstract_controller/rendering.rb:88:in `render'
|
320
|
+
actionpack (3.2.8) lib/action_controller/metal/rendering.rb:16:in `render'
|
321
|
+
actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
322
|
+
activesupport (3.2.8) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
323
|
+
/Users/matt/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
324
|
+
activesupport (3.2.8) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
325
|
+
actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
326
|
+
actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
327
|
+
activerecord (3.2.8) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
328
|
+
actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
329
|
+
actionpack (3.2.8) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
330
|
+
actionpack (3.2.8) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
331
|
+
actionpack (3.2.8) lib/abstract_controller/base.rb:167:in `process_action'
|
332
|
+
actionpack (3.2.8) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
333
|
+
actionpack (3.2.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
334
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:414:in `_run__3826713535409500211__process_action__2761810839518818863__callbacks'
|
335
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
|
336
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
337
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
338
|
+
actionpack (3.2.8) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
339
|
+
actionpack (3.2.8) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
340
|
+
actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
341
|
+
activesupport (3.2.8) lib/active_support/notifications.rb:123:in `block in instrument'
|
342
|
+
activesupport (3.2.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
343
|
+
activesupport (3.2.8) lib/active_support/notifications.rb:123:in `instrument'
|
344
|
+
actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
345
|
+
actionpack (3.2.8) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
346
|
+
activerecord (3.2.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
347
|
+
actionpack (3.2.8) lib/abstract_controller/base.rb:121:in `process'
|
348
|
+
actionpack (3.2.8) lib/abstract_controller/rendering.rb:45:in `process'
|
349
|
+
actionpack (3.2.8) lib/action_controller/metal.rb:203:in `dispatch'
|
350
|
+
actionpack (3.2.8) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
351
|
+
actionpack (3.2.8) lib/action_controller/metal.rb:246:in `block in action'
|
352
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
353
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
354
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
355
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
356
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
357
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
358
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:600:in `call'
|
359
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
360
|
+
rack (1.4.1) lib/rack/etag.rb:23:in `call'
|
361
|
+
rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
|
362
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
|
363
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
364
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
365
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
|
366
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
|
367
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
|
368
|
+
activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
|
369
|
+
activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
|
370
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
371
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__1880878322598319877__call__2574047420790886458__callbacks'
|
372
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
|
373
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
374
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
375
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
376
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
377
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
378
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
379
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
380
|
+
railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
|
381
|
+
railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
|
382
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
383
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
384
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
385
|
+
activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
386
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
387
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
|
388
|
+
railties (3.2.8) lib/rails/engine.rb:479:in `call'
|
389
|
+
railties (3.2.8) lib/rails/application.rb:223:in `call'
|
390
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
391
|
+
railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
|
392
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
393
|
+
/Users/matt/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
394
|
+
/Users/matt/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
395
|
+
/Users/matt/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
396
|
+
|
397
|
+
|
398
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
|
399
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
|
400
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (14.8ms)
|
401
|
+
|
402
|
+
|
403
|
+
Started GET "/" for 127.0.0.1 at 2012-12-02 16:21:39 -0200
|
404
|
+
Processing by TestController#index as HTML
|
405
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models" [0m
|
406
|
+
Rendered test/index.html.erb within layouts/application (4.6ms)
|
407
|
+
Compiled application.css (1ms) (pid 7846)
|
408
|
+
Compiled jquery.js (6ms) (pid 7846)
|
409
|
+
Compiled jquery_ujs.js (0ms) (pid 7846)
|
410
|
+
Compiled application.js (48ms) (pid 7846)
|
411
|
+
Completed 200 OK in 170ms (Views: 168.5ms | ActiveRecord: 1.6ms)
|
412
|
+
|
413
|
+
|
414
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-02 16:21:39 -0200
|
415
|
+
Served asset /jquery.js - 200 OK (27ms)
|
416
|
+
|
417
|
+
|
418
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-02 16:21:39 -0200
|
419
|
+
Served asset /application.js - 200 OK (6ms)
|
420
|
+
|
421
|
+
|
422
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-02 16:21:39 -0200
|
423
|
+
Served asset /jquery_ujs.js - 200 OK (1ms)
|
424
|
+
|
425
|
+
|
426
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-02 16:21:39 -0200
|
427
|
+
Served asset /application.css - 200 OK (16ms)
|
428
|
+
Connecting to database specified by database.yml
|
429
|
+
Connecting to database specified by database.yml
|
430
|
+
|
431
|
+
|
432
|
+
Started GET "/" for 127.0.0.1 at 2012-12-02 16:22:27 -0200
|
433
|
+
Processing by TestController#index as HTML
|
434
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models" [0m
|
435
|
+
[1m[35mModel Load (0.1ms)[0m SELECT "models".* FROM "models" LIMIT 2 OFFSET 4
|
436
|
+
Rendered test/index.html.erb within layouts/application (12.8ms)
|
437
|
+
Completed 500 Internal Server Error in 49ms
|
438
|
+
|
439
|
+
ActionView::Template::Error (undefined local variable or method `request' for #<RailsPagination::ActionView::Pager:0x007fb79e0838a8>):
|
440
|
+
2: <% if pager.has_multiple_pages? %>
|
441
|
+
3: <div id="pager">
|
442
|
+
4: <% if pager.has_first_page? %>
|
443
|
+
5: <a class="first" href="<%= pager.first_page_path %>"><%= t('pager.first') %></a>
|
444
|
+
6: <% end %>
|
445
|
+
7: <% if pager.has_previous_page? %>
|
446
|
+
8: <a class="previous" href="<%= pager.previous_page_path %>"><%= t('pager.previous') %></a>
|
447
|
+
app/views/test/index.html.erb:5:in `_app_views_test_index_html_erb___4396946798376005744_70213305319720'
|
448
|
+
|
449
|
+
|
450
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
|
451
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
|
452
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.1ms)
|
453
|
+
Connecting to database specified by database.yml
|
454
|
+
Connecting to database specified by database.yml
|
455
|
+
|
456
|
+
|
457
|
+
Started GET "/" for 127.0.0.1 at 2012-12-02 16:56:24 -0200
|
458
|
+
Processing by TestController#index as HTML
|
459
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models" [0m
|
460
|
+
[1m[35mModel Load (0.1ms)[0m SELECT "models".* FROM "models" LIMIT 2 OFFSET 4
|
461
|
+
Rendered test/index.html.erb within layouts/application (12.1ms)
|
462
|
+
Completed 500 Internal Server Error in 47ms
|
463
|
+
|
464
|
+
ActionView::Template::Error (undefined local variable or method `params' for #<RailsPagination::ActionView::Pager:0x007f89f6bb4d88>):
|
465
|
+
2: <% if pager.has_multiple_pages? %>
|
466
|
+
3: <div id="pager">
|
467
|
+
4: <% if pager.has_first_page? %>
|
468
|
+
5: <a class="first" href="<%= pager.first_page_path %>"><%= t('pager.first') %></a>
|
469
|
+
6: <% end %>
|
470
|
+
7: <% if pager.has_previous_page? %>
|
471
|
+
8: <a class="previous" href="<%= pager.previous_page_path %>"><%= t('pager.previous') %></a>
|
472
|
+
app/views/test/index.html.erb:5:in `_app_views_test_index_html_erb__3945398745547744494_70115263726500'
|
473
|
+
|
474
|
+
|
475
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
|
476
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
|
477
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.2ms)
|
478
|
+
|
479
|
+
|
480
|
+
Started GET "/" for 127.0.0.1 at 2012-12-02 16:56:42 -0200
|
481
|
+
Processing by TestController#index as HTML
|
482
|
+
[1m[36mModel Load (0.1ms)[0m [1mSELECT "models".* FROM "models" LIMIT 2 OFFSET 4[0m
|
483
|
+
Rendered test/index.html.erb within layouts/application (5.5ms)
|
484
|
+
Completed 500 Internal Server Error in 9ms
|
485
|
+
|
486
|
+
ActionView::Template::Error (undefined local variable or method `collection' for #<#<Class:0x007f89f44cbca8>:0x007f89f6a0e1c8>):
|
487
|
+
1:
|
488
|
+
2: <%= url_for(request.query_parameters.merge(:p => collection.first_page)) %>
|
489
|
+
app/views/test/index.html.erb:2:in `_app_views_test_index_html_erb__3945398745547744494_70115262507080'
|
490
|
+
|
491
|
+
|
492
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
|
493
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
|
494
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.2ms)
|
495
|
+
|
496
|
+
|
497
|
+
Started GET "/" for 127.0.0.1 at 2012-12-02 16:56:55 -0200
|
498
|
+
Processing by TestController#index as HTML
|
499
|
+
Rendered test/index.html.erb within layouts/application (1.5ms)
|
500
|
+
Completed 200 OK in 59ms (Views: 58.7ms | ActiveRecord: 0.0ms)
|
501
|
+
|
502
|
+
|
503
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-02 16:56:55 -0200
|
504
|
+
Served asset /application.css - 304 Not Modified (1ms)
|
505
|
+
|
506
|
+
|
507
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-02 16:56:55 -0200
|
508
|
+
Served asset /jquery.js - 304 Not Modified (4ms)
|
509
|
+
|
510
|
+
|
511
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-02 16:56:55 -0200
|
512
|
+
Served asset /application.js - 304 Not Modified (3ms)
|
513
|
+
|
514
|
+
|
515
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-02 16:56:55 -0200
|
516
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
517
|
+
|
518
|
+
|
519
|
+
Started GET "/" for 127.0.0.1 at 2012-12-02 16:57:45 -0200
|
520
|
+
Processing by TestController#index as HTML
|
521
|
+
[1m[35mModel Load (0.1ms)[0m SELECT "models".* FROM "models" LIMIT 2 OFFSET 4
|
522
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models" [0m
|
523
|
+
Rendered test/index.html.erb within layouts/application (2.6ms)
|
524
|
+
Completed 500 Internal Server Error in 14ms
|
525
|
+
|
526
|
+
ActionView::Template::Error (undefined local variable or method `params' for #<RailsPagination::ActionView::Pager:0x007f89f69e6c18>):
|
527
|
+
2: <% if pager.has_multiple_pages? %>
|
528
|
+
3: <div id="pager">
|
529
|
+
4: <% if pager.has_first_page? %>
|
530
|
+
5: <a class="first" href="<%= pager.first_page_path %>"><%= t('pager.first') %></a>
|
531
|
+
6: <% end %>
|
532
|
+
7: <% if pager.has_previous_page? %>
|
533
|
+
8: <a class="previous" href="<%= pager.previous_page_path %>"><%= t('pager.previous') %></a>
|
534
|
+
app/views/test/index.html.erb:5:in `_app_views_test_index_html_erb__3945398745547744494_70115262560420'
|
535
|
+
|
536
|
+
|
537
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
|
538
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
|
539
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.9ms)
|
540
|
+
Connecting to database specified by database.yml
|
541
|
+
|
542
|
+
|
543
|
+
Started GET "/" for 127.0.0.1 at 2012-12-02 17:17:39 -0200
|
544
|
+
Processing by TestController#index as HTML
|
545
|
+
[1m[36mModel Load (0.1ms)[0m [1mSELECT "models".* FROM "models" LIMIT 2 OFFSET 4[0m
|
546
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
547
|
+
Rendered test/index.html.erb within layouts/application (5.2ms)
|
548
|
+
Completed 500 Internal Server Error in 47ms
|
549
|
+
|
550
|
+
ActionView::Template::Error (undefined method `request' for nil:NilClass):
|
551
|
+
2: <% if pager.has_multiple_pages? %>
|
552
|
+
3: <div id="pager">
|
553
|
+
4: <% if pager.has_first_page? %>
|
554
|
+
5: <a class="first" href="<%= pager.first_page_path %>"><%= t('pager.first') %></a>
|
555
|
+
6: <% end %>
|
556
|
+
7: <% if pager.has_previous_page? %>
|
557
|
+
8: <a class="previous" href="<%= pager.previous_page_path %>"><%= t('pager.previous') %></a>
|
558
|
+
app/views/test/index.html.erb:5:in `_app_views_test_index_html_erb___3325975247903954997_70179734568520'
|
559
|
+
|
560
|
+
|
561
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
|
562
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
|
563
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.8ms)
|
564
|
+
Connecting to database specified by database.yml
|
565
|
+
|
566
|
+
|
567
|
+
Started GET "/" for 127.0.0.1 at 2012-12-02 17:18:44 -0200
|
568
|
+
Processing by TestController#index as HTML
|
569
|
+
[1m[36mModel Load (0.1ms)[0m [1mSELECT "models".* FROM "models" LIMIT 2 OFFSET 4[0m
|
570
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
571
|
+
Rendered test/index.html.erb within layouts/application (5.5ms)
|
572
|
+
Completed 500 Internal Server Error in 49ms
|
573
|
+
|
574
|
+
ActionView::Template::Error (undefined method `request' for nil:NilClass):
|
575
|
+
2: <% if pager.has_multiple_pages? %>
|
576
|
+
3: <div id="pager">
|
577
|
+
4: <% if pager.has_first_page? %>
|
578
|
+
5: <a class="first" href="<%= pager.first_page_path %>"><%= t('pager.first') %></a>
|
579
|
+
6: <% end %>
|
580
|
+
7: <% if pager.has_previous_page? %>
|
581
|
+
8: <a class="previous" href="<%= pager.previous_page_path %>"><%= t('pager.previous') %></a>
|
582
|
+
app/views/test/index.html.erb:5:in `_app_views_test_index_html_erb__4313967535755236061_70294896389100'
|
583
|
+
|
584
|
+
|
585
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
|
586
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
|
587
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.8ms)
|
588
|
+
Connecting to database specified by database.yml
|
589
|
+
|
590
|
+
|
591
|
+
Started GET "/" for 127.0.0.1 at 2012-12-02 17:21:41 -0200
|
592
|
+
Processing by TestController#index as HTML
|
593
|
+
[1m[36mModel Load (0.1ms)[0m [1mSELECT "models".* FROM "models" LIMIT 2 OFFSET 4[0m
|
594
|
+
Rendered test/index.html.erb within layouts/application (4.4ms)
|
595
|
+
Completed 500 Internal Server Error in 46ms
|
596
|
+
|
597
|
+
ActionView::Template::Error (undefined method `merge' for #<Array:0x007fdf73a539d0>):
|
598
|
+
1: <% pager = paginate(@collection, :navigation => 3, :parameter => :p) %>
|
599
|
+
2: <% if pager.has_multiple_pages? %>
|
600
|
+
3: <div id="pager">
|
601
|
+
4: <% if pager.has_first_page? %>
|
602
|
+
app/views/test/index.html.erb:1:in `_app_views_test_index_html_erb__2623836088629988888_70298847826360'
|
603
|
+
|
604
|
+
|
605
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
|
606
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
|
607
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.6ms)
|
608
|
+
|
609
|
+
|
610
|
+
Started GET "/" for 127.0.0.1 at 2012-12-02 17:21:43 -0200
|
611
|
+
Processing by TestController#index as HTML
|
612
|
+
[1m[35mModel Load (0.2ms)[0m SELECT "models".* FROM "models" LIMIT 2 OFFSET 4
|
613
|
+
Rendered test/index.html.erb within layouts/application (0.7ms)
|
614
|
+
Completed 500 Internal Server Error in 7ms
|
615
|
+
|
616
|
+
ActionView::Template::Error (undefined method `merge' for #<Array:0x007fdf72ed6508>):
|
617
|
+
1: <% pager = paginate(@collection, :navigation => 3, :parameter => :p) %>
|
618
|
+
2: <% if pager.has_multiple_pages? %>
|
619
|
+
3: <div id="pager">
|
620
|
+
4: <% if pager.has_first_page? %>
|
621
|
+
app/views/test/index.html.erb:1:in `_app_views_test_index_html_erb__2623836088629988888_70298847826360'
|
622
|
+
|
623
|
+
|
624
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
|
625
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
|
626
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.3ms)
|
627
|
+
Connecting to database specified by database.yml
|
628
|
+
|
629
|
+
|
630
|
+
Started GET "/" for 127.0.0.1 at 2012-12-02 17:21:54 -0200
|
631
|
+
Processing by TestController#index as HTML
|
632
|
+
[1m[36mModel Load (0.1ms)[0m [1mSELECT "models".* FROM "models" LIMIT 2 OFFSET 4[0m
|
633
|
+
Rendered test/index.html.erb within layouts/application (4.6ms)
|
634
|
+
Completed 500 Internal Server Error in 48ms
|
635
|
+
|
636
|
+
ActionView::Template::Error (undefined method `merge' for #<Array:0x007ff9070fb420>):
|
637
|
+
1: <% pager = paginate(@collection, :navigation => 3, :parameter => :p) %>
|
638
|
+
2: <% if pager.has_multiple_pages? %>
|
639
|
+
3: <div id="pager">
|
640
|
+
4: <% if pager.has_first_page? %>
|
641
|
+
app/views/test/index.html.erb:1:in `_app_views_test_index_html_erb__1795465595880696679_70353772353260'
|
642
|
+
|
643
|
+
|
644
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
|
645
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
|
646
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.7ms)
|
647
|
+
Connecting to database specified by database.yml
|
648
|
+
|
649
|
+
|
650
|
+
Started GET "/" for 127.0.0.1 at 2012-12-02 17:23:03 -0200
|
651
|
+
Processing by TestController#index as HTML
|
652
|
+
[1m[36mModel Load (0.1ms)[0m [1mSELECT "models".* FROM "models" LIMIT 2 OFFSET 4[0m
|
653
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
654
|
+
Rendered test/index.html.erb within layouts/application (6.4ms)
|
655
|
+
Completed 500 Internal Server Error in 51ms
|
656
|
+
|
657
|
+
ActionView::Template::Error (undefined method `request' for nil:NilClass):
|
658
|
+
2: <% if pager.has_multiple_pages? %>
|
659
|
+
3: <div id="pager">
|
660
|
+
4: <% if pager.has_first_page? %>
|
661
|
+
5: <a class="first" href="<%= pager.first_page_path %>"><%= t('pager.first') %></a>
|
662
|
+
6: <% end %>
|
663
|
+
7: <% if pager.has_previous_page? %>
|
664
|
+
8: <a class="previous" href="<%= pager.previous_page_path %>"><%= t('pager.previous') %></a>
|
665
|
+
app/views/test/index.html.erb:5:in `_app_views_test_index_html_erb__3444591480363476615_70232032564440'
|
666
|
+
|
667
|
+
|
668
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
|
669
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
|
670
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.4ms)
|
671
|
+
Connecting to database specified by database.yml
|
672
|
+
|
673
|
+
|
674
|
+
Started GET "/" for 127.0.0.1 at 2012-12-02 17:23:29 -0200
|
675
|
+
Processing by TestController#index as HTML
|
676
|
+
[1m[36mModel Load (0.1ms)[0m [1mSELECT "models".* FROM "models" LIMIT 2 OFFSET 4[0m
|
677
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
678
|
+
Rendered test/index.html.erb within layouts/application (6.9ms)
|
679
|
+
Completed 500 Internal Server Error in 51ms
|
680
|
+
|
681
|
+
ActionView::Template::Error (undefined method `request' for nil:NilClass):
|
682
|
+
2: <% if pager.has_multiple_pages? %>
|
683
|
+
3: <div id="pager">
|
684
|
+
4: <% if pager.has_first_page? %>
|
685
|
+
5: <a class="first" href="<%= pager.first_page_path %>"><%= t('pager.first') %></a>
|
686
|
+
6: <% end %>
|
687
|
+
7: <% if pager.has_previous_page? %>
|
688
|
+
8: <a class="previous" href="<%= pager.previous_page_path %>"><%= t('pager.previous') %></a>
|
689
|
+
app/views/test/index.html.erb:5:in `_app_views_test_index_html_erb__4052034718111711725_70156039639040'
|
690
|
+
|
691
|
+
|
692
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
|
693
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
|
694
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.9ms)
|
695
|
+
Connecting to database specified by database.yml
|
696
|
+
|
697
|
+
|
698
|
+
Started GET "/" for 127.0.0.1 at 2012-12-02 17:24:18 -0200
|
699
|
+
Processing by TestController#index as HTML
|
700
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models" [0m
|
701
|
+
Rendered test/index.html.erb within layouts/application (7.6ms)
|
702
|
+
Completed 500 Internal Server Error in 41ms
|
703
|
+
|
704
|
+
ActionView::Template::Error (undefined method `request' for nil:NilClass):
|
705
|
+
2: <% if pager.has_multiple_pages? %>
|
706
|
+
3: <div id="pager">
|
707
|
+
4: <% if pager.has_first_page? %>
|
708
|
+
5: <a class="first" href="<%= pager.first_page_path %>"><%= t('pager.first') %></a>
|
709
|
+
6: <% end %>
|
710
|
+
7: <% if pager.has_previous_page? %>
|
711
|
+
8: <a class="previous" href="<%= pager.previous_page_path %>"><%= t('pager.previous') %></a>
|
712
|
+
app/views/test/index.html.erb:5:in `_app_views_test_index_html_erb___3275221231068165867_70143571203820'
|
713
|
+
|
714
|
+
|
715
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
|
716
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
|
717
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.6ms)
|
718
|
+
Connecting to database specified by database.yml
|
719
|
+
|
720
|
+
|
721
|
+
Started GET "/" for 127.0.0.1 at 2012-12-02 17:33:20 -0200
|
722
|
+
Processing by TestController#index as HTML
|
723
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models" [0m
|
724
|
+
Rendered test/index.html.erb within layouts/application (26.1ms)
|
725
|
+
Completed 200 OK in 69ms (Views: 38.5ms | ActiveRecord: 1.4ms)
|
726
|
+
|
727
|
+
|
728
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-02 17:33:20 -0200
|
729
|
+
Served asset /application.css - 304 Not Modified (1ms)
|
730
|
+
|
731
|
+
|
732
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-02 17:33:20 -0200
|
733
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
734
|
+
|
735
|
+
|
736
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-02 17:33:20 -0200
|
737
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
738
|
+
|
739
|
+
|
740
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-02 17:33:20 -0200
|
741
|
+
Served asset /jquery.js - 304 Not Modified (2ms)
|
742
|
+
Connecting to database specified by database.yml
|
743
|
+
|
744
|
+
|
745
|
+
Started GET "/" for 127.0.0.1 at 2012-12-02 17:36:32 -0200
|
746
|
+
Processing by TestController#index as HTML
|
747
|
+
[1m[36mModel Load (0.1ms)[0m [1mSELECT "models".* FROM "models" LIMIT 2 OFFSET 4[0m
|
748
|
+
Rendered test/index.html.erb within layouts/application (14.8ms)
|
749
|
+
Completed 500 Internal Server Error in 50ms
|
750
|
+
|
751
|
+
ActionView::Template::Error (undefined method `total_pages' for #<#<Class:0x007ffd32447820>:0x007ffd324dce98>):
|
752
|
+
1: <% pager = paginate(@collection, :navigation => 3, :parameter => :p) %>
|
753
|
+
2: <% if pager.has_multiple_pages? %>
|
754
|
+
3: <div id="pager">
|
755
|
+
4: <% if pager.has_first_page? %>
|
756
|
+
app/views/test/index.html.erb:1:in `_app_views_test_index_html_erb__3578371924259989784_70362727366420'
|
757
|
+
|
758
|
+
|
759
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
|
760
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
|
761
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.7ms)
|
762
|
+
Connecting to database specified by database.yml
|
763
|
+
|
764
|
+
|
765
|
+
Started GET "/" for 127.0.0.1 at 2012-12-02 17:37:43 -0200
|
766
|
+
Processing by TestController#index as HTML
|
767
|
+
[1m[36mModel Load (0.1ms)[0m [1mSELECT "models".* FROM "models" LIMIT 2 OFFSET 4[0m
|
768
|
+
Rendered test/index.html.erb within layouts/application (14.6ms)
|
769
|
+
Completed 500 Internal Server Error in 50ms
|
770
|
+
|
771
|
+
ActionView::Template::Error (undefined method `total_pages' for #<#<Class:0x007fa6bc4c80a0>:0x007fa6bc55d5d8>):
|
772
|
+
1: <% pager = paginate(@collection, :navigation => 3, :parameter => :p) %>
|
773
|
+
2: <% if pager.has_multiple_pages? %>
|
774
|
+
3: <div id="pager">
|
775
|
+
4: <% if pager.has_first_page? %>
|
776
|
+
app/views/test/index.html.erb:1:in `_app_views_test_index_html_erb__1032469957021693377_70177062787700'
|
777
|
+
|
778
|
+
|
779
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
|
780
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms)
|
781
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.5ms)
|
782
|
+
|
783
|
+
|
784
|
+
Started GET "/" for 127.0.0.1 at 2012-12-02 17:37:44 -0200
|
785
|
+
Processing by TestController#index as HTML
|
786
|
+
[1m[35mModel Load (0.2ms)[0m SELECT "models".* FROM "models" LIMIT 2 OFFSET 4
|
787
|
+
Rendered test/index.html.erb within layouts/application (6.1ms)
|
788
|
+
Completed 500 Internal Server Error in 8ms
|
789
|
+
|
790
|
+
ActionView::Template::Error (undefined method `total_pages' for #<#<Class:0x007fa6bc4c80a0>:0x007fa6bda36c98>):
|
791
|
+
1: <% pager = paginate(@collection, :navigation => 3, :parameter => :p) %>
|
792
|
+
2: <% if pager.has_multiple_pages? %>
|
793
|
+
3: <div id="pager">
|
794
|
+
4: <% if pager.has_first_page? %>
|
795
|
+
app/views/test/index.html.erb:1:in `_app_views_test_index_html_erb__1032469957021693377_70177062787700'
|
796
|
+
|
797
|
+
|
798
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
|
799
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
|
800
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.2ms)
|
801
|
+
|
802
|
+
|
803
|
+
Started GET "/" for 127.0.0.1 at 2012-12-02 17:37:45 -0200
|
804
|
+
Processing by TestController#index as HTML
|
805
|
+
[1m[36mModel Load (0.2ms)[0m [1mSELECT "models".* FROM "models" LIMIT 2 OFFSET 4[0m
|
806
|
+
Rendered test/index.html.erb within layouts/application (7.1ms)
|
807
|
+
Completed 500 Internal Server Error in 10ms
|
808
|
+
|
809
|
+
ActionView::Template::Error (undefined method `total_pages' for #<#<Class:0x007fa6bc4c80a0>:0x007fa6bc5c5d90>):
|
810
|
+
1: <% pager = paginate(@collection, :navigation => 3, :parameter => :p) %>
|
811
|
+
2: <% if pager.has_multiple_pages? %>
|
812
|
+
3: <div id="pager">
|
813
|
+
4: <% if pager.has_first_page? %>
|
814
|
+
app/views/test/index.html.erb:1:in `_app_views_test_index_html_erb__1032469957021693377_70177062787700'
|
815
|
+
|
816
|
+
|
817
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
|
818
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
|
819
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (23.4ms)
|
820
|
+
|
821
|
+
|
822
|
+
Started GET "/" for 127.0.0.1 at 2012-12-02 17:37:46 -0200
|
823
|
+
Processing by TestController#index as HTML
|
824
|
+
[1m[35mModel Load (0.2ms)[0m SELECT "models".* FROM "models" LIMIT 2 OFFSET 4
|
825
|
+
Rendered test/index.html.erb within layouts/application (7.0ms)
|
826
|
+
Completed 500 Internal Server Error in 9ms
|
827
|
+
|
828
|
+
ActionView::Template::Error (undefined method `total_pages' for #<#<Class:0x007fa6bc4c80a0>:0x007fa6bdd58f98>):
|
829
|
+
1: <% pager = paginate(@collection, :navigation => 3, :parameter => :p) %>
|
830
|
+
2: <% if pager.has_multiple_pages? %>
|
831
|
+
3: <div id="pager">
|
832
|
+
4: <% if pager.has_first_page? %>
|
833
|
+
app/views/test/index.html.erb:1:in `_app_views_test_index_html_erb__1032469957021693377_70177062787700'
|
834
|
+
|
835
|
+
|
836
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
|
837
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
|
838
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.1ms)
|
839
|
+
Connecting to database specified by database.yml
|
840
|
+
|
841
|
+
|
842
|
+
Started GET "/" for 127.0.0.1 at 2012-12-02 17:38:24 -0200
|
843
|
+
Processing by TestController#index as HTML
|
844
|
+
[1m[36mModel Load (0.1ms)[0m [1mSELECT "models".* FROM "models" LIMIT 2 OFFSET 4[0m
|
845
|
+
Rendered test/index.html.erb within layouts/application (22.9ms)
|
846
|
+
Completed 500 Internal Server Error in 58ms
|
847
|
+
|
848
|
+
ActionView::Template::Error (undefined method `total_pages' for #<#<Class:0x007f9994c48bc0>:0x007f9994cde530>):
|
849
|
+
1: <% pager = paginate(@collection, :navigation => 3, :parameter => :p) %>
|
850
|
+
2: <% if pager.has_multiple_pages? %>
|
851
|
+
3: <div id="pager">
|
852
|
+
4: <% if pager.has_first_page? %>
|
853
|
+
app/views/test/index.html.erb:1:in `_app_views_test_index_html_erb__771088453751138897_70148805471860'
|
854
|
+
|
855
|
+
|
856
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
|
857
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
|
858
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.8ms)
|
859
|
+
Connecting to database specified by database.yml
|
860
|
+
|
861
|
+
|
862
|
+
Started GET "/" for 127.0.0.1 at 2012-12-02 17:39:15 -0200
|
863
|
+
Processing by TestController#index as HTML
|
864
|
+
[1m[36mModel Load (0.1ms)[0m [1mSELECT "models".* FROM "models" LIMIT 2 OFFSET 4[0m
|
865
|
+
Rendered test/index.html.erb within layouts/application (16.7ms)
|
866
|
+
Completed 500 Internal Server Error in 52ms
|
867
|
+
|
868
|
+
ActionView::Template::Error (undefined method `total_pages' for #<#<Class:0x007fb175c477e0>:0x007fb175cdd3d0>):
|
869
|
+
1: <% pager = paginate(@collection, :navigation => 3, :parameter => :p) %>
|
870
|
+
2: <% if pager.has_multiple_pages? %>
|
871
|
+
3: <div id="pager">
|
872
|
+
4: <% if pager.has_first_page? %>
|
873
|
+
app/views/test/index.html.erb:1:in `_app_views_test_index_html_erb__466838653312471908_70200089073600'
|
874
|
+
|
875
|
+
|
876
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
|
877
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
|
878
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.1ms)
|
879
|
+
Connecting to database specified by database.yml
|
880
|
+
|
881
|
+
|
882
|
+
Started GET "/" for 127.0.0.1 at 2012-12-02 17:39:46 -0200
|
883
|
+
Processing by TestController#index as HTML
|
884
|
+
[1m[36mModel Load (0.1ms)[0m [1mSELECT "models".* FROM "models" LIMIT 2 OFFSET 4[0m
|
885
|
+
Rendered test/index.html.erb within layouts/application (14.7ms)
|
886
|
+
Completed 500 Internal Server Error in 49ms
|
887
|
+
|
888
|
+
ActionView::Template::Error (undefined method `total_pages' for #<#<Class:0x007fd484447d88>:0x007fd4844dd1a8>):
|
889
|
+
1: <% pager = paginate(@collection, :navigation => 3, :parameter => :p) %>
|
890
|
+
2: <% if pager.has_multiple_pages? %>
|
891
|
+
3: <div id="pager">
|
892
|
+
4: <% if pager.has_first_page? %>
|
893
|
+
app/views/test/index.html.erb:1:in `_app_views_test_index_html_erb__3058637506104082391_70275372868580'
|
894
|
+
|
895
|
+
|
896
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
|
897
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
|
898
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.0ms)
|
899
|
+
Connecting to database specified by database.yml
|
900
|
+
|
901
|
+
|
902
|
+
Started GET "/" for 127.0.0.1 at 2012-12-02 17:41:42 -0200
|
903
|
+
Processing by TestController#index as HTML
|
904
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models" [0m
|
905
|
+
Rendered test/index.html.erb within layouts/application (10.4ms)
|
906
|
+
Completed 200 OK in 55ms (Views: 23.4ms | ActiveRecord: 1.4ms)
|
907
|
+
|
908
|
+
|
909
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-02 17:41:43 -0200
|
910
|
+
Served asset /application.css - 304 Not Modified (1ms)
|
911
|
+
|
912
|
+
|
913
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-02 17:41:43 -0200
|
914
|
+
Served asset /jquery.js - 304 Not Modified (5ms)
|
915
|
+
|
916
|
+
|
917
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-02 17:41:43 -0200
|
918
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
919
|
+
|
920
|
+
|
921
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-02 17:41:43 -0200
|
922
|
+
Served asset /application.js - 304 Not Modified (3ms)
|
923
|
+
Connecting to database specified by database.yml
|
924
|
+
|
925
|
+
|
926
|
+
Started GET "/" for 127.0.0.1 at 2012-12-02 18:05:18 -0200
|
927
|
+
Processing by TestController#index as HTML
|
928
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models" [0m
|
929
|
+
Rendered test/index.html.erb within layouts/application (9.6ms)
|
930
|
+
Completed 200 OK in 52ms (Views: 23.0ms | ActiveRecord: 1.3ms)
|
931
|
+
|
932
|
+
|
933
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-02 18:05:18 -0200
|
934
|
+
Served asset /application.css - 304 Not Modified (1ms)
|
935
|
+
|
936
|
+
|
937
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-02 18:05:18 -0200
|
938
|
+
Served asset /jquery.js - 304 Not Modified (4ms)
|
939
|
+
|
940
|
+
|
941
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-02 18:05:18 -0200
|
942
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
943
|
+
|
944
|
+
|
945
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-02 18:05:18 -0200
|
946
|
+
Served asset /application.js - 304 Not Modified (3ms)
|
947
|
+
|
948
|
+
|
949
|
+
Started GET "/?p=4" for 127.0.0.1 at 2012-12-02 18:05:23 -0200
|
950
|
+
Processing by TestController#index as HTML
|
951
|
+
Parameters: {"p"=>"4"}
|
952
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
953
|
+
Rendered test/index.html.erb within layouts/application (2.6ms)
|
954
|
+
Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.1ms)
|
955
|
+
|
956
|
+
|
957
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-02 18:05:23 -0200
|
958
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
959
|
+
|
960
|
+
|
961
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-02 18:05:23 -0200
|
962
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
963
|
+
|
964
|
+
|
965
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-02 18:05:23 -0200
|
966
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
967
|
+
|
968
|
+
|
969
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-02 18:05:23 -0200
|
970
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
971
|
+
|
972
|
+
|
973
|
+
Started GET "/?p=4" for 127.0.0.1 at 2012-12-02 18:05:59 -0200
|
974
|
+
Processing by TestController#index as HTML
|
975
|
+
Parameters: {"p"=>"4"}
|
976
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models" [0m
|
977
|
+
Rendered test/index.html.erb within layouts/application (3.2ms)
|
978
|
+
Completed 200 OK in 8ms (Views: 5.8ms | ActiveRecord: 0.5ms)
|
979
|
+
|
980
|
+
|
981
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-02 18:05:59 -0200
|
982
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
983
|
+
|
984
|
+
|
985
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-02 18:05:59 -0200
|
986
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
987
|
+
|
988
|
+
|
989
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-02 18:05:59 -0200
|
990
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
991
|
+
|
992
|
+
|
993
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-02 18:05:59 -0200
|
994
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
995
|
+
|
996
|
+
|
997
|
+
Started GET "/?p=5" for 127.0.0.1 at 2012-12-02 18:06:01 -0200
|
998
|
+
Processing by TestController#index as HTML
|
999
|
+
Parameters: {"p"=>"5"}
|
1000
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
1001
|
+
Rendered test/index.html.erb within layouts/application (14.3ms)
|
1002
|
+
Completed 200 OK in 17ms (Views: 17.0ms | ActiveRecord: 0.1ms)
|
1003
|
+
|
1004
|
+
|
1005
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-02 18:06:01 -0200
|
1006
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1007
|
+
|
1008
|
+
|
1009
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:01 -0200
|
1010
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1011
|
+
|
1012
|
+
|
1013
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:01 -0200
|
1014
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1015
|
+
|
1016
|
+
|
1017
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:01 -0200
|
1018
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1019
|
+
|
1020
|
+
|
1021
|
+
Started GET "/?p=4" for 127.0.0.1 at 2012-12-02 18:06:03 -0200
|
1022
|
+
Processing by TestController#index as HTML
|
1023
|
+
Parameters: {"p"=>"4"}
|
1024
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models" [0m
|
1025
|
+
Rendered test/index.html.erb within layouts/application (2.7ms)
|
1026
|
+
Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.1ms)
|
1027
|
+
|
1028
|
+
|
1029
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-02 18:06:03 -0200
|
1030
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1031
|
+
|
1032
|
+
|
1033
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:03 -0200
|
1034
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1035
|
+
|
1036
|
+
|
1037
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:03 -0200
|
1038
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1039
|
+
|
1040
|
+
|
1041
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:03 -0200
|
1042
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1043
|
+
|
1044
|
+
|
1045
|
+
Started GET "/?p=3" for 127.0.0.1 at 2012-12-02 18:06:06 -0200
|
1046
|
+
Processing by TestController#index as HTML
|
1047
|
+
Parameters: {"p"=>"3"}
|
1048
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
1049
|
+
Rendered test/index.html.erb within layouts/application (2.6ms)
|
1050
|
+
Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.1ms)
|
1051
|
+
|
1052
|
+
|
1053
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-02 18:06:06 -0200
|
1054
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1055
|
+
|
1056
|
+
|
1057
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:06 -0200
|
1058
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1059
|
+
|
1060
|
+
|
1061
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:06 -0200
|
1062
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1063
|
+
|
1064
|
+
|
1065
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:06 -0200
|
1066
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1067
|
+
|
1068
|
+
|
1069
|
+
Started GET "/?p=2" for 127.0.0.1 at 2012-12-02 18:06:07 -0200
|
1070
|
+
Processing by TestController#index as HTML
|
1071
|
+
Parameters: {"p"=>"2"}
|
1072
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "models" [0m
|
1073
|
+
Rendered test/index.html.erb within layouts/application (4.2ms)
|
1074
|
+
Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.2ms)
|
1075
|
+
|
1076
|
+
|
1077
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-02 18:06:07 -0200
|
1078
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1079
|
+
|
1080
|
+
|
1081
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:07 -0200
|
1082
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1083
|
+
|
1084
|
+
|
1085
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:07 -0200
|
1086
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1087
|
+
|
1088
|
+
|
1089
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:07 -0200
|
1090
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1091
|
+
|
1092
|
+
|
1093
|
+
Started GET "/?p=1" for 127.0.0.1 at 2012-12-02 18:06:09 -0200
|
1094
|
+
Processing by TestController#index as HTML
|
1095
|
+
Parameters: {"p"=>"1"}
|
1096
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "models"
|
1097
|
+
Rendered test/index.html.erb within layouts/application (3.0ms)
|
1098
|
+
Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.2ms)
|
1099
|
+
|
1100
|
+
|
1101
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:09 -0200
|
1102
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1103
|
+
|
1104
|
+
|
1105
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:09 -0200
|
1106
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1107
|
+
|
1108
|
+
|
1109
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-02 18:06:09 -0200
|
1110
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1111
|
+
|
1112
|
+
|
1113
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:09 -0200
|
1114
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1115
|
+
|
1116
|
+
|
1117
|
+
Started GET "/?p=2" for 127.0.0.1 at 2012-12-02 18:06:10 -0200
|
1118
|
+
Processing by TestController#index as HTML
|
1119
|
+
Parameters: {"p"=>"2"}
|
1120
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models" [0m
|
1121
|
+
Rendered test/index.html.erb within layouts/application (2.6ms)
|
1122
|
+
Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.1ms)
|
1123
|
+
|
1124
|
+
|
1125
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:10 -0200
|
1126
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1127
|
+
|
1128
|
+
|
1129
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:10 -0200
|
1130
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1131
|
+
|
1132
|
+
|
1133
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-02 18:06:10 -0200
|
1134
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1135
|
+
|
1136
|
+
|
1137
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:10 -0200
|
1138
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1139
|
+
|
1140
|
+
|
1141
|
+
Started GET "/?p=5" for 127.0.0.1 at 2012-12-02 18:06:11 -0200
|
1142
|
+
Processing by TestController#index as HTML
|
1143
|
+
Parameters: {"p"=>"5"}
|
1144
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "models"
|
1145
|
+
Rendered test/index.html.erb within layouts/application (2.5ms)
|
1146
|
+
Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.2ms)
|
1147
|
+
|
1148
|
+
|
1149
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:11 -0200
|
1150
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1151
|
+
|
1152
|
+
|
1153
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-02 18:06:11 -0200
|
1154
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1155
|
+
|
1156
|
+
|
1157
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:11 -0200
|
1158
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1159
|
+
|
1160
|
+
|
1161
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:11 -0200
|
1162
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1163
|
+
|
1164
|
+
|
1165
|
+
Started GET "/?p=1" for 127.0.0.1 at 2012-12-02 18:06:12 -0200
|
1166
|
+
Processing by TestController#index as HTML
|
1167
|
+
Parameters: {"p"=>"1"}
|
1168
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "models" [0m
|
1169
|
+
Rendered test/index.html.erb within layouts/application (4.0ms)
|
1170
|
+
Completed 200 OK in 8ms (Views: 7.1ms | ActiveRecord: 0.2ms)
|
1171
|
+
|
1172
|
+
|
1173
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:13 -0200
|
1174
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1175
|
+
|
1176
|
+
|
1177
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:13 -0200
|
1178
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1179
|
+
|
1180
|
+
|
1181
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-02 18:06:13 -0200
|
1182
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1183
|
+
|
1184
|
+
|
1185
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:13 -0200
|
1186
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1187
|
+
|
1188
|
+
|
1189
|
+
Started GET "/?p=2" for 127.0.0.1 at 2012-12-02 18:06:14 -0200
|
1190
|
+
Processing by TestController#index as HTML
|
1191
|
+
Parameters: {"p"=>"2"}
|
1192
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
1193
|
+
Rendered test/index.html.erb within layouts/application (2.5ms)
|
1194
|
+
Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.1ms)
|
1195
|
+
|
1196
|
+
|
1197
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-02 18:06:14 -0200
|
1198
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1199
|
+
|
1200
|
+
|
1201
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:14 -0200
|
1202
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1203
|
+
|
1204
|
+
|
1205
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:14 -0200
|
1206
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1207
|
+
|
1208
|
+
|
1209
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:14 -0200
|
1210
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1211
|
+
|
1212
|
+
|
1213
|
+
Started GET "/?p=3" for 127.0.0.1 at 2012-12-02 18:06:15 -0200
|
1214
|
+
Processing by TestController#index as HTML
|
1215
|
+
Parameters: {"p"=>"3"}
|
1216
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "models" [0m
|
1217
|
+
Rendered test/index.html.erb within layouts/application (3.6ms)
|
1218
|
+
Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.2ms)
|
1219
|
+
|
1220
|
+
|
1221
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:15 -0200
|
1222
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1223
|
+
|
1224
|
+
|
1225
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:15 -0200
|
1226
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1227
|
+
|
1228
|
+
|
1229
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:15 -0200
|
1230
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1231
|
+
|
1232
|
+
|
1233
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-02 18:06:15 -0200
|
1234
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1235
|
+
|
1236
|
+
|
1237
|
+
Started GET "/?p=1" for 127.0.0.1 at 2012-12-02 18:06:16 -0200
|
1238
|
+
Processing by TestController#index as HTML
|
1239
|
+
Parameters: {"p"=>"1"}
|
1240
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
1241
|
+
Rendered test/index.html.erb within layouts/application (2.0ms)
|
1242
|
+
Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.1ms)
|
1243
|
+
|
1244
|
+
|
1245
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:16 -0200
|
1246
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1247
|
+
|
1248
|
+
|
1249
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:16 -0200
|
1250
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1251
|
+
|
1252
|
+
|
1253
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:16 -0200
|
1254
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1255
|
+
|
1256
|
+
|
1257
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-02 18:06:16 -0200
|
1258
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1259
|
+
|
1260
|
+
|
1261
|
+
Started GET "/?p=2" for 127.0.0.1 at 2012-12-02 18:06:17 -0200
|
1262
|
+
Processing by TestController#index as HTML
|
1263
|
+
Parameters: {"p"=>"2"}
|
1264
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "models" [0m
|
1265
|
+
Rendered test/index.html.erb within layouts/application (4.3ms)
|
1266
|
+
Completed 200 OK in 8ms (Views: 7.7ms | ActiveRecord: 0.2ms)
|
1267
|
+
|
1268
|
+
|
1269
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-02 18:06:17 -0200
|
1270
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1271
|
+
|
1272
|
+
|
1273
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:17 -0200
|
1274
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1275
|
+
|
1276
|
+
|
1277
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:17 -0200
|
1278
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1279
|
+
|
1280
|
+
|
1281
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:17 -0200
|
1282
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1283
|
+
|
1284
|
+
|
1285
|
+
Started GET "/?p=3" for 127.0.0.1 at 2012-12-02 18:06:19 -0200
|
1286
|
+
Processing by TestController#index as HTML
|
1287
|
+
Parameters: {"p"=>"3"}
|
1288
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "models"
|
1289
|
+
Rendered test/index.html.erb within layouts/application (3.5ms)
|
1290
|
+
Completed 200 OK in 8ms (Views: 7.1ms | ActiveRecord: 0.2ms)
|
1291
|
+
|
1292
|
+
|
1293
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:19 -0200
|
1294
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1295
|
+
|
1296
|
+
|
1297
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:19 -0200
|
1298
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1299
|
+
|
1300
|
+
|
1301
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:19 -0200
|
1302
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1303
|
+
|
1304
|
+
|
1305
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-02 18:06:19 -0200
|
1306
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1307
|
+
|
1308
|
+
|
1309
|
+
Started GET "/?p=2" for 127.0.0.1 at 2012-12-02 18:06:20 -0200
|
1310
|
+
Processing by TestController#index as HTML
|
1311
|
+
Parameters: {"p"=>"2"}
|
1312
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models" [0m
|
1313
|
+
Rendered test/index.html.erb within layouts/application (2.6ms)
|
1314
|
+
Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.1ms)
|
1315
|
+
|
1316
|
+
|
1317
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-02 18:06:20 -0200
|
1318
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1319
|
+
|
1320
|
+
|
1321
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:20 -0200
|
1322
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1323
|
+
|
1324
|
+
|
1325
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:20 -0200
|
1326
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1327
|
+
|
1328
|
+
|
1329
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:20 -0200
|
1330
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1331
|
+
|
1332
|
+
|
1333
|
+
Started GET "/?p=1" for 127.0.0.1 at 2012-12-02 18:06:21 -0200
|
1334
|
+
Processing by TestController#index as HTML
|
1335
|
+
Parameters: {"p"=>"1"}
|
1336
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "models"
|
1337
|
+
Rendered test/index.html.erb within layouts/application (2.3ms)
|
1338
|
+
Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.2ms)
|
1339
|
+
|
1340
|
+
|
1341
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:21 -0200
|
1342
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1343
|
+
|
1344
|
+
|
1345
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-02 18:06:21 -0200
|
1346
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1347
|
+
|
1348
|
+
|
1349
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:21 -0200
|
1350
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1351
|
+
|
1352
|
+
|
1353
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:21 -0200
|
1354
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1355
|
+
|
1356
|
+
|
1357
|
+
Started GET "/?p=2" for 127.0.0.1 at 2012-12-02 18:06:22 -0200
|
1358
|
+
Processing by TestController#index as HTML
|
1359
|
+
Parameters: {"p"=>"2"}
|
1360
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "models" [0m
|
1361
|
+
Rendered test/index.html.erb within layouts/application (17.0ms)
|
1362
|
+
Completed 200 OK in 22ms (Views: 20.8ms | ActiveRecord: 0.2ms)
|
1363
|
+
|
1364
|
+
|
1365
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-02 18:06:22 -0200
|
1366
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1367
|
+
|
1368
|
+
|
1369
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:22 -0200
|
1370
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1371
|
+
|
1372
|
+
|
1373
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:22 -0200
|
1374
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1375
|
+
|
1376
|
+
|
1377
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:22 -0200
|
1378
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1379
|
+
|
1380
|
+
|
1381
|
+
Started GET "/?p=3" for 127.0.0.1 at 2012-12-02 18:06:23 -0200
|
1382
|
+
Processing by TestController#index as HTML
|
1383
|
+
Parameters: {"p"=>"3"}
|
1384
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
1385
|
+
Rendered test/index.html.erb within layouts/application (2.8ms)
|
1386
|
+
Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.1ms)
|
1387
|
+
|
1388
|
+
|
1389
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:23 -0200
|
1390
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1391
|
+
|
1392
|
+
|
1393
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:23 -0200
|
1394
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1395
|
+
|
1396
|
+
|
1397
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:23 -0200
|
1398
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1399
|
+
|
1400
|
+
|
1401
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-02 18:06:23 -0200
|
1402
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1403
|
+
|
1404
|
+
|
1405
|
+
Started GET "/?p=4" for 127.0.0.1 at 2012-12-02 18:06:24 -0200
|
1406
|
+
Processing by TestController#index as HTML
|
1407
|
+
Parameters: {"p"=>"4"}
|
1408
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "models" [0m
|
1409
|
+
Rendered test/index.html.erb within layouts/application (3.5ms)
|
1410
|
+
Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.2ms)
|
1411
|
+
|
1412
|
+
|
1413
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-02 18:06:24 -0200
|
1414
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1415
|
+
|
1416
|
+
|
1417
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:24 -0200
|
1418
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1419
|
+
|
1420
|
+
|
1421
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:24 -0200
|
1422
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1423
|
+
|
1424
|
+
|
1425
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:24 -0200
|
1426
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1427
|
+
|
1428
|
+
|
1429
|
+
Started GET "/?p=3" for 127.0.0.1 at 2012-12-02 18:06:26 -0200
|
1430
|
+
Processing by TestController#index as HTML
|
1431
|
+
Parameters: {"p"=>"3"}
|
1432
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "models"
|
1433
|
+
Rendered test/index.html.erb within layouts/application (3.0ms)
|
1434
|
+
Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.2ms)
|
1435
|
+
|
1436
|
+
|
1437
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:26 -0200
|
1438
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1439
|
+
|
1440
|
+
|
1441
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-02 18:06:26 -0200
|
1442
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1443
|
+
|
1444
|
+
|
1445
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:26 -0200
|
1446
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1447
|
+
|
1448
|
+
|
1449
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-02 18:06:26 -0200
|
1450
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1451
|
+
|
1452
|
+
|
1453
|
+
Started GET "/" for 127.0.0.1 at 2012-12-02 18:06:58 -0200
|
1454
|
+
|
1455
|
+
SyntaxError (/Users/matt/Documents/Mattways/Emprendimientos/Rails/rails-pagination/test/dummy/app/controllers/test_controller.rb:4: syntax error, unexpected keyword_or, expecting ')'
|
1456
|
+
@collection = Model.page(params[:p] or 1).per(2)
|
1457
|
+
^):
|
1458
|
+
activesupport (3.2.8) lib/active_support/dependencies.rb:469:in `load'
|
1459
|
+
activesupport (3.2.8) lib/active_support/dependencies.rb:469:in `block in load_file'
|
1460
|
+
activesupport (3.2.8) lib/active_support/dependencies.rb:639:in `new_constants_in'
|
1461
|
+
activesupport (3.2.8) lib/active_support/dependencies.rb:468:in `load_file'
|
1462
|
+
activesupport (3.2.8) lib/active_support/dependencies.rb:353:in `require_or_load'
|
1463
|
+
activesupport (3.2.8) lib/active_support/dependencies.rb:502:in `load_missing_constant'
|
1464
|
+
activesupport (3.2.8) lib/active_support/dependencies.rb:192:in `block in const_missing'
|
1465
|
+
activesupport (3.2.8) lib/active_support/dependencies.rb:190:in `each'
|
1466
|
+
activesupport (3.2.8) lib/active_support/dependencies.rb:190:in `const_missing'
|
1467
|
+
activesupport (3.2.8) lib/active_support/inflector/methods.rb:230:in `block in constantize'
|
1468
|
+
activesupport (3.2.8) lib/active_support/inflector/methods.rb:229:in `each'
|
1469
|
+
activesupport (3.2.8) lib/active_support/inflector/methods.rb:229:in `constantize'
|
1470
|
+
activesupport (3.2.8) lib/active_support/dependencies.rb:554:in `get'
|
1471
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
|
1472
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:54:in `controller'
|
1473
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:32:in `call'
|
1474
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
1475
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
1476
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
1477
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:600:in `call'
|
1478
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
1479
|
+
rack (1.4.1) lib/rack/etag.rb:23:in `call'
|
1480
|
+
rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
|
1481
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
|
1482
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
1483
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
1484
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
|
1485
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
|
1486
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
|
1487
|
+
activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
|
1488
|
+
activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
|
1489
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
1490
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__227764464931722001__call__3140707974421903868__callbacks'
|
1491
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
|
1492
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
1493
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
1494
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
1495
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
1496
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
1497
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
1498
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
1499
|
+
railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
|
1500
|
+
railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
|
1501
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
1502
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
1503
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
1504
|
+
activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
1505
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
1506
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
|
1507
|
+
railties (3.2.8) lib/rails/engine.rb:479:in `call'
|
1508
|
+
railties (3.2.8) lib/rails/application.rb:223:in `call'
|
1509
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
1510
|
+
railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
|
1511
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
1512
|
+
/Users/matt/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
1513
|
+
/Users/matt/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
1514
|
+
/Users/matt/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
1515
|
+
|
1516
|
+
|
1517
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
|
1518
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
|
1519
|
+
Rendered /Users/matt/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.3ms)
|
1520
|
+
|
1521
|
+
|
1522
|
+
Started GET "/" for 127.0.0.1 at 2012-12-02 18:07:13 -0200
|
1523
|
+
Processing by TestController#index as HTML
|
1524
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models" [0m
|
1525
|
+
Rendered test/index.html.erb within layouts/application (3.0ms)
|
1526
|
+
Completed 200 OK in 9ms (Views: 5.9ms | ActiveRecord: 0.5ms)
|
1527
|
+
|
1528
|
+
|
1529
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-02 18:07:13 -0200
|
1530
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1531
|
+
|
1532
|
+
|
1533
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-02 18:07:13 -0200
|
1534
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1535
|
+
|
1536
|
+
|
1537
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-02 18:07:13 -0200
|
1538
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1539
|
+
|
1540
|
+
|
1541
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-02 18:07:13 -0200
|
1542
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1543
|
+
|
1544
|
+
|
1545
|
+
Started GET "/?p=2" for 127.0.0.1 at 2012-12-02 18:07:15 -0200
|
1546
|
+
Processing by TestController#index as HTML
|
1547
|
+
Parameters: {"p"=>"2"}
|
1548
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
1549
|
+
Rendered test/index.html.erb within layouts/application (2.4ms)
|
1550
|
+
Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.1ms)
|
1551
|
+
|
1552
|
+
|
1553
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-02 18:07:15 -0200
|
1554
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1555
|
+
|
1556
|
+
|
1557
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-02 18:07:15 -0200
|
1558
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1559
|
+
|
1560
|
+
|
1561
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-02 18:07:15 -0200
|
1562
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1563
|
+
|
1564
|
+
|
1565
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-02 18:07:15 -0200
|
1566
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1567
|
+
|
1568
|
+
|
1569
|
+
Started GET "/?p=3" for 127.0.0.1 at 2012-12-02 18:07:17 -0200
|
1570
|
+
Processing by TestController#index as HTML
|
1571
|
+
Parameters: {"p"=>"3"}
|
1572
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models" [0m
|
1573
|
+
Rendered test/index.html.erb within layouts/application (15.0ms)
|
1574
|
+
Completed 200 OK in 18ms (Views: 17.8ms | ActiveRecord: 0.1ms)
|
1575
|
+
|
1576
|
+
|
1577
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-02 18:07:17 -0200
|
1578
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1579
|
+
|
1580
|
+
|
1581
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-02 18:07:17 -0200
|
1582
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1583
|
+
|
1584
|
+
|
1585
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-02 18:07:17 -0200
|
1586
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1587
|
+
|
1588
|
+
|
1589
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-02 18:07:17 -0200
|
1590
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1591
|
+
|
1592
|
+
|
1593
|
+
Started GET "/?p=4" for 127.0.0.1 at 2012-12-02 18:07:19 -0200
|
1594
|
+
Processing by TestController#index as HTML
|
1595
|
+
Parameters: {"p"=>"4"}
|
1596
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
1597
|
+
Rendered test/index.html.erb within layouts/application (2.5ms)
|
1598
|
+
Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.1ms)
|
1599
|
+
|
1600
|
+
|
1601
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-02 18:07:19 -0200
|
1602
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1603
|
+
|
1604
|
+
|
1605
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-02 18:07:19 -0200
|
1606
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1607
|
+
|
1608
|
+
|
1609
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-02 18:07:19 -0200
|
1610
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1611
|
+
|
1612
|
+
|
1613
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-02 18:07:19 -0200
|
1614
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1615
|
+
|
1616
|
+
|
1617
|
+
Started GET "/?p=5" for 127.0.0.1 at 2012-12-02 18:07:20 -0200
|
1618
|
+
Processing by TestController#index as HTML
|
1619
|
+
Parameters: {"p"=>"5"}
|
1620
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models" [0m
|
1621
|
+
Rendered test/index.html.erb within layouts/application (2.1ms)
|
1622
|
+
Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.1ms)
|
1623
|
+
|
1624
|
+
|
1625
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-02 18:07:20 -0200
|
1626
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1627
|
+
|
1628
|
+
|
1629
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-02 18:07:20 -0200
|
1630
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1631
|
+
|
1632
|
+
|
1633
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-02 18:07:20 -0200
|
1634
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1635
|
+
|
1636
|
+
|
1637
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-02 18:07:20 -0200
|
1638
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1639
|
+
|
1640
|
+
|
1641
|
+
Started GET "/?p=1" for 127.0.0.1 at 2012-12-02 18:07:21 -0200
|
1642
|
+
Processing by TestController#index as HTML
|
1643
|
+
Parameters: {"p"=>"1"}
|
1644
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
1645
|
+
Rendered test/index.html.erb within layouts/application (2.3ms)
|
1646
|
+
Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.1ms)
|
1647
|
+
|
1648
|
+
|
1649
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-02 18:07:21 -0200
|
1650
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1651
|
+
|
1652
|
+
|
1653
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-02 18:07:21 -0200
|
1654
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1655
|
+
|
1656
|
+
|
1657
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-02 18:07:21 -0200
|
1658
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1659
|
+
|
1660
|
+
|
1661
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-02 18:07:21 -0200
|
1662
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1663
|
+
|
1664
|
+
|
1665
|
+
Started GET "/?p=2" for 127.0.0.1 at 2012-12-02 18:07:22 -0200
|
1666
|
+
Processing by TestController#index as HTML
|
1667
|
+
Parameters: {"p"=>"2"}
|
1668
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models" [0m
|
1669
|
+
Rendered test/index.html.erb within layouts/application (2.6ms)
|
1670
|
+
Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.1ms)
|
1671
|
+
|
1672
|
+
|
1673
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-02 18:07:22 -0200
|
1674
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1675
|
+
|
1676
|
+
|
1677
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-02 18:07:23 -0200
|
1678
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1679
|
+
|
1680
|
+
|
1681
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-02 18:07:23 -0200
|
1682
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1683
|
+
|
1684
|
+
|
1685
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-02 18:07:23 -0200
|
1686
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1687
|
+
|
1688
|
+
|
1689
|
+
Started GET "/?p=1" for 127.0.0.1 at 2012-12-02 18:07:23 -0200
|
1690
|
+
Processing by TestController#index as HTML
|
1691
|
+
Parameters: {"p"=>"1"}
|
1692
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "models"
|
1693
|
+
Rendered test/index.html.erb within layouts/application (3.3ms)
|
1694
|
+
Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.2ms)
|
1695
|
+
|
1696
|
+
|
1697
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-02 18:07:23 -0200
|
1698
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1699
|
+
|
1700
|
+
|
1701
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-02 18:07:23 -0200
|
1702
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1703
|
+
|
1704
|
+
|
1705
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-02 18:07:23 -0200
|
1706
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1707
|
+
|
1708
|
+
|
1709
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-02 18:07:23 -0200
|
1710
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1711
|
+
|
1712
|
+
|
1713
|
+
Started GET "/?p=5" for 127.0.0.1 at 2012-12-02 18:07:25 -0200
|
1714
|
+
Processing by TestController#index as HTML
|
1715
|
+
Parameters: {"p"=>"5"}
|
1716
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models" [0m
|
1717
|
+
Rendered test/index.html.erb within layouts/application (2.2ms)
|
1718
|
+
Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.1ms)
|
1719
|
+
|
1720
|
+
|
1721
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-02 18:07:25 -0200
|
1722
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1723
|
+
|
1724
|
+
|
1725
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-02 18:07:25 -0200
|
1726
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1727
|
+
|
1728
|
+
|
1729
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-02 18:07:25 -0200
|
1730
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1731
|
+
|
1732
|
+
|
1733
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-02 18:07:25 -0200
|
1734
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1735
|
+
|
1736
|
+
|
1737
|
+
Started GET "/?p=4" for 127.0.0.1 at 2012-12-02 18:07:26 -0200
|
1738
|
+
Processing by TestController#index as HTML
|
1739
|
+
Parameters: {"p"=>"4"}
|
1740
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "models"
|
1741
|
+
Rendered test/index.html.erb within layouts/application (2.9ms)
|
1742
|
+
Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.2ms)
|
1743
|
+
|
1744
|
+
|
1745
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-02 18:07:26 -0200
|
1746
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1747
|
+
|
1748
|
+
|
1749
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-02 18:07:26 -0200
|
1750
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1751
|
+
|
1752
|
+
|
1753
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-02 18:07:26 -0200
|
1754
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1755
|
+
|
1756
|
+
|
1757
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-02 18:07:26 -0200
|
1758
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1759
|
+
|
1760
|
+
|
1761
|
+
Started GET "/?p=3" for 127.0.0.1 at 2012-12-02 18:07:27 -0200
|
1762
|
+
Processing by TestController#index as HTML
|
1763
|
+
Parameters: {"p"=>"3"}
|
1764
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "models" [0m
|
1765
|
+
Rendered test/index.html.erb within layouts/application (3.7ms)
|
1766
|
+
Completed 200 OK in 8ms (Views: 7.4ms | ActiveRecord: 0.2ms)
|
1767
|
+
|
1768
|
+
|
1769
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-02 18:07:27 -0200
|
1770
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1771
|
+
|
1772
|
+
|
1773
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-02 18:07:27 -0200
|
1774
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1775
|
+
|
1776
|
+
|
1777
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-02 18:07:27 -0200
|
1778
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1779
|
+
|
1780
|
+
|
1781
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-02 18:07:27 -0200
|
1782
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1783
|
+
|
1784
|
+
|
1785
|
+
Started GET "/?p=2" for 127.0.0.1 at 2012-12-02 18:07:28 -0200
|
1786
|
+
Processing by TestController#index as HTML
|
1787
|
+
Parameters: {"p"=>"2"}
|
1788
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
1789
|
+
Rendered test/index.html.erb within layouts/application (2.7ms)
|
1790
|
+
Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.1ms)
|
1791
|
+
|
1792
|
+
|
1793
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-02 18:07:28 -0200
|
1794
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1795
|
+
|
1796
|
+
|
1797
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-02 18:07:28 -0200
|
1798
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1799
|
+
|
1800
|
+
|
1801
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-02 18:07:28 -0200
|
1802
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1803
|
+
|
1804
|
+
|
1805
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-02 18:07:28 -0200
|
1806
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1807
|
+
|
1808
|
+
|
1809
|
+
Started GET "/?p=1" for 127.0.0.1 at 2012-12-02 18:07:29 -0200
|
1810
|
+
Processing by TestController#index as HTML
|
1811
|
+
Parameters: {"p"=>"1"}
|
1812
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "models" [0m
|
1813
|
+
Rendered test/index.html.erb within layouts/application (3.5ms)
|
1814
|
+
Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.2ms)
|
1815
|
+
|
1816
|
+
|
1817
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-02 18:07:29 -0200
|
1818
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1819
|
+
|
1820
|
+
|
1821
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-02 18:07:29 -0200
|
1822
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1823
|
+
|
1824
|
+
|
1825
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-02 18:07:29 -0200
|
1826
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1827
|
+
|
1828
|
+
|
1829
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-02 18:07:29 -0200
|
1830
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1831
|
+
|
1832
|
+
|
1833
|
+
Started GET "/?p=5" for 127.0.0.1 at 2012-12-02 18:07:46 -0200
|
1834
|
+
Processing by TestController#index as HTML
|
1835
|
+
Parameters: {"p"=>"5"}
|
1836
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "models"
|
1837
|
+
Rendered test/index.html.erb within layouts/application (3.3ms)
|
1838
|
+
Completed 200 OK in 8ms (Views: 7.1ms | ActiveRecord: 0.2ms)
|
1839
|
+
|
1840
|
+
|
1841
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-02 18:07:46 -0200
|
1842
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1843
|
+
|
1844
|
+
|
1845
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-02 18:07:46 -0200
|
1846
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1847
|
+
|
1848
|
+
|
1849
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-02 18:07:46 -0200
|
1850
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1851
|
+
|
1852
|
+
|
1853
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-02 18:07:46 -0200
|
1854
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1855
|
+
Connecting to database specified by database.yml
|
1856
|
+
|
1857
|
+
|
1858
|
+
Started GET "/" for 127.0.0.1 at 2012-12-02 18:15:24 -0200
|
1859
|
+
Processing by TestController#index as HTML
|
1860
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models" [0m
|
1861
|
+
Rendered test/index.html.erb within layouts/application (9.6ms)
|
1862
|
+
Completed 200 OK in 51ms (Views: 22.4ms | ActiveRecord: 1.3ms)
|
1863
|
+
|
1864
|
+
|
1865
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-02 18:15:25 -0200
|
1866
|
+
Served asset /application.css - 304 Not Modified (1ms)
|
1867
|
+
|
1868
|
+
|
1869
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-02 18:15:25 -0200
|
1870
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
1871
|
+
|
1872
|
+
|
1873
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-02 18:15:25 -0200
|
1874
|
+
Served asset /jquery.js - 304 Not Modified (3ms)
|
1875
|
+
|
1876
|
+
|
1877
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-02 18:15:25 -0200
|
1878
|
+
Served asset /application.js - 304 Not Modified (23ms)
|
1879
|
+
|
1880
|
+
|
1881
|
+
Started GET "/?p=2" for 127.0.0.1 at 2012-12-02 18:15:27 -0200
|
1882
|
+
Processing by TestController#index as HTML
|
1883
|
+
Parameters: {"p"=>"2"}
|
1884
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
1885
|
+
Rendered test/index.html.erb within layouts/application (2.6ms)
|
1886
|
+
Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.1ms)
|
1887
|
+
|
1888
|
+
|
1889
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-02 18:15:27 -0200
|
1890
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1891
|
+
|
1892
|
+
|
1893
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-02 18:15:27 -0200
|
1894
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1895
|
+
|
1896
|
+
|
1897
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-02 18:15:27 -0200
|
1898
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1899
|
+
|
1900
|
+
|
1901
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-02 18:15:27 -0200
|
1902
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1903
|
+
|
1904
|
+
|
1905
|
+
Started GET "/?p=3" for 127.0.0.1 at 2012-12-02 18:15:29 -0200
|
1906
|
+
Processing by TestController#index as HTML
|
1907
|
+
Parameters: {"p"=>"3"}
|
1908
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models" [0m
|
1909
|
+
Rendered test/index.html.erb within layouts/application (2.6ms)
|
1910
|
+
Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.1ms)
|
1911
|
+
|
1912
|
+
|
1913
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-02 18:15:29 -0200
|
1914
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1915
|
+
|
1916
|
+
|
1917
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-02 18:15:29 -0200
|
1918
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1919
|
+
|
1920
|
+
|
1921
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-02 18:15:29 -0200
|
1922
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1923
|
+
|
1924
|
+
|
1925
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-02 18:15:29 -0200
|
1926
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1927
|
+
|
1928
|
+
|
1929
|
+
Started GET "/?p=4" for 127.0.0.1 at 2012-12-02 18:15:30 -0200
|
1930
|
+
Processing by TestController#index as HTML
|
1931
|
+
Parameters: {"p"=>"4"}
|
1932
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
1933
|
+
Rendered test/index.html.erb within layouts/application (2.6ms)
|
1934
|
+
Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.1ms)
|
1935
|
+
|
1936
|
+
|
1937
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-02 18:15:30 -0200
|
1938
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1939
|
+
|
1940
|
+
|
1941
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-02 18:15:30 -0200
|
1942
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1943
|
+
|
1944
|
+
|
1945
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-02 18:15:30 -0200
|
1946
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1947
|
+
|
1948
|
+
|
1949
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-02 18:15:30 -0200
|
1950
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1951
|
+
|
1952
|
+
|
1953
|
+
Started GET "/?p=5" for 127.0.0.1 at 2012-12-02 18:15:33 -0200
|
1954
|
+
Processing by TestController#index as HTML
|
1955
|
+
Parameters: {"p"=>"5"}
|
1956
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models" [0m
|
1957
|
+
Rendered test/index.html.erb within layouts/application (2.2ms)
|
1958
|
+
Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.1ms)
|
1959
|
+
|
1960
|
+
|
1961
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-02 18:15:33 -0200
|
1962
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1963
|
+
|
1964
|
+
|
1965
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-02 18:15:33 -0200
|
1966
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1967
|
+
|
1968
|
+
|
1969
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-02 18:15:33 -0200
|
1970
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1971
|
+
|
1972
|
+
|
1973
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-02 18:15:33 -0200
|
1974
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1975
|
+
|
1976
|
+
|
1977
|
+
Started GET "/?p=1" for 127.0.0.1 at 2012-12-02 18:15:34 -0200
|
1978
|
+
Processing by TestController#index as HTML
|
1979
|
+
Parameters: {"p"=>"1"}
|
1980
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
1981
|
+
Rendered test/index.html.erb within layouts/application (2.7ms)
|
1982
|
+
Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.1ms)
|
1983
|
+
|
1984
|
+
|
1985
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-02 18:15:34 -0200
|
1986
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1987
|
+
|
1988
|
+
|
1989
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-02 18:15:34 -0200
|
1990
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1991
|
+
|
1992
|
+
|
1993
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-02 18:15:34 -0200
|
1994
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1995
|
+
|
1996
|
+
|
1997
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-02 18:15:34 -0200
|
1998
|
+
Served asset /application.js - 304 Not Modified (0ms)
|