commenteux 1.1.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c09bd987f58f79e8930ad6d184b0e818af7eec70
4
- data.tar.gz: 76fb007d0e64a0a0a7625042639bfb53346baf39
3
+ metadata.gz: 647b9e77a48b350b801b67f0b4a1cc16a8d63c06
4
+ data.tar.gz: a0902b33623484446950a11c260f6fa53ab1ff3b
5
5
  SHA512:
6
- metadata.gz: e68fb42e93d751e9a33b3e5f284c6ee6e4cbfed6e13e635149249edcf8ee63f38ce52b1f9bdc2eb6d4a8fc6ac19522e87d90f8cfaef9cc322a0ec502f6b66ada
7
- data.tar.gz: 89d55f4c589d546b29d58a849b961121ed090dfdba8fa72ada4064adc3b429bd270b8573c7f9ca9db7c1165583d9b4a7a1cd72faa5d8386a4fb88f58869648b8
6
+ metadata.gz: 31cf3602b38575d7ce6a5ea9a79867af03419f379c5f242f5a8f24f20cfff56ffc495f124ede3e8ced298fedad5e01691b477f40399b3df6704e281bfe655c53
7
+ data.tar.gz: 227737e36a0b89e3a65fefd3de1e5e2b0a50f9f0e870c4c90d2b24d188aa5c9b88a9ff66da821a93534a2260563f90265a1fea8a672b8169f4c600ba3356ec9f
@@ -17,7 +17,7 @@
17
17
  <%= user_lookup(comment.user_id) %>
18
18
  </td>
19
19
  <td>
20
- <%= comment.created_at %>
20
+ <%= comment.created_at.in_time_zone('Eastern Time (US & Canada)').strftime("%Y-%m-%d %H:%M:%S") %>
21
21
  </td>
22
22
  </tr>
23
23
  <% end %>
@@ -1,3 +1,3 @@
1
1
  module Commenteux
2
- VERSION = "1.1.0"
2
+ VERSION = "1.1.1"
3
3
  end
@@ -517,3 +517,629 @@ DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a rel
517
517
  Comment Load (0.4ms) SELECT `comments`.* FROM `comments` WHERE `comments`.`commentable_id` = 1 AND `comments`.`commentable_type` = 'DummyModel' ORDER BY created_at ASC
518
518
  Rendered /Users/seurdge/projects/commenteux/app/views/commenteux/notes/index.html.erb (1.3ms)
519
519
  Completed 200 OK in 10ms (Views: 6.0ms | ActiveRecord: 0.8ms)
