rails_db_info 0.1.8 → 0.1.9

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: cb2188ee7c5434f3d18b246a523115f77c2e6e0d
4
- data.tar.gz: 84585a0aab9344bd2ecee6a1678fc3042399f7a2
3
+ metadata.gz: 0235eab932532d0d72f03f9f216ddecadfad1dfe
4
+ data.tar.gz: a8e53a0c123e5f93d9f48553782032cda339f387
5
5
  SHA512:
6
- metadata.gz: a1e54a6ff93d52ad9729f0d125cbbea7405e726d6c69c90edbd3361827941cd50c66104c4061c987db1c38160e57ae335632e772b1111235c067bb89f0e05d24
7
- data.tar.gz: 0bc0f6606a2552f0227a6cbc6b6f7472d5a2ef38219b15ec2fd63c270195ea2675b3708e65669ee0fed5ae172cd3a60aaa7469a21d1a6667fbf7493c0d3d1ec0
6
+ metadata.gz: 00cb88d8a414027dd15412e4ec1ed208e7b5c7dae55be59ff140cb86ea08ae1216ab1f67cb4e18506e89b1e23a1ebca2b85de2d5f06f2a6f7d633310182dbbec
7
+ data.tar.gz: dcf8d8feac47fb27699e7bc7281d9c8ab0ed2dee58cf02eca3d60ab48395f3018e016b24a0333d725871f4bfae2c57829e01cf207668298710d714bf5286ae50
@@ -3,17 +3,50 @@ module RailsDbInfo
3
3
 
4
4
  def paginate_table_entries(entries)
5
5
  return if entries.total_pages == 1
6
- prev_page_text = '< Previous page'
7
- next_page_text = 'Next page >'
6
+ prev_page_text = '< Previous'
7
+ next_page_text = 'Next>'
8
8
 
9
9
  html = '<div class="pagination">'
10
10
  html << (entries.previous_page ? link_to(prev_page_text, :page => entries.previous_page) : prev_page_text)
11
- html << "&nbsp;Page #{entries.current_page} of #{entries.total_pages} &nbsp;"
11
+ html << "&nbsp;#{page_links_for_pagination(entries)}&nbsp;"
12
12
  html << (entries.next_page ? link_to(next_page_text, :page => entries.next_page) : next_page_text)
13
13
  html << '</div>'
14
14
 
15
15
  sanitize(html)
16
16
  end
17
17
 
18
+ private
19
+
20
+ def page_links_for_pagination(entries)
21
+ pages = pages_for_pagination(entries)
22
+ links = []
23
+
24
+ pages.each_with_index do |page,index|
25
+ if page == entries.current_page
26
+ links << content_tag(:b, page)
27
+ else
28
+ links << link_to(page, :page => page)
29
+ end
30
+ links << " ... " if page != pages.last && (page + 1) != pages[index+1]
31
+ end
32
+
33
+ links.join(' ')
34
+ end
35
+
36
+ def pages_for_pagination(entries)
37
+ last_page = entries.total_pages
38
+ current_page = entries.current_page
39
+
40
+ pages = if last_page > 10
41
+ [1, 2, 3] +
42
+ (current_page-2..current_page+2).to_a +
43
+ (last_page-2..last_page).to_a
44
+ else
45
+ (1..last_page).to_a
46
+ end
47
+
48
+ pages.uniq.select { |p| p > 0 && p <= last_page }
49
+ end
50
+
18
51
  end
19
52
  end
@@ -1,3 +1,3 @@
1
1
  module RailsDbInfo
2
- VERSION = "0.1.8"
2
+ VERSION = "0.1.9"
3
3
  end
@@ -159,3 +159,203 @@ Processing by RailsDbInfo::TablesController#index as HTML
159
159
  Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/index.html.erb within layouts/rails_db_info/application (0.7ms)
160
160
  Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (0.2ms)
161
161
  Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.1ms)
162
+
163
+
164
+ Started GET "/" for 127.0.0.1 at 2014-01-04 20:43:43 +0100
165
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
166
+ Processing by Rails::WelcomeController#index as HTML
167
+ Rendered /Users/vlado/.rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/railties-4.0.2/lib/rails/templates/rails/welcome/index.html.erb (1.5ms)
168
+ Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.0ms)
169
+
170
+
171
+ Started GET "/" for 127.0.0.1 at 2014-01-04 20:43:46 +0100
172
+ Processing by Rails::WelcomeController#index as HTML
173
+ Rendered /Users/vlado/.rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/railties-4.0.2/lib/rails/templates/rails/welcome/index.html.erb (0.0ms)
174
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
175
+
176
+
177
+ Started GET "/" for 127.0.0.1 at 2014-01-04 20:43:46 +0100
178
+ Processing by Rails::WelcomeController#index as HTML
179
+ Rendered /Users/vlado/.rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/railties-4.0.2/lib/rails/templates/rails/welcome/index.html.erb (0.0ms)
180
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
181
+
182
+
183
+ Started GET "/tables" for 127.0.0.1 at 2014-01-04 20:43:47 +0100
184
+
185
+ ActionController::RoutingError (No route matches [GET] "/tables"):
186
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
187
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
188
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
189
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
190
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
191
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
192
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
193
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
194
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
195
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
196
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
197
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
198
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
199
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
200
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
201
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
202
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
203
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
204
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
205
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
206
+ /Users/vlado/.rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
207
+ /Users/vlado/.rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
208
+ /Users/vlado/.rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
209
+
210
+
211
+ Rendered /Users/vlado/.rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
212
+ Rendered /Users/vlado/.rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
213
+ Rendered /Users/vlado/.rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms)
214
+ Rendered /Users/vlado/.rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.4ms)
215
+ Rendered /Users/vlado/.rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (21.8ms)
216
+
217
+
218
+ Started GET "/tables" for 127.0.0.1 at 2014-01-04 20:43:50 +0100
219
+
220
+ ActionController::RoutingError (No route matches [GET] "/tables"):
221
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
222
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
223
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
224
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
225
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
226
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
227
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
228
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
229
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
230
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
231
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
232
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
233
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
234
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
235
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
236
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
237
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
238
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
239
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
240
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
241
+ /Users/vlado/.rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
242
+ /Users/vlado/.rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
243
+ /Users/vlado/.rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
244
+
245
+
246
+ Rendered /Users/vlado/.rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
247
+ Rendered /Users/vlado/.rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
248
+ Rendered /Users/vlado/.rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms)
249
+ Rendered /Users/vlado/.rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.7ms)
250
+ Rendered /Users/vlado/.rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (12.3ms)
251
+
252
+
253
+ Started GET "/tables" for 127.0.0.1 at 2014-01-04 20:43:50 +0100
254
+
255
+ ActionController::RoutingError (No route matches [GET] "/tables"):
256
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
257
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
258
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
259
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
260
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
261
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
262
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
263
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
264
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
265
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
266
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
267
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
268
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
269
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
270
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
271
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
272
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
273
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
274
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
275
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
276
+ /Users/vlado/.rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
277
+ /Users/vlado/.rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
278
+ /Users/vlado/.rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
279
+
280
+
281
+ Rendered /Users/vlado/.rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.6ms)
282
+ Rendered /Users/vlado/.rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms)
283
+ Rendered /Users/vlado/.rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms)
284
+ Rendered /Users/vlado/.rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
285
+ Rendered /Users/vlado/.rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (12.9ms)
286
+
287
+
288
+ Started GET "/" for 127.0.0.1 at 2014-01-04 20:43:51 +0100
289
+ Processing by Rails::WelcomeController#index as HTML
290
+ Rendered /Users/vlado/.rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/railties-4.0.2/lib/rails/templates/rails/welcome/index.html.erb (0.0ms)
291
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
292
+
293
+
294
+ Started GET "/r" for 127.0.0.1 at 2014-01-04 20:43:51 +0100
295
+
296
+ ActionController::RoutingError (No route matches [GET] "/r"):
297
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
298
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
299
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
300
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
301
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
302
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
303
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
304
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
305
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
306
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
307
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
308
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
309
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
310
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
311
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
312
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
313
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
314
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
315
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
316
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
317
+ /Users/vlado/.rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
318
+ /Users/vlado/.rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
319
+ /Users/vlado/.rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
320
+
321
+
322
+ Rendered /Users/vlado/.rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
323
+ Rendered /Users/vlado/.rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
324
+ Rendered /Users/vlado/.rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms)
325
+ Rendered /Users/vlado/.rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (22.9ms)
326
+ Rendered /Users/vlado/.rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (34.9ms)
327
+
328
+
329
+ Started GET "/rails/info/db/tables" for 127.0.0.1 at 2014-01-04 20:43:52 +0100
330
+ Processing by RailsDbInfo::TablesController#index as HTML
331
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/index.html.erb within layouts/rails_db_info/application (1.0ms)
332
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (0.7ms)
333
+ Completed 200 OK in 27ms (Views: 26.2ms | ActiveRecord: 0.1ms)
334
+
335
+
336
+ Started GET "/assets/rails_db_info/application.css?body=1" for 127.0.0.1 at 2014-01-04 20:43:52 +0100
337
+
338
+
339
+ Started GET "/rails/info/db/tables/users/entries" for 127.0.0.1 at 2014-01-04 20:43:55 +0100
340
+ Processing by RailsDbInfo::TablesController#entries as HTML
341
+ Parameters: {"table_id"=>"users"}
342
+  (0.1ms) SELECT * FROM users LIMIT 10 OFFSET 0
343
+  (0.1ms) SELECT COUNT(*) FROM users
344
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/entries.html.erb within layouts/rails_db_info/application (1.3ms)
345
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (0.7ms)
346
+ Completed 200 OK in 6ms (Views: 6.0ms | ActiveRecord: 0.3ms)
347
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
348
+
349
+
350
+ Started GET "/rails/info/db/tables/users/entries" for 127.0.0.1 at 2014-01-04 20:44:12 +0100
351
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
352
+ Processing by RailsDbInfo::TablesController#entries as HTML
353
+ Parameters: {"table_id"=>"users"}
354
+  (0.1ms) SELECT * FROM users LIMIT 10 OFFSET 0
355
+  (0.1ms) SELECT COUNT(*) FROM users
356
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/entries.html.erb within layouts/rails_db_info/application (1.6ms)
357
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (1.0ms)
358
+ Completed 200 OK in 27ms (Views: 26.1ms | ActiveRecord: 0.2ms)
359
+
360
+
361
+ Started GET "/assets/rails_db_info/application.css?body=1" for 127.0.0.1 at 2014-01-04 20:44:12 +0100
@@ -13755,3 +13755,833 @@ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.3ms)
13755
13755
  RailsDbInfoTest: test_truth