520
+
521
+
522
+ Started GET "/commenteux/dummy_model/1" for 127.0.0.1 at 2014-03-21 11:35:29 -0400
523
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT `schema_migrations`.* FROM `schema_migrations`
524
+ Processing by Commenteux::NotesController#index as HTML
525
+ Parameters: {"resource"=>"dummy_model", "resource_id"=>"1"}
526
+ DummyModel Load (0.2ms) SELECT `dummy_models`.* FROM `dummy_models` WHERE `dummy_models`.`id` = 1 LIMIT 1
527
+ DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call #load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call #to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/seurdge/projects/commenteux/app/controllers/commenteux/notes_controller.rb:14)
528
+ Comment Load (0.4ms) SELECT `comments`.* FROM `comments` WHERE `comments`.`commentable_id` = 1 AND `comments`.`commentable_type` = 'DummyModel' ORDER BY created_at ASC
529
+ Rendered /Users/seurdge/projects/commenteux/app/views/commenteux/notes/index.html.erb within layouts/application (6.8ms)
530
+ Completed 500 Internal Server Error in 62ms
531
+
532
+ ActionView::Template::Error (Invalid Timezone: Quebec):
533
+ 17: <%= user_lookup(comment.user_id) %>
534
+ 18: </td>
535
+ 19: <td>
536
+ 20: <%= comment.created_at.in_time_zone('Quebec').to_date %>
537
+ 21: </td>
538
+ 22: </tr>
539
+ 23: <% end %>
540
+ activesupport (4.0.4) lib/active_support/core_ext/time/zones.rb:69:in `rescue in find_zone!'
541
+ activesupport (4.0.4) lib/active_support/core_ext/time/zones.rb:53:in `find_zone!'
542
+ activesupport (4.0.4) lib/active_support/core_ext/time/zones.rb:91:in `in_time_zone'
543
+ activesupport (4.0.4) lib/active_support/time_with_zone.rb:73:in `in_time_zone'
544
+ /Users/seurdge/projects/commenteux/app/views/commenteux/notes/index.html.erb:20:in `block in ___sers_seurdge_projects_commenteux_app_views_commenteux_notes_index_html_erb__1925442965267101584_70184894176320'
545
+ /Users/seurdge/projects/commenteux/app/views/commenteux/notes/index.html.erb:11:in `each'
546
+ /Users/seurdge/projects/commenteux/app/views/commenteux/notes/index.html.erb:11:in `___sers_seurdge_projects_commenteux_app_views_commenteux_notes_index_html_erb__1925442965267101584_70184894176320'
547
+ actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render'
548
+ activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument'
549
+ actionpack (4.0.4) lib/action_view/template.rb:141:in `render'
550
+ actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
551
+ actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
552
+ activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument'
553
+ activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
554
+ activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument'
555
+ actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
556
+ actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
557
+ actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
558
+ actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
559
+ actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:17:in `render'
560
+ actionpack (4.0.4) lib/action_view/renderer/renderer.rb:42:in `render_template'
561
+ actionpack (4.0.4) lib/action_view/renderer/renderer.rb:23:in `render'
562
+ actionpack (4.0.4) lib/abstract_controller/rendering.rb:127:in `_render_template'
563
+ actionpack (4.0.4) lib/action_controller/metal/streaming.rb:219:in `_render_template'
564
+ actionpack (4.0.4) lib/abstract_controller/rendering.rb:120:in `render_to_body'
565
+ actionpack (4.0.4) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
566
+ actionpack (4.0.4) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
567
+ actionpack (4.0.4) lib/abstract_controller/rendering.rb:97:in `render'
568
+ actionpack (4.0.4) lib/action_controller/metal/rendering.rb:16:in `render'
569
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
570
+ activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
571
+ /Users/seurdge/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
572
+ activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `ms'
573
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
574
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
575
+ activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
576
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:40:in `render'
577
+ actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
578
+ actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
579
+ actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action'
580
+ actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action'
581
+ actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
582
+ activesupport (4.0.4) lib/active_support/callbacks.rb:383:in `_run__1068904979117623922__process_action__callbacks'
583
+ activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks'
584
+ actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action'
585
+ actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action'
586
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
587
+ activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument'
588
+ activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
589
+ activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument'
590
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
591
+ actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
592
+ activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
593
+ actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process'
594
+ actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process'
595
+ actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch'
596
+ actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
597
+ actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action'
598
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `call'
599
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
600
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call'
601
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
602
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `each'
603
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call'
604
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call'
605
+ railties (4.0.4) lib/rails/engine.rb:511:in `call'
606
+ railties (4.0.4) lib/rails/railtie/configurable.rb:30:in `method_missing'
607
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
608
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `each'
609
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call'
610
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call'
611
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
612
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
613
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
614
+ actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
615
+ actionpack (4.0.4) lib/action_dispatch/middleware/flash.rb:241:in `call'
616
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
617
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
618
+ actionpack (4.0.4) lib/action_dispatch/middleware/cookies.rb:486:in `call'
619
+ activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call'
620
+ activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
621
+ activerecord (4.0.4) lib/active_record/migration.rb:373:in `call'
622
+ actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
623
+ activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__2321536452208593302__call__callbacks'
624
+ activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks'
625
+ actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
626
+ actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call'
627
+ actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
628
+ actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
629
+ actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
630
+ railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app'
631
+ railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call'
632
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
633
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged'
634
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged'
635
+ railties (4.0.4) lib/rails/rack/logger.rb:20:in `call'
636
+ actionpack (4.0.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
637
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
638
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
639
+ activesupport (4.0.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
640
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
641
+ actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call'
642
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
643
+ railties (4.0.4) lib/rails/engine.rb:511:in `call'
644
+ railties (4.0.4) lib/rails/application.rb:97:in `call'
645
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
646
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
647
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
648
+ /Users/seurdge/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
649
+ /Users/seurdge/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
650
+ /Users/seurdge/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
651
+
652
+
653
+ Rendered /Users/seurdge/.rvm/gems/ruby-2.0.0-p353@notes/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
654
+ Rendered /Users/seurdge/.rvm/gems/ruby-2.0.0-p353@notes/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (17.2ms)
655
+ Rendered /Users/seurdge/.rvm/gems/ruby-2.0.0-p353@notes/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (53.3ms)
656
+
657
+
658
+ Started GET "/commenteux/dummy_model/1" for 127.0.0.1 at 2014-03-21 11:35:54 -0400
659
+ Processing by Commenteux::NotesController#index as HTML
660
+ Parameters: {"resource"=>"dummy_model", "resource_id"=>"1"}
661
+ DummyModel Load (0.3ms) SELECT `dummy_models`.* FROM `dummy_models` WHERE `dummy_models`.`id` = 1 LIMIT 1
662
+ DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call #load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call #to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/seurdge/projects/commenteux/app/controllers/commenteux/notes_controller.rb:14)
663
+ Comment Load (0.6ms) SELECT `comments`.* FROM `comments` WHERE `comments`.`commentable_id` = 1 AND `comments`.`commentable_type` = 'DummyModel' ORDER BY created_at ASC
664
+ Rendered /Users/seurdge/projects/commenteux/app/views/commenteux/notes/index.html.erb within layouts/application (1.8ms)
665
+ Completed 500 Internal Server Error in 10ms
666
+
667
+ ActionView::Template::Error (Invalid Timezone: CANADA EST):
668
+ 17: <%= user_lookup(comment.user_id) %>
669
+ 18: </td>
670
+ 19: <td>
671
+ 20: <%= comment.created_at.in_time_zone('CANADA EST').to_date %>
672
+ 21: </td>
673
+ 22: </tr>
674
+ 23: <% end %>
675
+ activesupport (4.0.4) lib/active_support/core_ext/time/zones.rb:69:in `rescue in find_zone!'
676
+ activesupport (4.0.4) lib/active_support/core_ext/time/zones.rb:53:in `find_zone!'
677
+ activesupport (4.0.4) lib/active_support/core_ext/time/zones.rb:91:in `in_time_zone'
678
+ activesupport (4.0.4) lib/active_support/time_with_zone.rb:73:in `in_time_zone'
679
+ /Users/seurdge/projects/commenteux/app/views/commenteux/notes/index.html.erb:20:in `block in ___sers_seurdge_projects_commenteux_app_views_commenteux_notes_index_html_erb__1925442965267101584_70184888876380'
680
+ /Users/seurdge/projects/commenteux/app/views/commenteux/notes/index.html.erb:11:in `each'
681
+ /Users/seurdge/projects/commenteux/app/views/commenteux/notes/index.html.erb:11:in `___sers_seurdge_projects_commenteux_app_views_commenteux_notes_index_html_erb__1925442965267101584_70184888876380'
682
+ actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render'
683
+ activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument'
684
+ actionpack (4.0.4) lib/action_view/template.rb:141:in `render'
685
+ actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
686
+ actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
687
+ activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument'
688
+ activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
689
+ activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument'
690
+ actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
691
+ actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
692
+ actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
693
+ actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
694
+ actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:17:in `render'
695
+ actionpack (4.0.4) lib/action_view/renderer/renderer.rb:42:in `render_template'
696
+ actionpack (4.0.4) lib/action_view/renderer/renderer.rb:23:in `render'
697
+ actionpack (4.0.4) lib/abstract_controller/rendering.rb:127:in `_render_template'
698
+ actionpack (4.0.4) lib/action_controller/metal/streaming.rb:219:in `_render_template'
699
+ actionpack (4.0.4) lib/abstract_controller/rendering.rb:120:in `render_to_body'
700
+ actionpack (4.0.4) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
701
+ actionpack (4.0.4) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
702
+ actionpack (4.0.4) lib/abstract_controller/rendering.rb:97:in `render'
703
+ actionpack (4.0.4) lib/action_controller/metal/rendering.rb:16:in `render'
704
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
705
+ activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
706
+ /Users/seurdge/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
707
+ activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `ms'
708
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
709
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
710
+ activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
711
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:40:in `render'
712
+ actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
713
+ actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
714
+ actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action'
715
+ actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action'
716
+ actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
717
+ activesupport (4.0.4) lib/active_support/callbacks.rb:383:in `_run__1068904979117623922__process_action__callbacks'
718
+ activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks'
719
+ actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action'
720
+ actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action'
721
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
722
+ activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument'
723
+ activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
724
+ activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument'
725
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
726
+ actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
727
+ activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
728
+ actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process'
729
+ actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process'
730
+ actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch'
731
+ actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
732
+ actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action'
733
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `call'
734
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
735
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call'
736
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
737
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `each'
738
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call'
739
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call'
740
+ railties (4.0.4) lib/rails/engine.rb:511:in `call'
741
+ railties (4.0.4) lib/rails/railtie/configurable.rb:30:in `method_missing'
742
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
743
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `each'
744
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call'
745
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call'
746
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
747
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
748
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
749
+ actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
750
+ actionpack (4.0.4) lib/action_dispatch/middleware/flash.rb:241:in `call'
751
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
752
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
753
+ actionpack (4.0.4) lib/action_dispatch/middleware/cookies.rb:486:in `call'
754
+ activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call'
755
+ activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
756
+ activerecord (4.0.4) lib/active_record/migration.rb:373:in `call'
757
+ actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
758
+ activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__2321536452208593302__call__callbacks'
759
+ activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks'
760
+ actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
761
+ actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call'
762
+ actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
763
+ actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
764
+ actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
765
+ railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app'
766
+ railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call'
767
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
768
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged'
769
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged'
770
+ railties (4.0.4) lib/rails/rack/logger.rb:20:in `call'
771
+ actionpack (4.0.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
772
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
773
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
774
+ activesupport (4.0.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
775
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
776
+ actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call'
777
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
778
+ railties (4.0.4) lib/rails/engine.rb:511:in `call'
779
+ railties (4.0.4) lib/rails/application.rb:97:in `call'
780
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
781
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
782
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
783
+ /Users/seurdge/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
784
+ /Users/seurdge/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
785
+ /Users/seurdge/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
786
+
787
+
788
+ Rendered /Users/seurdge/.rvm/gems/ruby-2.0.0-p353@notes/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
789
+ Rendered /Users/seurdge/.rvm/gems/ruby-2.0.0-p353@notes/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
790
+ Rendered /Users/seurdge/.rvm/gems/ruby-2.0.0-p353@notes/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.6ms)
791
+
792
+
793
+ Started GET "/commenteux/dummy_model/1" for 127.0.0.1 at 2014-03-21 11:39:13 -0400
794
+ Processing by Commenteux::NotesController#index as HTML
795
+ Parameters: {"resource"=>"dummy_model", "resource_id"=>"1"}
796
+ DummyModel Load (0.3ms) SELECT `dummy_models`.* FROM `dummy_models` WHERE `dummy_models`.`id` = 1 LIMIT 1
797
+ DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call #load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call #to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/seurdge/projects/commenteux/app/controllers/commenteux/notes_controller.rb:14)
798
+ Comment Load (0.6ms) SELECT `comments`.* FROM `comments` WHERE `comments`.`commentable_id` = 1 AND `comments`.`commentable_type` = 'DummyModel' ORDER BY created_at ASC
799
+ Rendered /Users/seurdge/projects/commenteux/app/views/commenteux/notes/index.html.erb within layouts/application (2.3ms)
800
+ Completed 500 Internal Server Error in 11ms
801
+
802
+ ActionView::Template::Error (invalid argument to TimeZone[]: :local):
803
+ 17: <%= user_lookup(comment.user_id) %>
804
+ 18: </td>
805
+ 19: <td>
806
+ 20: <%= comment.created_at.in_time_zone(:local).to_date %>
807
+ 21: </td>
808
+ 22: </tr>
809
+ 23: <% end %>
810
+ activesupport (4.0.4) lib/active_support/values/time_zone.rb:390:in `[]'
811
+ activesupport (4.0.4) lib/active_support/core_ext/time/zones.rb:58:in `find_zone!'
812
+ activesupport (4.0.4) lib/active_support/core_ext/time/zones.rb:91:in `in_time_zone'
813
+ activesupport (4.0.4) lib/active_support/time_with_zone.rb:73:in `in_time_zone'
814
+ /Users/seurdge/projects/commenteux/app/views/commenteux/notes/index.html.erb:20:in `block in ___sers_seurdge_projects_commenteux_app_views_commenteux_notes_index_html_erb__1925442965267101584_70184894152860'
815
+ /Users/seurdge/projects/commenteux/app/views/commenteux/notes/index.html.erb:11:in `each'
816
+ /Users/seurdge/projects/commenteux/app/views/commenteux/notes/index.html.erb:11:in `___sers_seurdge_projects_commenteux_app_views_commenteux_notes_index_html_erb__1925442965267101584_70184894152860'
817
+ actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render'
818
+ activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument'
819
+ actionpack (4.0.4) lib/action_view/template.rb:141:in `render'
820
+ actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
821
+ actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
822
+ activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument'
823
+ activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
824
+ activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument'
825
+ actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
826
+ actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
827
+ actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
828
+ actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
829
+ actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:17:in `render'
830
+ actionpack (4.0.4) lib/action_view/renderer/renderer.rb:42:in `render_template'
831
+ actionpack (4.0.4) lib/action_view/renderer/renderer.rb:23:in `render'
832
+ actionpack (4.0.4) lib/abstract_controller/rendering.rb:127:in `_render_template'
833
+ actionpack (4.0.4) lib/action_controller/metal/streaming.rb:219:in `_render_template'
834
+ actionpack (4.0.4) lib/abstract_controller/rendering.rb:120:in `render_to_body'
835
+ actionpack (4.0.4) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
836
+ actionpack (4.0.4) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
837
+ actionpack (4.0.4) lib/abstract_controller/rendering.rb:97:in `render'
838
+ actionpack (4.0.4) lib/action_controller/metal/rendering.rb:16:in `render'
839
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
840
+ activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
841
+ /Users/seurdge/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
842
+ activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `ms'
843
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
844
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
845
+ activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
846
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:40:in `render'
847
+ actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
848
+ actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
849
+ actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action'
850
+ actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action'
851
+ actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
852
+ activesupport (4.0.4) lib/active_support/callbacks.rb:383:in `_run__1068904979117623922__process_action__callbacks'
853
+ activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks'
854
+ actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action'
855
+ actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action'
856
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
857
+ activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument'
858
+ activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
859
+ activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument'
860
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
861
+ actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
862
+ activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
863
+ actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process'
864
+ actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process'
865
+ actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch'
866
+ actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
867
+ actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action'
868
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `call'
869
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
870
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call'
871
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
872
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `each'
873
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call'
874
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call'
875
+ railties (4.0.4) lib/rails/engine.rb:511:in `call'
876
+ railties (4.0.4) lib/rails/railtie/configurable.rb:30:in `method_missing'
877
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
878
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `each'
879
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call'
880
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call'
881
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
882
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
883
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
884
+ actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
885
+ actionpack (4.0.4) lib/action_dispatch/middleware/flash.rb:241:in `call'
886
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
887
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
888
+ actionpack (4.0.4) lib/action_dispatch/middleware/cookies.rb:486:in `call'
889
+ activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call'
890
+ activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
891
+ activerecord (4.0.4) lib/active_record/migration.rb:373:in `call'
892
+ actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
893
+ activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__2321536452208593302__call__callbacks'
894
+ activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks'
895
+ actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
896
+ actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call'
897
+ actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
898
+ actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
899
+ actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
900
+ railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app'
901
+ railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call'
902
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
903
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged'
904
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged'
905
+ railties (4.0.4) lib/rails/rack/logger.rb:20:in `call'
906
+ actionpack (4.0.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
907
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
908
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
909
+ activesupport (4.0.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
910
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
911
+ actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call'
912
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
913
+ railties (4.0.4) lib/rails/engine.rb:511:in `call'
914
+ railties (4.0.4) lib/rails/application.rb:97:in `call'
915
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
916
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
917
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
918
+ /Users/seurdge/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
919
+ /Users/seurdge/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
920
+ /Users/seurdge/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
921
+
922
+
923
+ Rendered /Users/seurdge/.rvm/gems/ruby-2.0.0-p353@notes/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
924
+ Rendered /Users/seurdge/.rvm/gems/ruby-2.0.0-p353@notes/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
925
+ Rendered /Users/seurdge/.rvm/gems/ruby-2.0.0-p353@notes/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.8ms)
926
+
927
+
928
+ Started GET "/commenteux/dummy_model/1" for 127.0.0.1 at 2014-03-21 11:39:32 -0400
929
+ Processing by Commenteux::NotesController#index as HTML
930
+ Parameters: {"resource"=>"dummy_model", "resource_id"=>"1"}
931
+ DummyModel Load (0.4ms) SELECT `dummy_models`.* FROM `dummy_models` WHERE `dummy_models`.`id` = 1 LIMIT 1
932
+ DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call #load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call #to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/seurdge/projects/commenteux/app/controllers/commenteux/notes_controller.rb:14)
933
+ Comment Load (0.7ms) SELECT `comments`.* FROM `comments` WHERE `comments`.`commentable_id` = 1 AND `comments`.`commentable_type` = 'DummyModel' ORDER BY created_at ASC
934
+ Rendered /Users/seurdge/projects/commenteux/app/views/commenteux/notes/index.html.erb within layouts/application (6.6ms)
935
+ Completed 200 OK in 369ms (Views: 363.0ms | ActiveRecord: 1.1ms)
936
+
937
+
938
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-03-21 11:39:32 -0400
939
+
940
+
941
+ Started GET "/assets/commenteux/application.js?body=1" for 127.0.0.1 at 2014-03-21 11:39:32 -0400
942
+
943
+
944
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-21 11:39:32 -0400
945
+
946
+
947
+ Started GET "/commenteux/dummy_model/1" for 127.0.0.1 at 2014-03-21 11:39:57 -0400
948
+ Processing by Commenteux::NotesController#index as HTML
949
+ Parameters: {"resource"=>"dummy_model", "resource_id"=>"1"}
950
+ DummyModel Load (0.4ms) SELECT `dummy_models`.* FROM `dummy_models` WHERE `dummy_models`.`id` = 1 LIMIT 1
951
+ DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call #load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call #to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/seurdge/projects/commenteux/app/controllers/commenteux/notes_controller.rb:14)
952
+ Comment Load (0.5ms) SELECT `comments`.* FROM `comments` WHERE `comments`.`commentable_id` = 1 AND `comments`.`commentable_type` = 'DummyModel' ORDER BY created_at ASC
953
+ Rendered /Users/seurdge/projects/commenteux/app/views/commenteux/notes/index.html.erb within layouts/application (2.1ms)
954
+ Completed 200 OK in 13ms (Views: 7.2ms | ActiveRecord: 0.8ms)
955
+
956
+
957
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-21 11:39:58 -0400
958
+
959
+
960
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-03-21 11:39:58 -0400
961
+
962
+
963
+ Started GET "/commenteux/dummy_model/1" for 127.0.0.1 at 2014-03-21 11:42:18 -0400
964
+ Processing by Commenteux::NotesController#index as HTML
965
+ Parameters: {"resource"=>"dummy_model", "resource_id"=>"1"}
966
+ DummyModel Load (0.4ms) SELECT `dummy_models`.* FROM `dummy_models` WHERE `dummy_models`.`id` = 1 LIMIT 1
967
+ DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call #load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call #to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/seurdge/projects/commenteux/app/controllers/commenteux/notes_controller.rb:14)
968
+ Comment Load (0.6ms) SELECT `comments`.* FROM `comments` WHERE `comments`.`commentable_id` = 1 AND `comments`.`commentable_type` = 'DummyModel' ORDER BY created_at ASC
969
+ Rendered /Users/seurdge/projects/commenteux/app/views/commenteux/notes/index.html.erb within layouts/application (1.6ms)
970
+ Completed 500 Internal Server Error in 9ms
971
+
972
+ ActionView::Template::Error (undefined method `default_timezone' for nil:NilClass):
973
+ 17: <%= user_lookup(comment.user_id) %>
974
+ 18: </td>
975
+ 19: <td>
976
+ 20: <%= comment.created_at.in_time_zone(config.active_record.default_timezone) %>
977
+ 21: </td>
978
+ 22: </tr>
979
+ 23: <% end %>
980
+ /Users/seurdge/projects/commenteux/app/views/commenteux/notes/index.html.erb:20:in `block in ___sers_seurdge_projects_commenteux_app_views_commenteux_notes_index_html_erb__1925442965267101584_70184883938840'
981
+ /Users/seurdge/projects/commenteux/app/views/commenteux/notes/index.html.erb:11:in `each'
982
+ /Users/seurdge/projects/commenteux/app/views/commenteux/notes/index.html.erb:11:in `___sers_seurdge_projects_commenteux_app_views_commenteux_notes_index_html_erb__1925442965267101584_70184883938840'
983
+ actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render'
984
+ activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument'
985
+ actionpack (4.0.4) lib/action_view/template.rb:141:in `render'
986
+ actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
987
+ actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
988
+ activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument'
989
+ activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
990
+ activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument'
991
+ actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
992
+ actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
993
+ actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
994
+ actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
995
+ actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:17:in `render'
996
+ actionpack (4.0.4) lib/action_view/renderer/renderer.rb:42:in `render_template'
997
+ actionpack (4.0.4) lib/action_view/renderer/renderer.rb:23:in `render'
998
+ actionpack (4.0.4) lib/abstract_controller/rendering.rb:127:in `_render_template'
999
+ actionpack (4.0.4) lib/action_controller/metal/streaming.rb:219:in `_render_template'
1000
+ actionpack (4.0.4) lib/abstract_controller/rendering.rb:120:in `render_to_body'
1001
+ actionpack (4.0.4) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
1002
+ actionpack (4.0.4) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
1003
+ actionpack (4.0.4) lib/abstract_controller/rendering.rb:97:in `render'
1004
+ actionpack (4.0.4) lib/action_controller/metal/rendering.rb:16:in `render'
1005
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
1006
+ activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
1007
+ /Users/seurdge/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
1008
+ activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `ms'
1009
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
1010
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
1011
+ activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
1012
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:40:in `render'
1013
+ actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
1014
+ actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
1015
+ actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action'
1016
+ actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action'
1017
+ actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1018
+ activesupport (4.0.4) lib/active_support/callbacks.rb:383:in `_run__1068904979117623922__process_action__callbacks'
1019
+ activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks'
1020
+ actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action'
1021
+ actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action'
1022
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1023
+ activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument'
1024
+ activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1025
+ activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument'
1026
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1027
+ actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
1028
+ activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1029
+ actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process'
1030
+ actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process'
1031
+ actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch'
1032
+ actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1033
+ actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action'
1034
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `call'
1035
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1036
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call'
1037
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
1038
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `each'
1039
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call'
1040
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call'
1041
+ railties (4.0.4) lib/rails/engine.rb:511:in `call'
1042
+ railties (4.0.4) lib/rails/railtie/configurable.rb:30:in `method_missing'
1043
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
1044
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `each'
1045
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call'
1046
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call'
1047
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1048
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1049
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1050
+ actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1051
+ actionpack (4.0.4) lib/action_dispatch/middleware/flash.rb:241:in `call'
1052
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1053
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1054
+ actionpack (4.0.4) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1055
+ activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call'
1056
+ activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1057
+ activerecord (4.0.4) lib/active_record/migration.rb:373:in `call'
1058
+ actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1059
+ activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__2321536452208593302__call__callbacks'
1060
+ activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks'
1061
+ actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1062
+ actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1063
+ actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1064
+ actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1065
+ actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1066
+ railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app'
1067
+ railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call'
1068
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1069
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged'
1070
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged'
1071
+ railties (4.0.4) lib/rails/rack/logger.rb:20:in `call'
1072
+ actionpack (4.0.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1073
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1074
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1075
+ activesupport (4.0.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1076
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1077
+ actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call'
1078
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1079
+ railties (4.0.4) lib/rails/engine.rb:511:in `call'
1080
+ railties (4.0.4) lib/rails/application.rb:97:in `call'
1081
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1082
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1083
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1084
+ /Users/seurdge/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1085
+ /Users/seurdge/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1086
+ /Users/seurdge/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1087
+
1088
+
1089
+ Rendered /Users/seurdge/.rvm/gems/ruby-2.0.0-p353@notes/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
1090
+ Rendered /Users/seurdge/.rvm/gems/ruby-2.0.0-p353@notes/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
1091
+ Rendered /Users/seurdge/.rvm/gems/ruby-2.0.0-p353@notes/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.4ms)
1092
+
1093
+
1094
+ Started GET "/commenteux/dummy_model/1" for 127.0.0.1 at 2014-03-21 11:43:34 -0400
1095
+ Processing by Commenteux::NotesController#index as HTML
1096
+ Parameters: {"resource"=>"dummy_model", "resource_id"=>"1"}
1097
+ DummyModel Load (0.3ms) SELECT `dummy_models`.* FROM `dummy_models` WHERE `dummy_models`.`id` = 1 LIMIT 1
1098
+ DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call #load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call #to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/seurdge/projects/commenteux/app/controllers/commenteux/notes_controller.rb:14)
1099
+ Comment Load (0.4ms) SELECT `comments`.* FROM `comments` WHERE `comments`.`commentable_id` = 1 AND `comments`.`commentable_type` = 'DummyModel' ORDER BY created_at ASC
1100
+ Rendered /Users/seurdge/projects/commenteux/app/views/commenteux/notes/index.html.erb within layouts/application (7.6ms)
1101
+ Completed 200 OK in 17ms (Views: 12.1ms | ActiveRecord: 0.7ms)
1102
+
1103
+
1104
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-21 11:43:34 -0400
1105
+
1106
+
1107
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-03-21 11:43:34 -0400
1108
+
1109
+
1110
+ Started GET "/commenteux/dummy_model/1" for 127.0.0.1 at 2014-03-21 11:50:47 -0400
1111
+ Processing by Commenteux::NotesController#index as HTML
1112
+ Parameters: {"resource"=>"dummy_model", "resource_id"=>"1"}
1113
+ DummyModel Load (0.4ms) SELECT `dummy_models`.* FROM `dummy_models` WHERE `dummy_models`.`id` = 1 LIMIT 1
1114
+ DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call #load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call #to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/seurdge/projects/commenteux/app/controllers/commenteux/notes_controller.rb:14)
1115
+ Comment Load (0.5ms) SELECT `comments`.* FROM `comments` WHERE `comments`.`commentable_id` = 1 AND `comments`.`commentable_type` = 'DummyModel' ORDER BY created_at ASC
1116
+ Rendered /Users/seurdge/projects/commenteux/app/views/commenteux/notes/index.html.erb within layouts/application (3.9ms)
1117
+ Completed 200 OK in 15ms (Views: 9.7ms | ActiveRecord: 0.9ms)
1118
+
1119
+
1120
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-21 11:50:47 -0400
1121
+
1122
+
1123
+ Started GET "/assets/commenteux/application.js?body=1" for 127.0.0.1 at 2014-03-21 11:50:47 -0400
1124
+
1125
+
1126
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-03-21 11:50:47 -0400
1127
+
1128
+
1129
+ Started GET "/commenteux/dummy_model/1" for 127.0.0.1 at 2014-03-21 11:51:50 -0400
1130
+ Processing by Commenteux::NotesController#index as HTML
1131
+ Parameters: {"resource"=>"dummy_model", "resource_id"=>"1"}
1132
+ DummyModel Load (0.3ms) SELECT `dummy_models`.* FROM `dummy_models` WHERE `dummy_models`.`id` = 1 LIMIT 1
1133
+ DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call #load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call #to_a (e.g. `Post.where(published: true).to_a`). (called from index at /Users/seurdge/projects/commenteux/app/controllers/commenteux/notes_controller.rb:14)
1134
+ Comment Load (0.5ms) SELECT `comments`.* FROM `comments` WHERE `comments`.`commentable_id` = 1 AND `comments`.`commentable_type` = 'DummyModel' ORDER BY created_at ASC
1135
+ Rendered /Users/seurdge/projects/commenteux/app/views/commenteux/notes/index.html.erb within layouts/application (4.7ms)
1136
+ Completed 200 OK in 16ms (Views: 9.9ms | ActiveRecord: 0.8ms)
1137
+
1138
+
1139
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-21 11:51:50 -0400
1140
+
1141
+
1142
+ Started GET "/assets/commenteux/application.js?body=1" for 127.0.0.1 at 2014-03-21 11:51:50 -0400
1143
+
1144
+
1145
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-03-21 11:51:50 -0400
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: commenteux
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Groupe Fungo inc.