13756
13756
  ---------------------------
13757
13757
   (0.0ms) rollback transaction
13758
+  (0.3ms) begin transaction
13759
+ ----------------------------------------------------------------------------------
13760
+ CatchAllRoutesTest: test_I_see_list_of_tables_when_I_visit_rails_db_info_dashboard
13761
+ ----------------------------------------------------------------------------------
13762
+ Started GET "/rails/info/db" for 127.0.0.1 at 2014-01-04 20:35:19 +0100
13763
+ Processing by RailsDbInfo::TablesController#index as HTML
13764
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/index.html.erb within layouts/rails_db_info/application (2.3ms)
13765
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (0.8ms)
13766
+ Completed 200 OK in 21ms (Views: 19.5ms | ActiveRecord: 1.3ms)
13767
+  (0.1ms) rollback transaction
13768
+  (0.1ms) begin transaction
13769
+ ---------------------------------------------------------------------------
13770
+ CatchAllRoutesTest: test_I_see_table_column_details_when_I_visit_table_page
13771
+ ---------------------------------------------------------------------------
13772
+ Started GET "/rails/info/db/tables/users" for 127.0.0.1 at 2014-01-04 20:35:19 +0100
13773
+ Processing by RailsDbInfo::TablesController#show as HTML
13774
+ Parameters: {"id"=>"users"}
13775
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (0.6ms)
13776
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.1ms)
13777
+  (0.2ms) rollback transaction
13778
+  (0.0ms) begin transaction
13779
+ ---------------------------------------------------
13780
+ NavigationTest: test_I_can_paginate_through_entires
13781
+ ---------------------------------------------------
13782
+  (0.0ms) SAVEPOINT active_record_1
13783
+ SQL (4.2ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["email", "vlado1@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["username", "vlado1"]]
13784
+  (0.1ms) RELEASE SAVEPOINT active_record_1
13785
+  (0.0ms) SAVEPOINT active_record_1
13786
+ SQL (0.9ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["email", "vlado2@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["username", "vlado2"]]
13787
+  (0.1ms) RELEASE SAVEPOINT active_record_1
13788
+  (0.0ms) SAVEPOINT active_record_1
13789
+ SQL (0.2ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["email", "vlado3@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["username", "vlado3"]]
13790
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13791
+  (0.0ms) SAVEPOINT active_record_1
13792
+ SQL (0.2ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["email", "vlado4@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["username", "vlado4"]]
13793
+  (0.1ms) RELEASE SAVEPOINT active_record_1
13794
+  (0.0ms) SAVEPOINT active_record_1
13795
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["email", "vlado5@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["username", "vlado5"]]
13796
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13797
+  (0.0ms) SAVEPOINT active_record_1
13798
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["email", "vlado6@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["username", "vlado6"]]
13799
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13800
+  (0.0ms) SAVEPOINT active_record_1
13801
+ SQL (0.2ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["email", "vlado7@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["username", "vlado7"]]
13802
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13803
+  (0.0ms) SAVEPOINT active_record_1
13804
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["email", "vlado8@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["username", "vlado8"]]
13805
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13806
+  (0.0ms) SAVEPOINT active_record_1
13807
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["email", "vlado9@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["username", "vlado9"]]
13808
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13809
+  (0.1ms) SAVEPOINT active_record_1
13810
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["email", "vlado10@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["username", "vlado10"]]
13811
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13812
+  (0.0ms) SAVEPOINT active_record_1
13813
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["email", "vlado11@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["username", "vlado11"]]
13814
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13815
+  (0.0ms) SAVEPOINT active_record_1
13816
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["email", "vlado12@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["username", "vlado12"]]
13817
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13818
+  (0.0ms) SAVEPOINT active_record_1
13819
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["email", "vlado13@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["username", "vlado13"]]
13820
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13821
+  (0.0ms) SAVEPOINT active_record_1
13822
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["email", "vlado14@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["username", "vlado14"]]
13823
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13824
+  (0.0ms) SAVEPOINT active_record_1
13825
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["email", "vlado15@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["username", "vlado15"]]
13826
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13827
+  (0.0ms) SAVEPOINT active_record_1
13828
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["email", "vlado16@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["username", "vlado16"]]
13829
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13830
+  (0.0ms) SAVEPOINT active_record_1
13831
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["email", "vlado17@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["username", "vlado17"]]
13832
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13833
+  (0.0ms) SAVEPOINT active_record_1
13834
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["email", "vlado18@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["username", "vlado18"]]
13835
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13836
+  (0.1ms) SAVEPOINT active_record_1
13837
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["email", "vlado19@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["username", "vlado19"]]
13838
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13839
+  (0.0ms) SAVEPOINT active_record_1
13840
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["email", "vlado20@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["username", "vlado20"]]
13841
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13842
+  (0.0ms) SAVEPOINT active_record_1
13843
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["email", "vlado21@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["username", "vlado21"]]
13844
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13845
+  (0.1ms) SAVEPOINT active_record_1
13846
+ SQL (0.2ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["email", "vlado22@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["username", "vlado22"]]
13847
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13848
+  (0.0ms) SAVEPOINT active_record_1
13849
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["email", "vlado23@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["username", "vlado23"]]
13850
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13851
+  (0.0ms) SAVEPOINT active_record_1
13852
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["email", "vlado24@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["username", "vlado24"]]
13853
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13854
+  (0.0ms) SAVEPOINT active_record_1
13855
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["email", "vlado25@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["username", "vlado25"]]
13856
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13857
+ Started GET "/rails/info/db/tables/users/entries" for 127.0.0.1 at 2014-01-04 20:35:19 +0100
13858
+ Processing by RailsDbInfo::TablesController#entries as HTML
13859
+ Parameters: {"table_id"=>"users"}
13860
+  (0.1ms) SELECT * FROM users LIMIT 10 OFFSET 0
13861
+  (0.0ms) SELECT COUNT(*) FROM users
13862
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (0.4ms)
13863
+ Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.6ms)
13864
+ Started GET "/rails/info/db/tables/users/entries?page=1" for 127.0.0.1 at 2014-01-04 20:35:19 +0100
13865
+ Processing by RailsDbInfo::TablesController#entries as HTML
13866
+ Parameters: {"page"=>"1", "table_id"=>"users"}
13867
+  (0.1ms) SELECT * FROM users LIMIT 10 OFFSET 0
13868
+  (0.0ms) SELECT COUNT(*) FROM users
13869
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (0.4ms)
13870
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.6ms)
13871
+ Started GET "/rails/info/db/tables/users/entries?page=2" for 127.0.0.1 at 2014-01-04 20:35:19 +0100
13872
+ Processing by RailsDbInfo::TablesController#entries as HTML
13873
+ Parameters: {"page"=>"2", "table_id"=>"users"}
13874
+  (0.1ms) SELECT * FROM users LIMIT 10 OFFSET 10
13875
+  (0.0ms) SELECT COUNT(*) FROM users
13876
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (0.4ms)
13877
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.6ms)
13878
+ Started GET "/rails/info/db/tables/users/entries?page=3" for 127.0.0.1 at 2014-01-04 20:35:19 +0100
13879
+ Processing by RailsDbInfo::TablesController#entries as HTML
13880
+ Parameters: {"page"=>"3", "table_id"=>"users"}
13881
+  (0.1ms) SELECT * FROM users LIMIT 10 OFFSET 20
13882
+  (0.0ms) SELECT COUNT(*) FROM users
13883
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (0.4ms)
13884
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.4ms)
13885
+  (1.0ms) rollback transaction
13886
+  (0.1ms) begin transaction
13887
+ ------------------------------------------------------------------------------
13888
+ NavigationTest: test_I_see_list_of_tables_when_I_visit_rails_db_info_dashboard
13889
+ ------------------------------------------------------------------------------
13890
+ Started GET "/rails/info/db" for 127.0.0.1 at 2014-01-04 20:35:19 +0100
13891
+ Processing by RailsDbInfo::TablesController#index as HTML
13892
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (0.1ms)
13893
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.1ms)
13894
+  (0.0ms) rollback transaction
13895
+  (0.0ms) begin transaction
13896
+ -----------------------------------------------------------------------
13897
+ NavigationTest: test_I_see_table_column_details_when_I_visit_table_page
13898
+ -----------------------------------------------------------------------
13899
+ Started GET "/rails/info/db/tables/users" for 127.0.0.1 at 2014-01-04 20:35:19 +0100
13900
+ Processing by RailsDbInfo::TablesController#show as HTML
13901
+ Parameters: {"id"=>"users"}
13902
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (0.5ms)
13903
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.1ms)
13904
+  (0.1ms) rollback transaction
13905
+  (0.1ms) begin transaction
13906
+ ----------------------------------------------------------------------------------------------------
13907
+ NavigationTest: test_I_see_table_title,_column_names_and_values_when_I_visit_show_table_entries_page
13908
+ ----------------------------------------------------------------------------------------------------
13909
+  (0.0ms) SAVEPOINT active_record_1
13910
+ SQL (0.3ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["email", "vlado@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["username", "vlado"]]
13911
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13912
+  (0.0ms) SAVEPOINT active_record_1
13913
+ SQL (0.3ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", false], ["age", 34], ["created_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["email", "ana@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:35:19 UTC +00:00], ["username", "ana"]]
13914
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13915
+ Started GET "/rails/info/db/tables/users/entries" for 127.0.0.1 at 2014-01-04 20:35:19 +0100
13916
+ Processing by RailsDbInfo::TablesController#entries as HTML
13917
+ Parameters: {"table_id"=>"users"}
13918
+  (0.1ms) SELECT * FROM users LIMIT 10 OFFSET 0
13919
+  (0.0ms) SELECT COUNT(*) FROM users
13920
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (0.6ms)
13921
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.3ms)
13922
+  (0.5ms) rollback transaction
13923
+  (0.1ms) begin transaction
13924
+ ---------------------------
13925
+ RailsDbInfoTest: test_truth
13926
+ ---------------------------
13927
+  (0.1ms) rollback transaction
13928
+ Connecting to database specified by database.yml
13929
+  (0.1ms) begin transaction
13930
+ Started GET "/rails/info/db" for 127.0.0.1 at Sat Jan 04 20:40:05 +0100 2014
13931
+ Processing by RailsDbInfo::TablesController#index as HTML
13932
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/index.html.erb within layouts/rails_db_info/application (1.7ms)
13933
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (1.3ms)
13934
+ Completed 200 OK in 41.8ms (Views: 41.0ms | ActiveRecord: 0.5ms)
13935
+  (0.1ms) rollback transaction
13936
+  (0.0ms) begin transaction
13937
+ Started GET "/rails/info/db/tables/users" for 127.0.0.1 at Sat Jan 04 20:40:05 +0100 2014
13938
+ Processing by RailsDbInfo::TablesController#show as HTML
13939
+ Parameters: {"id"=>"users"}
13940
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (1.1ms)
13941
+ Completed 200 OK in 4.3ms (Views: 4.0ms | ActiveRecord: 0.1ms)
13942
+  (0.0ms) rollback transaction
13943
+  (0.0ms) begin transaction
13944
+  (0.0ms) SAVEPOINT active_record_1
13945
+ SQL (4.0ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["email", "vlado1@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["username", "vlado1"]]
13946
+  (0.1ms) RELEASE SAVEPOINT active_record_1
13947
+  (0.1ms) SAVEPOINT active_record_1
13948
+ SQL (1.2ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["email", "vlado2@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["username", "vlado2"]]
13949
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13950
+  (0.0ms) SAVEPOINT active_record_1
13951
+ SQL (0.2ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["email", "vlado3@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["username", "vlado3"]]
13952
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13953
+  (0.0ms) SAVEPOINT active_record_1
13954
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["email", "vlado4@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["username", "vlado4"]]
13955
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13956
+  (0.0ms) SAVEPOINT active_record_1
13957
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["email", "vlado5@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["username", "vlado5"]]
13958
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13959
+  (0.0ms) SAVEPOINT active_record_1
13960
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["email", "vlado6@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["username", "vlado6"]]
13961
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13962
+  (0.0ms) SAVEPOINT active_record_1
13963
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["email", "vlado7@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["username", "vlado7"]]
13964
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13965
+  (0.0ms) SAVEPOINT active_record_1
13966
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["email", "vlado8@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["username", "vlado8"]]
13967
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13968
+  (0.0ms) SAVEPOINT active_record_1
13969
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["email", "vlado9@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["username", "vlado9"]]
13970
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13971
+  (0.0ms) SAVEPOINT active_record_1
13972
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["email", "vlado10@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["username", "vlado10"]]
13973
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13974
+  (0.0ms) SAVEPOINT active_record_1
13975
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["email", "vlado11@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["username", "vlado11"]]
13976
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13977
+  (0.0ms) SAVEPOINT active_record_1
13978
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["email", "vlado12@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["username", "vlado12"]]
13979
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13980
+  (0.0ms) SAVEPOINT active_record_1
13981
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["email", "vlado13@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["username", "vlado13"]]
13982
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13983
+  (0.0ms) SAVEPOINT active_record_1
13984
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["email", "vlado14@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["username", "vlado14"]]
13985
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13986
+  (0.0ms) SAVEPOINT active_record_1
13987
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["email", "vlado15@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["username", "vlado15"]]
13988
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13989
+  (0.0ms) SAVEPOINT active_record_1
13990
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["email", "vlado16@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["username", "vlado16"]]
13991
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13992
+  (0.0ms) SAVEPOINT active_record_1
13993
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["email", "vlado17@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["username", "vlado17"]]
13994
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13995
+  (0.0ms) SAVEPOINT active_record_1
13996
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["email", "vlado18@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["username", "vlado18"]]
13997
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13998
+  (0.0ms) SAVEPOINT active_record_1
13999
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["email", "vlado19@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["username", "vlado19"]]
14000
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14001
+  (0.0ms) SAVEPOINT active_record_1
14002
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["email", "vlado20@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["username", "vlado20"]]
14003
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14004
+  (0.0ms) SAVEPOINT active_record_1
14005
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["email", "vlado21@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["username", "vlado21"]]
14006
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14007
+  (0.0ms) SAVEPOINT active_record_1
14008
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["email", "vlado22@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["username", "vlado22"]]
14009
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14010
+  (0.0ms) SAVEPOINT active_record_1
14011
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["email", "vlado23@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["username", "vlado23"]]
14012
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14013
+  (0.0ms) SAVEPOINT active_record_1
14014
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["email", "vlado24@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["username", "vlado24"]]
14015
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14016
+  (0.0ms) SAVEPOINT active_record_1
14017
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["email", "vlado25@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["username", "vlado25"]]
14018
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14019
+ Started GET "/rails/info/db/tables/users/entries" for 127.0.0.1 at Sat Jan 04 20:40:05 +0100 2014
14020
+ Processing by RailsDbInfo::TablesController#entries as HTML
14021
+ Parameters: {"table_id"=>"users"}
14022
+  (0.1ms) SELECT * FROM users LIMIT 10 OFFSET 0
14023
+  (0.0ms) SELECT COUNT(*) FROM users
14024
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (0.9ms)
14025
+ Completed 200 OK in 46.3ms (Views: 45.4ms | ActiveRecord: 0.5ms)
14026
+ Started GET "/rails/info/db/tables/users/entries?page=1" for 127.0.0.1 at Sat Jan 04 20:40:05 +0100 2014
14027
+ Processing by RailsDbInfo::TablesController#entries as HTML
14028
+ Parameters: {"page"=>"1", "table_id"=>"users"}
14029
+  (0.1ms) SELECT * FROM users LIMIT 10 OFFSET 0
14030
+  (0.0ms) SELECT COUNT(*) FROM users
14031
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (0.6ms)
14032
+ Completed 200 OK in 5.6ms (Views: 5.0ms | ActiveRecord: 0.4ms)
14033
+ Started GET "/rails/info/db/tables/users/entries?page=2" for 127.0.0.1 at Sat Jan 04 20:40:05 +0100 2014
14034
+ Processing by RailsDbInfo::TablesController#entries as HTML
14035
+ Parameters: {"page"=>"2", "table_id"=>"users"}
14036
+  (0.1ms) SELECT * FROM users LIMIT 10 OFFSET 10
14037
+  (0.0ms) SELECT COUNT(*) FROM users
14038
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (0.6ms)
14039
+ Completed 200 OK in 6.1ms (Views: 5.6ms | ActiveRecord: 0.4ms)
14040
+ Started GET "/rails/info/db/tables/users/entries?page=3" for 127.0.0.1 at Sat Jan 04 20:40:05 +0100 2014
14041
+ Processing by RailsDbInfo::TablesController#entries as HTML
14042
+ Parameters: {"page"=>"3", "table_id"=>"users"}
14043
+  (0.1ms) SELECT * FROM users LIMIT 10 OFFSET 20
14044
+  (0.0ms) SELECT COUNT(*) FROM users
14045
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (0.6ms)
14046
+ Completed 200 OK in 4.4ms (Views: 3.9ms | ActiveRecord: 0.3ms)
14047
+  (1.1ms) rollback transaction
14048
+  (0.1ms) begin transaction
14049
+ Started GET "/rails/info/db" for 127.0.0.1 at Sat Jan 04 20:40:05 +0100 2014
14050
+ Processing by RailsDbInfo::TablesController#index as HTML
14051
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (0.3ms)
14052
+ Completed 200 OK in 3.2ms (Views: 2.7ms | ActiveRecord: 0.2ms)
14053
+  (0.0ms) rollback transaction
14054
+  (0.0ms) begin transaction
14055
+ Started GET "/rails/info/db/tables/users" for 127.0.0.1 at Sat Jan 04 20:40:05 +0100 2014
14056
+ Processing by RailsDbInfo::TablesController#show as HTML
14057
+ Parameters: {"id"=>"users"}
14058
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (0.7ms)
14059
+ Completed 200 OK in 2.9ms (Views: 2.7ms | ActiveRecord: 0.1ms)
14060
+  (0.0ms) rollback transaction
14061
+  (0.0ms) begin transaction
14062
+  (0.0ms) SAVEPOINT active_record_1
14063
+ SQL (0.3ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["email", "vlado@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["username", "vlado"]]
14064
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14065
+  (0.0ms) SAVEPOINT active_record_1
14066
+ SQL (0.3ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", false], ["age", 34], ["created_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["email", "ana@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:40:05 UTC +00:00], ["username", "ana"]]
14067
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14068
+ Started GET "/rails/info/db/tables/users/entries" for 127.0.0.1 at Sat Jan 04 20:40:05 +0100 2014
14069
+ Processing by RailsDbInfo::TablesController#entries as HTML
14070
+ Parameters: {"table_id"=>"users"}
14071
+  (0.0ms) SELECT * FROM users LIMIT 10 OFFSET 0
14072
+  (0.0ms) SELECT COUNT(*) FROM users
14073
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (0.7ms)
14074
+ Completed 200 OK in 2.9ms (Views: 2.6ms | ActiveRecord: 0.2ms)
14075
+  (0.4ms) rollback transaction
14076
+  (0.2ms) begin transaction
14077
+  (0.0ms) rollback transaction
14078
+  (0.3ms) begin transaction
14079
+ ----------------------------------------------------------------------------------
14080
+ CatchAllRoutesTest: test_I_see_list_of_tables_when_I_visit_rails_db_info_dashboard
14081
+ ----------------------------------------------------------------------------------
14082
+ Started GET "/rails/info/db" for 127.0.0.1 at 2014-01-04 20:43:32 +0100
14083
+ Processing by RailsDbInfo::TablesController#index as HTML
14084
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/index.html.erb within layouts/rails_db_info/application (2.0ms)
14085
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (0.7ms)
14086
+ Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.8ms)
14087
+  (0.1ms) rollback transaction
14088
+  (0.1ms) begin transaction
14089
+ ---------------------------------------------------------------------------
14090
+ CatchAllRoutesTest: test_I_see_table_column_details_when_I_visit_table_page
14091
+ ---------------------------------------------------------------------------
14092
+ Started GET "/rails/info/db/tables/users" for 127.0.0.1 at 2014-01-04 20:43:32 +0100
14093
+ Processing by RailsDbInfo::TablesController#show as HTML
14094
+ Parameters: {"id"=>"users"}
14095
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (0.6ms)
14096
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.1ms)
14097
+  (0.1ms) rollback transaction
14098
+  (0.0ms) begin transaction
14099
+ ---------------------------------------------------
14100
+ NavigationTest: test_I_can_paginate_through_entires
14101
+ ---------------------------------------------------
14102
+  (0.0ms) SAVEPOINT active_record_1
14103
+ SQL (2.7ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["email", "vlado1@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["username", "vlado1"]]
14104
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14105
+  (0.0ms) SAVEPOINT active_record_1
14106
+ SQL (0.9ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["email", "vlado2@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["username", "vlado2"]]
14107
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14108
+  (0.0ms) SAVEPOINT active_record_1
14109
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["email", "vlado3@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["username", "vlado3"]]
14110
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14111
+  (0.0ms) SAVEPOINT active_record_1
14112
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["email", "vlado4@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["username", "vlado4"]]
14113
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14114
+  (0.0ms) SAVEPOINT active_record_1
14115
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["email", "vlado5@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["username", "vlado5"]]
14116
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14117
+  (0.0ms) SAVEPOINT active_record_1
14118
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["email", "vlado6@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["username", "vlado6"]]
14119
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14120
+  (0.0ms) SAVEPOINT active_record_1
14121
+ SQL (0.2ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["email", "vlado7@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["username", "vlado7"]]
14122
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14123
+  (0.0ms) SAVEPOINT active_record_1
14124
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["email", "vlado8@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["username", "vlado8"]]
14125
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14126
+  (0.0ms) SAVEPOINT active_record_1
14127
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["email", "vlado9@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["username", "vlado9"]]
14128
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14129
+  (0.0ms) SAVEPOINT active_record_1
14130
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["email", "vlado10@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["username", "vlado10"]]
14131
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14132
+  (0.0ms) SAVEPOINT active_record_1
14133
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["email", "vlado11@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["username", "vlado11"]]
14134
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14135
+  (0.0ms) SAVEPOINT active_record_1
14136
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["email", "vlado12@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["username", "vlado12"]]
14137
+  (0.1ms) RELEASE SAVEPOINT active_record_1
14138
+  (0.0ms) SAVEPOINT active_record_1
14139
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["email", "vlado13@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["username", "vlado13"]]
14140
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14141
+  (0.0ms) SAVEPOINT active_record_1
14142
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["email", "vlado14@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["username", "vlado14"]]
14143
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14144
+  (0.0ms) SAVEPOINT active_record_1
14145
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["email", "vlado15@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["username", "vlado15"]]
14146
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14147
+  (0.0ms) SAVEPOINT active_record_1
14148
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["email", "vlado16@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["username", "vlado16"]]
14149
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14150
+  (0.0ms) SAVEPOINT active_record_1
14151
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["email", "vlado17@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["username", "vlado17"]]
14152
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14153
+  (0.0ms) SAVEPOINT active_record_1
14154
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["email", "vlado18@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["username", "vlado18"]]
14155
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14156
+  (0.0ms) SAVEPOINT active_record_1
14157
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["email", "vlado19@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["username", "vlado19"]]
14158
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14159
+  (0.0ms) SAVEPOINT active_record_1
14160
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["email", "vlado20@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["username", "vlado20"]]
14161
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14162
+  (0.0ms) SAVEPOINT active_record_1
14163
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["email", "vlado21@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["username", "vlado21"]]
14164
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14165
+  (0.1ms) SAVEPOINT active_record_1
14166
+ SQL (0.2ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["email", "vlado22@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["username", "vlado22"]]
14167
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14168
+  (0.0ms) SAVEPOINT active_record_1
14169
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["email", "vlado23@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["username", "vlado23"]]
14170
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14171
+  (0.0ms) SAVEPOINT active_record_1
14172
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["email", "vlado24@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["username", "vlado24"]]
14173
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14174
+  (0.0ms) SAVEPOINT active_record_1
14175
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["email", "vlado25@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["username", "vlado25"]]
14176
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14177
+ Started GET "/rails/info/db/tables/users/entries" for 127.0.0.1 at 2014-01-04 20:43:32 +0100
14178
+ Processing by RailsDbInfo::TablesController#entries as HTML
14179
+ Parameters: {"table_id"=>"users"}
14180
+  (0.1ms) SELECT * FROM users LIMIT 10 OFFSET 0
14181
+  (0.0ms) SELECT COUNT(*) FROM users
14182
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (0.4ms)
14183
+ Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.6ms)
14184
+ Started GET "/rails/info/db/tables/users/entries?page=1" for 127.0.0.1 at 2014-01-04 20:43:32 +0100
14185
+ Processing by RailsDbInfo::TablesController#entries as HTML
14186
+ Parameters: {"page"=>"1", "table_id"=>"users"}
14187
+  (0.1ms) SELECT * FROM users LIMIT 10 OFFSET 0
14188
+  (0.0ms) SELECT COUNT(*) FROM users
14189
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (0.4ms)
14190
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.5ms)
14191
+ Started GET "/rails/info/db/tables/users/entries?page=2" for 127.0.0.1 at 2014-01-04 20:43:32 +0100
14192
+ Processing by RailsDbInfo::TablesController#entries as HTML
14193
+ Parameters: {"page"=>"2", "table_id"=>"users"}
14194
+  (0.1ms) SELECT * FROM users LIMIT 10 OFFSET 10
14195
+  (0.0ms) SELECT COUNT(*) FROM users
14196
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (0.4ms)
14197
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.5ms)
14198
+ Started GET "/rails/info/db/tables/users/entries?page=3" for 127.0.0.1 at 2014-01-04 20:43:32 +0100
14199
+ Processing by RailsDbInfo::TablesController#entries as HTML
14200
+ Parameters: {"page"=>"3", "table_id"=>"users"}
14201
+  (0.1ms) SELECT * FROM users LIMIT 10 OFFSET 20
14202
+  (0.0ms) SELECT COUNT(*) FROM users
14203
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (0.7ms)
14204
+ Completed 200 OK in 4ms (Views: 3.0ms | ActiveRecord: 0.4ms)
14205
+  (1.1ms) rollback transaction
14206
+  (0.1ms) begin transaction
14207
+ ------------------------------------------------------------------------------
14208
+ NavigationTest: test_I_see_list_of_tables_when_I_visit_rails_db_info_dashboard
14209
+ ------------------------------------------------------------------------------
14210
+ Started GET "/rails/info/db" for 127.0.0.1 at 2014-01-04 20:43:32 +0100
14211
+ Processing by RailsDbInfo::TablesController#index as HTML
14212
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (0.1ms)
14213
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.1ms)
14214
+  (0.1ms) rollback transaction
14215
+  (0.0ms) begin transaction
14216
+ -----------------------------------------------------------------------
14217
+ NavigationTest: test_I_see_table_column_details_when_I_visit_table_page
14218
+ -----------------------------------------------------------------------
14219
+ Started GET "/rails/info/db/tables/users" for 127.0.0.1 at 2014-01-04 20:43:32 +0100
14220
+ Processing by RailsDbInfo::TablesController#show as HTML
14221
+ Parameters: {"id"=>"users"}
14222
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (0.7ms)
14223
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.1ms)
14224
+  (0.3ms) rollback transaction
14225
+  (0.0ms) begin transaction
14226
+ ----------------------------------------------------------------------------------------------------
14227
+ NavigationTest: test_I_see_table_title,_column_names_and_values_when_I_visit_show_table_entries_page
14228
+ ----------------------------------------------------------------------------------------------------
14229
+  (0.0ms) SAVEPOINT active_record_1
14230
+ SQL (0.3ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["email", "vlado@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["username", "vlado"]]
14231
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14232
+  (0.0ms) SAVEPOINT active_record_1
14233
+ SQL (0.3ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", false], ["age", 34], ["created_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["email", "ana@cingel.hr"], ["updated_at", Sat, 04 Jan 2014 19:43:32 UTC +00:00], ["username", "ana"]]
14234
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14235
+ Started GET "/rails/info/db/tables/users/entries" for 127.0.0.1 at 2014-01-04 20:43:32 +0100
14236
+ Processing by RailsDbInfo::TablesController#entries as HTML
14237
+ Parameters: {"table_id"=>"users"}
14238
+  (0.1ms) SELECT * FROM users LIMIT 10 OFFSET 0
14239
+  (0.0ms) SELECT COUNT(*) FROM users
14240
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (0.6ms)
14241
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.3ms)
14242
+  (0.4ms) rollback transaction
14243
+  (0.0ms) begin transaction
14244
+ ---------------------------
14245
+ RailsDbInfoTest: test_truth
14246
+ ---------------------------
14247
+  (0.1ms) rollback transaction
14248
+  (0.3ms) begin transaction
14249
+ ----------------------------------------------------------------------------------
14250
+ CatchAllRoutesTest: test_I_see_list_of_tables_when_I_visit_rails_db_info_dashboard
14251
+ ----------------------------------------------------------------------------------
14252
+ Started GET "/rails/info/db" for 127.0.0.1 at 2014-01-06 23:13:57 +0100
14253
+ Processing by RailsDbInfo::TablesController#index as HTML
14254
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/index.html.erb within layouts/rails_db_info/application (2.2ms)
14255
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (0.8ms)
14256
+ Completed 200 OK in 22ms (Views: 20.1ms | ActiveRecord: 1.2ms)
14257
+  (0.1ms) rollback transaction
14258
+  (0.0ms) begin transaction
14259
+ ---------------------------------------------------------------------------
14260
+ CatchAllRoutesTest: test_I_see_table_column_details_when_I_visit_table_page
14261
+ ---------------------------------------------------------------------------
14262
+ Started GET "/rails/info/db/tables/users" for 127.0.0.1 at 2014-01-06 23:13:57 +0100
14263
+ Processing by RailsDbInfo::TablesController#show as HTML
14264
+ Parameters: {"id"=>"users"}
14265
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (0.9ms)
14266
+ Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.2ms)
14267
+  (0.1ms) rollback transaction
14268
+  (0.0ms) begin transaction
14269
+ ---------------------------------------------------
14270
+ NavigationTest: test_I_can_paginate_through_entires
14271
+ ---------------------------------------------------
14272
+  (0.1ms) SAVEPOINT active_record_1
14273
+ SQL (3.9ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["email", "vlado1@cingel.hr"], ["updated_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["username", "vlado1"]]
14274
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14275
+  (0.0ms) SAVEPOINT active_record_1
14276
+ SQL (0.8ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["email", "vlado2@cingel.hr"], ["updated_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["username", "vlado2"]]
14277
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14278
+  (0.0ms) SAVEPOINT active_record_1
14279
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["email", "vlado3@cingel.hr"], ["updated_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["username", "vlado3"]]
14280
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14281
+  (0.0ms) SAVEPOINT active_record_1
14282
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["email", "vlado4@cingel.hr"], ["updated_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["username", "vlado4"]]
14283
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14284
+  (0.0ms) SAVEPOINT active_record_1
14285
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["email", "vlado5@cingel.hr"], ["updated_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["username", "vlado5"]]
14286
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14287
+  (0.0ms) SAVEPOINT active_record_1
14288
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["email", "vlado6@cingel.hr"], ["updated_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["username", "vlado6"]]
14289
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14290
+  (0.0ms) SAVEPOINT active_record_1
14291
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["email", "vlado7@cingel.hr"], ["updated_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["username", "vlado7"]]
14292
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14293
+  (0.0ms) SAVEPOINT active_record_1
14294
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["email", "vlado8@cingel.hr"], ["updated_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["username", "vlado8"]]
14295
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14296
+  (0.0ms) SAVEPOINT active_record_1
14297
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["email", "vlado9@cingel.hr"], ["updated_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["username", "vlado9"]]
14298
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14299
+  (0.0ms) SAVEPOINT active_record_1
14300
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["email", "vlado10@cingel.hr"], ["updated_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["username", "vlado10"]]
14301
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14302
+  (0.0ms) SAVEPOINT active_record_1
14303
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["email", "vlado11@cingel.hr"], ["updated_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["username", "vlado11"]]
14304
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14305
+  (0.0ms) SAVEPOINT active_record_1
14306
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["email", "vlado12@cingel.hr"], ["updated_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["username", "vlado12"]]
14307
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14308
+  (0.0ms) SAVEPOINT active_record_1
14309
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["email", "vlado13@cingel.hr"], ["updated_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["username", "vlado13"]]
14310
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14311
+  (0.0ms) SAVEPOINT active_record_1
14312
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["email", "vlado14@cingel.hr"], ["updated_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["username", "vlado14"]]
14313
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14314
+  (0.0ms) SAVEPOINT active_record_1
14315
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["email", "vlado15@cingel.hr"], ["updated_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["username", "vlado15"]]
14316
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14317
+  (0.0ms) SAVEPOINT active_record_1
14318
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["email", "vlado16@cingel.hr"], ["updated_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["username", "vlado16"]]
14319
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14320
+  (0.0ms) SAVEPOINT active_record_1
14321
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["email", "vlado17@cingel.hr"], ["updated_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["username", "vlado17"]]
14322
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14323
+  (0.0ms) SAVEPOINT active_record_1
14324
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["email", "vlado18@cingel.hr"], ["updated_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["username", "vlado18"]]
14325
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14326
+  (0.0ms) SAVEPOINT active_record_1
14327
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["email", "vlado19@cingel.hr"], ["updated_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["username", "vlado19"]]
14328
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14329
+  (0.0ms) SAVEPOINT active_record_1
14330
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["email", "vlado20@cingel.hr"], ["updated_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["username", "vlado20"]]
14331
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14332
+  (0.0ms) SAVEPOINT active_record_1
14333
+ SQL (0.2ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["email", "vlado21@cingel.hr"], ["updated_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["username", "vlado21"]]
14334
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14335
+  (0.0ms) SAVEPOINT active_record_1
14336
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["email", "vlado22@cingel.hr"], ["updated_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["username", "vlado22"]]
14337
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14338
+  (0.0ms) SAVEPOINT active_record_1
14339
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["email", "vlado23@cingel.hr"], ["updated_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["username", "vlado23"]]
14340
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14341
+  (0.0ms) SAVEPOINT active_record_1
14342
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["email", "vlado24@cingel.hr"], ["updated_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["username", "vlado24"]]
14343
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14344
+  (0.0ms) SAVEPOINT active_record_1
14345
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["email", "vlado25@cingel.hr"], ["updated_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["username", "vlado25"]]
14346
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14347
+ Started GET "/rails/info/db/tables/users/entries" for 127.0.0.1 at 2014-01-06 23:13:57 +0100
14348
+ Processing by RailsDbInfo::TablesController#entries as HTML
14349
+ Parameters: {"table_id"=>"users"}
14350
+  (0.1ms) SELECT * FROM users LIMIT 10 OFFSET 0
14351
+  (0.1ms) SELECT COUNT(*) FROM users
14352
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (0.6ms)
14353
+ Completed 200 OK in 9ms (Views: 7.7ms | ActiveRecord: 0.9ms)
14354
+ Started GET "/rails/info/db/tables/users/entries?page=1" for 127.0.0.1 at 2014-01-06 23:13:57 +0100
14355
+ Processing by RailsDbInfo::TablesController#entries as HTML
14356
+ Parameters: {"page"=>"1", "table_id"=>"users"}
14357
+  (0.1ms) SELECT * FROM users LIMIT 10 OFFSET 0
14358
+  (0.0ms) SELECT COUNT(*) FROM users
14359
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (0.4ms)
14360
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.5ms)
14361
+ Started GET "/rails/info/db/tables/users/entries?page=2" for 127.0.0.1 at 2014-01-06 23:13:57 +0100
14362
+ Processing by RailsDbInfo::TablesController#entries as HTML
14363
+ Parameters: {"page"=>"2", "table_id"=>"users"}
14364
+  (0.1ms) SELECT * FROM users LIMIT 10 OFFSET 10
14365
+  (0.0ms) SELECT COUNT(*) FROM users
14366
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (0.4ms)
14367
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.5ms)
14368
+ Started GET "/rails/info/db/tables/users/entries?page=3" for 127.0.0.1 at 2014-01-06 23:13:57 +0100
14369
+ Processing by RailsDbInfo::TablesController#entries as HTML
14370
+ Parameters: {"page"=>"3", "table_id"=>"users"}
14371
+  (0.1ms) SELECT * FROM users LIMIT 10 OFFSET 20
14372
+  (0.0ms) SELECT COUNT(*) FROM users
14373
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (0.5ms)
14374
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.4ms)
14375
+  (0.5ms) rollback transaction
14376
+  (0.0ms) begin transaction
14377
+ ------------------------------------------------------------------------------
14378
+ NavigationTest: test_I_see_list_of_tables_when_I_visit_rails_db_info_dashboard
14379
+ ------------------------------------------------------------------------------
14380
+ Started GET "/rails/info/db" for 127.0.0.1 at 2014-01-06 23:13:57 +0100
14381
+ Processing by RailsDbInfo::TablesController#index as HTML
14382
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (0.2ms)
14383
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.1ms)
14384
+  (0.1ms) rollback transaction
14385
+  (0.0ms) begin transaction
14386
+ -----------------------------------------------------------------------
14387
+ NavigationTest: test_I_see_table_column_details_when_I_visit_table_page
14388
+ -----------------------------------------------------------------------
14389
+ Started GET "/rails/info/db/tables/users" for 127.0.0.1 at 2014-01-06 23:13:57 +0100
14390
+ Processing by RailsDbInfo::TablesController#show as HTML
14391
+ Parameters: {"id"=>"users"}
14392
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (0.6ms)
14393
+ Completed 200 OK in 2ms (Views: 2.3ms | ActiveRecord: 0.1ms)
14394
+  (0.0ms) rollback transaction
14395
+  (0.1ms) begin transaction
14396
+ ----------------------------------------------------------------------------------------------------
14397
+ NavigationTest: test_I_see_table_title,_column_names_and_values_when_I_visit_show_table_entries_page
14398
+ ----------------------------------------------------------------------------------------------------
14399
+  (0.0ms) SAVEPOINT active_record_1
14400
+ SQL (0.3ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["email", "vlado@cingel.hr"], ["updated_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["username", "vlado"]]
14401
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14402
+  (0.0ms) SAVEPOINT active_record_1
14403
+ SQL (0.2ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", false], ["age", 34], ["created_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["email", "ana@cingel.hr"], ["updated_at", Mon, 06 Jan 2014 22:13:57 UTC +00:00], ["username", "ana"]]
14404
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14405
+ Started GET "/rails/info/db/tables/users/entries" for 127.0.0.1 at 2014-01-06 23:13:57 +0100
14406
+ Processing by RailsDbInfo::TablesController#entries as HTML
14407
+ Parameters: {"table_id"=>"users"}
14408
+  (0.1ms) SELECT * FROM users LIMIT 10 OFFSET 0
14409
+  (0.0ms) SELECT COUNT(*) FROM users
14410
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (16.1ms)
14411
+ Completed 200 OK in 18ms (Views: 17.6ms | ActiveRecord: 0.3ms)
14412
+  (0.6ms) rollback transaction
14413
+  (0.1ms) begin transaction
14414
+ ---------------------------
14415
+ RailsDbInfoTest: test_truth
14416
+ ---------------------------
14417
+  (0.1ms) rollback transaction
14418
+  (0.2ms) begin transaction
14419
+ ----------------------------------------------------------------------------------
14420
+ CatchAllRoutesTest: test_I_see_list_of_tables_when_I_visit_rails_db_info_dashboard
14421
+ ----------------------------------------------------------------------------------
14422
+ Started GET "/rails/info/db" for 127.0.0.1 at 2014-01-07 11:01:09 +0100
14423
+ Processing by RailsDbInfo::TablesController#index as HTML
14424
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/index.html.erb within layouts/rails_db_info/application (2.4ms)
14425
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (0.8ms)
14426
+ Completed 200 OK in 22ms (Views: 19.9ms | ActiveRecord: 1.2ms)
14427
+  (0.1ms) rollback transaction
14428
+  (0.0ms) begin transaction
14429
+ ---------------------------------------------------------------------------
14430
+ CatchAllRoutesTest: test_I_see_table_column_details_when_I_visit_table_page
14431
+ ---------------------------------------------------------------------------
14432
+ Started GET "/rails/info/db/tables/users" for 127.0.0.1 at 2014-01-07 11:01:10 +0100
14433
+ Processing by RailsDbInfo::TablesController#show as HTML
14434
+ Parameters: {"id"=>"users"}
14435
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (0.9ms)
14436
+ Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.2ms)
14437
+  (0.1ms) rollback transaction
14438
+  (0.0ms) begin transaction
14439
+ ---------------------------------------------------
14440
+ NavigationTest: test_I_can_paginate_through_entires
14441
+ ---------------------------------------------------
14442
+  (0.0ms) SAVEPOINT active_record_1
14443
+ SQL (3.5ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["email", "vlado1@cingel.hr"], ["updated_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["username", "vlado1"]]
14444
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14445
+  (0.0ms) SAVEPOINT active_record_1
14446
+ SQL (1.0ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["email", "vlado2@cingel.hr"], ["updated_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["username", "vlado2"]]
14447
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14448
+  (0.0ms) SAVEPOINT active_record_1
14449
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["email", "vlado3@cingel.hr"], ["updated_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["username", "vlado3"]]
14450
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14451
+  (0.0ms) SAVEPOINT active_record_1
14452
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["email", "vlado4@cingel.hr"], ["updated_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["username", "vlado4"]]
14453
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14454
+  (0.0ms) SAVEPOINT active_record_1
14455
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["email", "vlado5@cingel.hr"], ["updated_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["username", "vlado5"]]
14456
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14457
+  (0.1ms) SAVEPOINT active_record_1
14458
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["email", "vlado6@cingel.hr"], ["updated_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["username", "vlado6"]]
14459
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14460
+  (0.0ms) SAVEPOINT active_record_1
14461
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["email", "vlado7@cingel.hr"], ["updated_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["username", "vlado7"]]
14462
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14463
+  (0.0ms) SAVEPOINT active_record_1
14464
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["email", "vlado8@cingel.hr"], ["updated_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["username", "vlado8"]]
14465
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14466
+  (0.0ms) SAVEPOINT active_record_1
14467
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["email", "vlado9@cingel.hr"], ["updated_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["username", "vlado9"]]
14468
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14469
+  (0.0ms) SAVEPOINT active_record_1
14470
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["email", "vlado10@cingel.hr"], ["updated_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["username", "vlado10"]]
14471
+  (0.1ms) RELEASE SAVEPOINT active_record_1
14472
+  (0.0ms) SAVEPOINT active_record_1
14473
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["email", "vlado11@cingel.hr"], ["updated_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["username", "vlado11"]]
14474
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14475
+  (0.0ms) SAVEPOINT active_record_1
14476
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["email", "vlado12@cingel.hr"], ["updated_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["username", "vlado12"]]
14477
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14478
+  (0.0ms) SAVEPOINT active_record_1
14479
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["email", "vlado13@cingel.hr"], ["updated_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["username", "vlado13"]]
14480
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14481
+  (0.0ms) SAVEPOINT active_record_1
14482
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["email", "vlado14@cingel.hr"], ["updated_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["username", "vlado14"]]
14483
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14484
+  (0.0ms) SAVEPOINT active_record_1
14485
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["email", "vlado15@cingel.hr"], ["updated_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["username", "vlado15"]]
14486
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14487
+  (0.0ms) SAVEPOINT active_record_1
14488
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["email", "vlado16@cingel.hr"], ["updated_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["username", "vlado16"]]
14489
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14490
+  (0.0ms) SAVEPOINT active_record_1
14491
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["email", "vlado17@cingel.hr"], ["updated_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["username", "vlado17"]]
14492
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14493
+  (0.0ms) SAVEPOINT active_record_1
14494
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["email", "vlado18@cingel.hr"], ["updated_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["username", "vlado18"]]
14495
+  (0.1ms) RELEASE SAVEPOINT active_record_1
14496
+  (0.0ms) SAVEPOINT active_record_1
14497
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["email", "vlado19@cingel.hr"], ["updated_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["username", "vlado19"]]
14498
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14499
+  (0.0ms) SAVEPOINT active_record_1
14500
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["email", "vlado20@cingel.hr"], ["updated_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["username", "vlado20"]]
14501
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14502
+  (0.0ms) SAVEPOINT active_record_1
14503
+ SQL (0.2ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["email", "vlado21@cingel.hr"], ["updated_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["username", "vlado21"]]
14504
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14505
+  (0.0ms) SAVEPOINT active_record_1
14506
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["email", "vlado22@cingel.hr"], ["updated_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["username", "vlado22"]]
14507
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14508
+  (0.0ms) SAVEPOINT active_record_1
14509
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["email", "vlado23@cingel.hr"], ["updated_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["username", "vlado23"]]
14510
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14511
+  (0.0ms) SAVEPOINT active_record_1
14512
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["email", "vlado24@cingel.hr"], ["updated_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["username", "vlado24"]]
14513
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14514
+  (0.0ms) SAVEPOINT active_record_1
14515
+ SQL (0.1ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["email", "vlado25@cingel.hr"], ["updated_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["username", "vlado25"]]
14516
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14517
+ Started GET "/rails/info/db/tables/users/entries" for 127.0.0.1 at 2014-01-07 11:01:10 +0100
14518
+ Processing by RailsDbInfo::TablesController#entries as HTML
14519
+ Parameters: {"table_id"=>"users"}
14520
+  (0.1ms) SELECT * FROM users LIMIT 10 OFFSET 0
14521
+  (0.1ms) SELECT COUNT(*) FROM users
14522
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (0.6ms)
14523
+ Completed 200 OK in 9ms (Views: 7.7ms | ActiveRecord: 0.8ms)
14524
+ Started GET "/rails/info/db/tables/users/entries?page=1" for 127.0.0.1 at 2014-01-07 11:01:10 +0100
14525
+ Processing by RailsDbInfo::TablesController#entries as HTML
14526
+ Parameters: {"page"=>"1", "table_id"=>"users"}
14527
+  (0.1ms) SELECT * FROM users LIMIT 10 OFFSET 0
14528
+  (0.0ms) SELECT COUNT(*) FROM users
14529
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (0.4ms)
14530
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.6ms)
14531
+ Started GET "/rails/info/db/tables/users/entries?page=2" for 127.0.0.1 at 2014-01-07 11:01:10 +0100
14532
+ Processing by RailsDbInfo::TablesController#entries as HTML
14533
+ Parameters: {"page"=>"2", "table_id"=>"users"}
14534
+  (0.1ms) SELECT * FROM users LIMIT 10 OFFSET 10
14535
+  (0.0ms) SELECT COUNT(*) FROM users
14536
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (0.4ms)
14537
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.6ms)
14538
+ Started GET "/rails/info/db/tables/users/entries?page=3" for 127.0.0.1 at 2014-01-07 11:01:10 +0100
14539
+ Processing by RailsDbInfo::TablesController#entries as HTML
14540
+ Parameters: {"page"=>"3", "table_id"=>"users"}
14541
+  (0.1ms) SELECT * FROM users LIMIT 10 OFFSET 20
14542
+  (0.0ms) SELECT COUNT(*) FROM users
14543
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (0.4ms)
14544
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.4ms)
14545
+  (0.5ms) rollback transaction
14546
+  (0.1ms) begin transaction
14547
+ ------------------------------------------------------------------------------
14548
+ NavigationTest: test_I_see_list_of_tables_when_I_visit_rails_db_info_dashboard
14549
+ ------------------------------------------------------------------------------
14550
+ Started GET "/rails/info/db" for 127.0.0.1 at 2014-01-07 11:01:10 +0100
14551
+ Processing by RailsDbInfo::TablesController#index as HTML
14552
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (0.1ms)
14553
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.1ms)
14554
+  (0.1ms) rollback transaction
14555
+  (0.0ms) begin transaction
14556
+ -----------------------------------------------------------------------
14557
+ NavigationTest: test_I_see_table_column_details_when_I_visit_table_page
14558
+ -----------------------------------------------------------------------
14559
+ Started GET "/rails/info/db/tables/users" for 127.0.0.1 at 2014-01-07 11:01:10 +0100
14560
+ Processing by RailsDbInfo::TablesController#show as HTML
14561
+ Parameters: {"id"=>"users"}
14562
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (0.5ms)
14563
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.1ms)
14564
+  (0.1ms) rollback transaction
14565
+  (0.1ms) begin transaction
14566
+ ----------------------------------------------------------------------------------------------------
14567
+ NavigationTest: test_I_see_table_title,_column_names_and_values_when_I_visit_show_table_entries_page
14568
+ ----------------------------------------------------------------------------------------------------
14569
+  (0.0ms) SAVEPOINT active_record_1
14570
+ SQL (0.3ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", true], ["age", 33], ["created_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["email", "vlado@cingel.hr"], ["updated_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["username", "vlado"]]
14571
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14572
+  (0.0ms) SAVEPOINT active_record_1
14573
+ SQL (0.2ms) INSERT INTO "users" ("admin", "age", "created_at", "email", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["admin", false], ["age", 34], ["created_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["email", "ana@cingel.hr"], ["updated_at", Tue, 07 Jan 2014 10:01:10 UTC +00:00], ["username", "ana"]]
14574
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14575
+ Started GET "/rails/info/db/tables/users/entries" for 127.0.0.1 at 2014-01-07 11:01:10 +0100
14576
+ Processing by RailsDbInfo::TablesController#entries as HTML
14577
+ Parameters: {"table_id"=>"users"}
14578
+  (0.1ms) SELECT * FROM users LIMIT 10 OFFSET 0
14579
+  (0.0ms) SELECT COUNT(*) FROM users
14580
+ Rendered /Users/vlado/Projects/Code/rails_db_info/app/views/rails_db_info/tables/_header.html.erb (16.4ms)
14581
+ Completed 200 OK in 18ms (Views: 18.1ms | ActiveRecord: 0.3ms)
14582
+  (0.4ms) rollback transaction
14583
+  (0.1ms) begin transaction
14584
+ ---------------------------
14585
+ RailsDbInfoTest: test_truth
14586
+ ---------------------------
14587
+  (0.1ms) rollback transaction
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_db_info
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.8
4
+ version: 0.1.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vlado Cingel
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-12-24 00:00:00.000000000 Z
11
+ date: 2014-01-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails