db_notes_eng 0.0.1

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.
Files changed (108) hide show
  1. checksums.yaml +15 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +3 -0
  4. data/Rakefile +40 -0
  5. data/app/assets/images/db_notes_eng/glyphicons-halflings-white.png +0 -0
  6. data/app/assets/images/db_notes_eng/glyphicons-halflings.png +0 -0
  7. data/app/assets/images/db_notes_eng/profile_b32.png +0 -0
  8. data/app/assets/javascripts/db_notes_eng/bootstrap.js +2276 -0
  9. data/app/assets/javascripts/model_info.js +2 -0
  10. data/app/assets/stylesheets/db_notes_eng/bootstrap-responsive.css +1109 -0
  11. data/app/assets/stylesheets/db_notes_eng/bootstrap.css +6158 -0
  12. data/app/assets/stylesheets/model_info.css +4 -0
  13. data/app/controllers/model_info_controller.rb +169 -0
  14. data/app/helpers/model_info_helper.rb +2 -0
  15. data/app/models/comment.rb +4 -0
  16. data/app/models/note.rb +4 -0
  17. data/app/views/model_info/DBNotes.html.erb +418 -0
  18. data/config/routes.rb +31 -0
  19. data/db/migrate/20130430073401_create_notes.rb +12 -0
  20. data/db/migrate/20130430073442_create_comments.rb +11 -0
  21. data/lib/db_notes_eng/engine.rb +4 -0
  22. data/lib/db_notes_eng/version.rb +3 -0
  23. data/lib/db_notes_eng.rb +4 -0
  24. data/lib/tasks/db_notes_eng_tasks.rake +4 -0
  25. data/test/db_notes_eng_test.rb +7 -0
  26. data/test/dummy/README.rdoc +261 -0
  27. data/test/dummy/Rakefile +7 -0
  28. data/test/dummy/app/assets/javascripts/application.js +15 -0
  29. data/test/dummy/app/assets/javascripts/posts.js +2 -0
  30. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  31. data/test/dummy/app/assets/stylesheets/posts.css +4 -0
  32. data/test/dummy/app/assets/stylesheets/scaffold.css +56 -0
  33. data/test/dummy/app/controllers/application_controller.rb +3 -0
  34. data/test/dummy/app/controllers/posts_controller.rb +83 -0
  35. data/test/dummy/app/helpers/application_helper.rb +2 -0
  36. data/test/dummy/app/helpers/posts_helper.rb +2 -0
  37. data/test/dummy/app/models/post.rb +3 -0
  38. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  39. data/test/dummy/app/views/posts/_form.html.erb +29 -0
  40. data/test/dummy/app/views/posts/edit.html.erb +6 -0
  41. data/test/dummy/app/views/posts/index.html.erb +27 -0
  42. data/test/dummy/app/views/posts/new.html.erb +5 -0
  43. data/test/dummy/app/views/posts/show.html.erb +20 -0
  44. data/test/dummy/config/application.rb +59 -0
  45. data/test/dummy/config/boot.rb +10 -0
  46. data/test/dummy/config/database.yml +25 -0
  47. data/test/dummy/config/environment.rb +5 -0
  48. data/test/dummy/config/environments/development.rb +37 -0
  49. data/test/dummy/config/environments/production.rb +67 -0
  50. data/test/dummy/config/environments/test.rb +37 -0
  51. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  52. data/test/dummy/config/initializers/inflections.rb +15 -0
  53. data/test/dummy/config/initializers/mime_types.rb +5 -0
  54. data/test/dummy/config/initializers/secret_token.rb +7 -0
  55. data/test/dummy/config/initializers/session_store.rb +8 -0
  56. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  57. data/test/dummy/config/locales/en.yml +5 -0
  58. data/test/dummy/config/routes.rb +61 -0
  59. data/test/dummy/config.ru +4 -0
  60. data/test/dummy/db/development.sqlite3 +0 -0
  61. data/test/dummy/db/migrate/20130430074432_create_posts.rb +11 -0
  62. data/test/dummy/db/schema.rb +41 -0
  63. data/test/dummy/log/development.log +930 -0
  64. data/test/dummy/public/404.html +26 -0
  65. data/test/dummy/public/422.html +26 -0
  66. data/test/dummy/public/500.html +25 -0
  67. data/test/dummy/public/favicon.ico +0 -0
  68. data/test/dummy/script/rails +6 -0
  69. data/test/dummy/test/fixtures/posts.yml +11 -0
  70. data/test/dummy/test/functional/posts_controller_test.rb +49 -0
  71. data/test/dummy/test/unit/helpers/posts_helper_test.rb +4 -0
  72. data/test/dummy/test/unit/post_test.rb +7 -0
  73. data/test/dummy/tmp/cache/assets/C3D/0B0/sprockets%2Fa90e1f5537e716291e61838559766d78 +0 -0
  74. data/test/dummy/tmp/cache/assets/C8C/B80/sprockets%2F371bf96e99717688ed7313a0c53f4212 +0 -0
  75. data/test/dummy/tmp/cache/assets/CC7/220/sprockets%2Fd066c004d1fd26ae76a61303a7a18145 +0 -0
  76. data/test/dummy/tmp/cache/assets/CD5/B70/sprockets%2F416150dc3ac35079c94273cc46e90aa6 +0 -0
  77. data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  78. data/test/dummy/tmp/cache/assets/CF0/1D0/sprockets%2F6fc757c2c8329244ca95d6909865bbc2 +0 -0
  79. data/test/dummy/tmp/cache/assets/CF5/6A0/sprockets%2F1aa7a3f72cf1fd22d8125d93130035c1 +0 -0
  80. data/test/dummy/tmp/cache/assets/CFE/360/sprockets%2Fdad738c4ee7026a9c1471232daa27160 +0 -0
  81. data/test/dummy/tmp/cache/assets/D1A/310/sprockets%2F5384ad85f52d3272dbc64d46ef3876a4 +0 -0
  82. data/test/dummy/tmp/cache/assets/D1A/5C0/sprockets%2Fa9d7786d843709f1e0eba4c803b3e926 +0 -0
  83. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  84. data/test/dummy/tmp/cache/assets/D45/A20/sprockets%2F00cc94fb621e90908c612ab75f6c79ff +0 -0
  85. data/test/dummy/tmp/cache/assets/D47/420/sprockets%2Fce79b69cc35dc75d80b184119b548ba5 +0 -0
  86. data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  87. data/test/dummy/tmp/cache/assets/D4F/9C0/sprockets%2Fdb040063395de8ff921e67da9c59f7f2 +0 -0
  88. data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  89. data/test/dummy/tmp/cache/assets/D6E/5B0/sprockets%2Fe70a8df5eea2403f7f21a0861d7673de +0 -0
  90. data/test/dummy/tmp/cache/assets/D73/520/sprockets%2F0f7e0df9d8e81ff186c2b98e02323a1d +0 -0
  91. data/test/dummy/tmp/cache/assets/D8E/420/sprockets%2Fe206bb01c88abc16f8095dd2bca81a82 +0 -0
  92. data/test/dummy/tmp/cache/assets/D9C/CD0/sprockets%2Fc85016e7bbd4f3adbb7635d01f85d39b +0 -0
  93. data/test/dummy/tmp/cache/assets/DD5/3D0/sprockets%2Fd276ebd7d13e1815e1fb59c87aad6cd7 +0 -0
  94. data/test/dummy/tmp/cache/assets/DD5/C70/sprockets%2Fd6e86b01d2f70ca9839df0b4d7eda75d +0 -0
  95. data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  96. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  97. data/test/dummy/tmp/cache/assets/E05/F10/sprockets%2Ffb396321cce1c7ea39cefed54f4a962e +0 -0
  98. data/test/dummy/tmp/cache/assets/E28/F30/sprockets%2F7af5f6afe51edfc7e6cd22b3f0a560e0 +0 -0
  99. data/test/dummy/tmp/pids/server.pid +1 -0
  100. data/test/fixtures/comments.yml +11 -0
  101. data/test/fixtures/notes.yml +13 -0
  102. data/test/functional/model_info_controller_test.rb +9 -0
  103. data/test/integration/navigation_test.rb +10 -0
  104. data/test/test_helper.rb +15 -0
  105. data/test/unit/comment_test.rb +7 -0
  106. data/test/unit/helpers/model_info_helper_test.rb +4 -0
  107. data/test/unit/note_test.rb +7 -0
  108. metadata +274 -0
@@ -0,0 +1,930 @@
1
+ Connecting to database specified by database.yml
2
+  (0.0ms) select sqlite_version(*)
3
+  (153.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
4
+  (85.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
6
+ Migrating to CreateNotes (20130430073401)
7
+  (0.0ms) begin transaction
8
+  (1.0ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "column_name" varchar(255), "note_text" text, "table_name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
9
+  (0.0ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130430073401')
10
+  (150.0ms) commit transaction
11
+ Migrating to CreateComments (20130430073442)
12
+  (0.0ms) begin transaction
13
+  (1.0ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "comment_text" text, "note_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
14
+  (0.0ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130430073442')
15
+  (107.0ms) commit transaction
16
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
17
+ Connecting to database specified by database.yml
18
+ Connecting to database specified by database.yml
19
+
20
+
21
+ Started GET "/DBNotes" for 127.0.0.1 at 2013-04-30 13:15:55 +0530
22
+
23
+ LoadError (cannot load such file -- IcentrisJira):
24
+ activesupport (3.2.13) lib/active_support/dependencies.rb:251:in `require'
25
+ activesupport (3.2.13) lib/active_support/dependencies.rb:251:in `block in require'
26
+ activesupport (3.2.13) lib/active_support/dependencies.rb:234:in `block in load_dependency'
27
+ activesupport (3.2.13) lib/active_support/dependencies.rb:639:in `new_constants_in'
28
+ activesupport (3.2.13) lib/active_support/dependencies.rb:234:in `load_dependency'
29
+ activesupport (3.2.13) lib/active_support/dependencies.rb:251:in `require'
30
+ C:/Sites/DBNotesEng/app/controllers/model_info_controller.rb:84:in `<class:ModelInfoController>'
31
+ C:/Sites/DBNotesEng/app/controllers/model_info_controller.rb:5:in `<top (required)>'
32
+ activesupport (3.2.13) lib/active_support/dependencies.rb:469:in `load'
33
+ activesupport (3.2.13) lib/active_support/dependencies.rb:469:in `block in load_file'
34
+ activesupport (3.2.13) lib/active_support/dependencies.rb:639:in `new_constants_in'
35
+ activesupport (3.2.13) lib/active_support/dependencies.rb:468:in `load_file'
36
+ activesupport (3.2.13) lib/active_support/dependencies.rb:353:in `require_or_load'
37
+ activesupport (3.2.13) lib/active_support/dependencies.rb:502:in `load_missing_constant'
38
+ activesupport (3.2.13) lib/active_support/dependencies.rb:192:in `block in const_missing'
39
+ activesupport (3.2.13) lib/active_support/dependencies.rb:190:in `each'
40
+ activesupport (3.2.13) lib/active_support/dependencies.rb:190:in `const_missing'
41
+ activesupport (3.2.13) lib/active_support/inflector/methods.rb:230:in `block in constantize'
42
+ activesupport (3.2.13) lib/active_support/inflector/methods.rb:229:in `each'
43
+ activesupport (3.2.13) lib/active_support/inflector/methods.rb:229:in `constantize'
44
+ activesupport (3.2.13) lib/active_support/dependencies.rb:554:in `get'
45
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
46
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:54:in `controller'
47
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:32:in `call'
48
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
49
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
50
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
51
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
52
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
53
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
54
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
55
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
56
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
57
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
58
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
59
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
60
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
61
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
62
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
63
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
64
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__167135009__call__975014834__callbacks'
65
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
66
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
67
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
68
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
69
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
70
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
71
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
72
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
73
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
74
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
75
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
76
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
77
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
78
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
79
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
80
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
81
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
82
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
83
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
84
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
85
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
86
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
87
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
88
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
89
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
90
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
91
+
92
+
93
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
94
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (23.0ms)
95
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (125.0ms)
96
+
97
+
98
+ Started GET "/DBNotes" for 127.0.0.1 at 2013-04-30 13:16:59 +0530
99
+ Processing by ModelInfoController#DBNotes as HTML
100
+ Completed 500 Internal Server Error in 38ms
101
+
102
+ LoadError (No such file to load -- IcentrisJira):
103
+ activesupport (3.2.13) lib/active_support/dependencies.rb:317:in `rescue in depend_on'
104
+ activesupport (3.2.13) lib/active_support/dependencies.rb:312:in `depend_on'
105
+ activesupport (3.2.13) lib/active_support/dependencies.rb:225:in `require_dependency'
106
+ railties (3.2.13) lib/rails/engine.rb:439:in `block (2 levels) in eager_load!'
107
+ railties (3.2.13) lib/rails/engine.rb:438:in `each'
108
+ railties (3.2.13) lib/rails/engine.rb:438:in `block in eager_load!'
109
+ railties (3.2.13) lib/rails/engine.rb:436:in `each'
110
+ railties (3.2.13) lib/rails/engine.rb:436:in `eager_load!'
111
+ railties (3.2.13) lib/rails/application/railties.rb:8:in `each'
112
+ railties (3.2.13) lib/rails/application/railties.rb:8:in `all'
113
+ railties (3.2.13) lib/rails/engine.rb:434:in `eager_load!'
114
+ C:/Sites/DBNotesEng/app/controllers/model_info_controller.rb:26:in `DBNotes'
115
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
116
+ actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
117
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
118
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
119
+ activesupport (3.2.13) lib/active_support/callbacks.rb:414:in `_run__7300704__process_action__520699638__callbacks'
120
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
121
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
122
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
123
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
124
+ actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
125
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
126
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
127
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
128
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
129
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
130
+ actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
131
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
132
+ actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
133
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
134
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
135
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
136
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
137
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
138
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
139
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
140
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
141
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
142
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
143
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
144
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
145
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
146
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
147
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
148
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
149
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
150
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
151
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
152
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
153
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
154
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
155
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
156
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__167135009__call__975014834__callbacks'
157
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
158
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
159
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
160
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
161
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
162
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
163
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
164
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
165
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
166
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
167
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
168
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
169
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
170
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
171
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
172
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
173
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
174
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
175
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
176
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
177
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
178
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
179
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
180
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
181
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
182
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
183
+
184
+
185
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
186
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
187
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (33.0ms)
188
+
189
+
190
+ Started GET "/DBNotes" for 127.0.0.1 at 2013-04-30 13:18:39 +0530
191
+ Processing by ModelInfoController#DBNotes as HTML
192
+ Completed 500 Internal Server Error in 37ms
193
+
194
+ LoadError (No such file to load -- IcentrisJira):
195
+ activesupport (3.2.13) lib/active_support/dependencies.rb:317:in `rescue in depend_on'
196
+ activesupport (3.2.13) lib/active_support/dependencies.rb:312:in `depend_on'
197
+ activesupport (3.2.13) lib/active_support/dependencies.rb:225:in `require_dependency'
198
+ railties (3.2.13) lib/rails/engine.rb:439:in `block (2 levels) in eager_load!'
199
+ railties (3.2.13) lib/rails/engine.rb:438:in `each'
200
+ railties (3.2.13) lib/rails/engine.rb:438:in `block in eager_load!'
201
+ railties (3.2.13) lib/rails/engine.rb:436:in `each'
202
+ railties (3.2.13) lib/rails/engine.rb:436:in `eager_load!'
203
+ railties (3.2.13) lib/rails/application/railties.rb:8:in `each'
204
+ railties (3.2.13) lib/rails/application/railties.rb:8:in `all'
205
+ railties (3.2.13) lib/rails/engine.rb:434:in `eager_load!'
206
+ C:/Sites/DBNotesEng/app/controllers/model_info_controller.rb:26:in `DBNotes'
207
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
208
+ actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
209
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
210
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
211
+ activesupport (3.2.13) lib/active_support/callbacks.rb:414:in `_run__7300704__process_action__520699638__callbacks'
212
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
213
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
214
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
215
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
216
+ actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
217
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
218
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
219
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
220
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
221
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
222
+ actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
223
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
224
+ actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
225
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
226
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
227
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
228
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
229
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
230
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
231
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
232
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
233
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
234
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
235
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
236
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
237
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
238
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
239
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
240
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
241
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
242
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
243
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
244
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
245
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
246
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
247
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
248
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__167135009__call__975014834__callbacks'
249
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
250
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
251
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
252
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
253
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
254
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
255
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
256
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
257
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
258
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
259
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
260
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
261
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
262
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
263
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
264
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
265
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
266
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
267
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
268
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
269
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
270
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
271
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
272
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
273
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
274
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
275
+
276
+
277
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
278
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
279
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (32.0ms)
280
+ Connecting to database specified by database.yml
281
+ Connecting to database specified by database.yml
282
+
283
+
284
+ Started GET "/DBNotes" for 127.0.0.1 at 2013-04-30 13:19:49 +0530
285
+ Processing by ModelInfoController#DBNotes as HTML
286
+ Rendered C:/Sites/DBNotesEng/app/views/model_info/DBNotes.html.erb within layouts/application (298.0ms)
287
+ Completed 500 Internal Server Error in 439ms
288
+
289
+ ActionView::Template::Error (Could not find table 'posts'):
290
+ 44: <div id="collapse<%= m%>" class="accordion-body collapse">
291
+ 45: <div class="accordion-inner">
292
+ 46: <ul>
293
+ 47: <% m.column_names.each do |c| %>
294
+ 48: <% unless ['id', 'created_at', 'updated_at'].include? c %>
295
+ 49: <li><a id="<%= m %>_<%= c %>_link" class="text-success" href="#" onclick="update_breadcrumbs('<%= m %>', '<%= c %>');show_notes_for('<%= m %>', '<%= c %>');add_selected_icon(this);"><%= c %></a> <span class="badge badge-info pull-right" id="<%= m %>_<%= c %>_note_count">0</span></li>
296
+ 50: <% end %>
297
+ activerecord (3.2.13) lib/active_record/connection_adapters/sqlite_adapter.rb:472:in `table_structure'
298
+ activerecord (3.2.13) lib/active_record/connection_adapters/sqlite_adapter.rb:346:in `columns'
299
+ activerecord (3.2.13) lib/active_record/connection_adapters/schema_cache.rb:12:in `block in initialize'
300
+ activerecord (3.2.13) lib/active_record/model_schema.rb:228:in `yield'
301
+ activerecord (3.2.13) lib/active_record/model_schema.rb:228:in `default'
302
+ activerecord (3.2.13) lib/active_record/model_schema.rb:228:in `columns'
303
+ activerecord (3.2.13) lib/active_record/model_schema.rb:248:in `column_names'
304
+ C:/Sites/DBNotesEng/app/views/model_info/DBNotes.html.erb:47:in `block in _____ites____otes_ng_app_views_model_info____otes_html_erb__217257146_29524368'
305
+ C:/Sites/DBNotesEng/app/views/model_info/DBNotes.html.erb:38:in `each'
306
+ C:/Sites/DBNotesEng/app/views/model_info/DBNotes.html.erb:38:in `_____ites____otes_ng_app_views_model_info____otes_html_erb__217257146_29524368'
307
+ actionpack (3.2.13) lib/action_view/template.rb:145:in `block in render'
308
+ activesupport (3.2.13) lib/active_support/notifications.rb:125:in `instrument'
309
+ actionpack (3.2.13) lib/action_view/template.rb:143:in `render'
310
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
311
+ actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
312
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
313
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
314
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
315
+ actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
316
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
317
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
318
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
319
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:18:in `render'
320
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
321
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
322
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
323
+ actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
324
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
325
+ actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
326
+ actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
327
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
328
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
329
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
330
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
331
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
332
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
333
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
334
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
335
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
336
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
337
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
338
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
339
+ actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
340
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
341
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
342
+ activesupport (3.2.13) lib/active_support/callbacks.rb:414:in `_run__236409329__process_action__816563688__callbacks'
343
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
344
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
345
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
346
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
347
+ actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
348
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
349
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
350
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
351
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
352
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
353
+ actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
354
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
355
+ actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
356
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
357
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
358
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
359
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
360
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
361
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
362
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
363
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
364
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
365
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
366
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
367
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
368
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
369
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
370
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
371
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
372
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
373
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
374
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
375
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
376
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
377
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
378
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
379
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__136884249__call__1055453806__callbacks'
380
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
381
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
382
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
383
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
384
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
385
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
386
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
387
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
388
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
389
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
390
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
391
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
392
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
393
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
394
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
395
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
396
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
397
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
398
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
399
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
400
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
401
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
402
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
403
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
404
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
405
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
406
+
407
+
408
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
409
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
410
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (33.0ms)
411
+ Connecting to database specified by database.yml
412
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
413
+ Migrating to CreatePosts (20130430074432)
414
+  (0.0ms) select sqlite_version(*)
415
+  (1.0ms) begin transaction
416
+  (1.0ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "content" text, "when" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
417
+  (0.0ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130430074432')
418
+  (114.0ms) commit transaction
419
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
420
+
421
+
422
+ Started GET "/DBNotes" for 127.0.0.1 at 2013-04-30 13:20:37 +0530
423
+ Processing by ModelInfoController#DBNotes as HTML
424
+ Rendered C:/Sites/DBNotesEng/app/views/model_info/DBNotes.html.erb within layouts/application (3.0ms)
425
+ Compiled posts.css (0ms) (pid 12208)
426
+ Compiled scaffold.css (0ms) (pid 12208)
427
+ Compiled application.css (119ms) (pid 12208)
428
+ Compiled jquery.js (3ms) (pid 12208)
429
+ Compiled jquery_ujs.js (0ms) (pid 12208)
430
+ Compiled posts.js (0ms) (pid 12208)
431
+ Compiled application.js (208ms) (pid 12208)
432
+ Completed 200 OK in 489ms (Views: 454.0ms | ActiveRecord: 2.0ms)
433
+
434
+
435
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-04-30 13:20:38 +0530
436
+ Served asset /posts.css - 200 OK (4ms)
437
+
438
+
439
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-04-30 13:20:38 +0530
440
+ Served asset /scaffold.css - 200 OK (3ms)
441
+
442
+
443
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-30 13:20:38 +0530
444
+ Served asset /application.css - 304 Not Modified (7ms)
445
+
446
+
447
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-30 13:20:38 +0530
448
+ Served asset /jquery.js - 304 Not Modified (4ms)
449
+
450
+
451
+ Started GET "/assets/db_notes_eng/bootstrap.css" for 127.0.0.1 at 2013-04-30 13:20:38 +0530
452
+ Compiled db_notes_eng/bootstrap.css (1ms) (pid 12208)
453
+ Served asset /db_notes_eng/bootstrap.css - 200 OK (117ms)
454
+
455
+
456
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-30 13:20:38 +0530
457
+ Served asset /jquery_ujs.js - 304 Not Modified (4ms)
458
+
459
+
460
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-04-30 13:20:38 +0530
461
+ Served asset /posts.js - 200 OK (3ms)
462
+
463
+
464
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-30 13:20:38 +0530
465
+ Served asset /application.js - 304 Not Modified (11ms)
466
+
467
+
468
+ Started GET "/assets/db_notes_eng/bootstrap.js" for 127.0.0.1 at 2013-04-30 13:20:38 +0530
469
+ Compiled db_notes_eng/bootstrap.js (0ms) (pid 12208)
470
+ Served asset /db_notes_eng/bootstrap.js - 200 OK (60ms)
471
+
472
+
473
+ Started GET "/assets/db_notes_eng/glyphicons-halflings-white.png" for 127.0.0.1 at 2013-04-30 13:20:38 +0530
474
+ Served asset /db_notes_eng/glyphicons-halflings-white.png - 200 OK (30ms)
475
+
476
+
477
+ Started GET "/get_table_notes_count" for 127.0.0.1 at 2013-04-30 13:20:39 +0530
478
+ Processing by ModelInfoController#get_table_notes_count as JSON
479
+ Note Load (20.0ms) select table_name, count(*) as note_count from Notes group by table_name
480
+ Completed 200 OK in 21ms (Views: 0.0ms | ActiveRecord: 20.0ms)
481
+
482
+
483
+ Started GET "/tables/Post/columns/author.json" for 127.0.0.1 at 2013-04-30 13:20:39 +0530
484
+ Processing by ModelInfoController#show_notes_for_column as JSON
485
+ Parameters: {"table"=>"Post", "column"=>"author"}
486
+ Note Load (0.0ms) SELECT "notes".* FROM "notes" WHERE "notes"."table_name" = 'Post' AND "notes"."column_name" = 'author'
487
+ Completed 200 OK in 105ms (Views: 0.0ms | ActiveRecord: 0.0ms)
488
+
489
+
490
+ Started GET "/get_column_notes_count" for 127.0.0.1 at 2013-04-30 13:20:39 +0530
491
+ Processing by ModelInfoController#get_column_notes_count as JSON
492
+ Note Load (1.0ms) select table_name, column_name, count(*) as note_count from Notes group by table_name, column_name
493
+ Completed 200 OK in 1ms (Views: 0.0ms | ActiveRecord: 1.0ms)
494
+
495
+
496
+ Started GET "/assets/db_notes_eng/glyphicons-halflings.png" for 127.0.0.1 at 2013-04-30 13:20:39 +0530
497
+ Served asset /db_notes_eng/glyphicons-halflings.png - 200 OK (32ms)
498
+
499
+
500
+ Started GET "/tables/Post/columns/content.json" for 127.0.0.1 at 2013-04-30 13:20:41 +0530
501
+ Processing by ModelInfoController#show_notes_for_column as JSON
502
+ Parameters: {"table"=>"Post", "column"=>"content"}
503
+ Note Load (1.0ms) SELECT "notes".* FROM "notes" WHERE "notes"."table_name" = 'Post' AND "notes"."column_name" = 'content'
504
+ Completed 200 OK in 1ms (Views: 0.0ms | ActiveRecord: 1.0ms)
505
+
506
+
507
+ Started GET "/tables/Post/columns/when.json" for 127.0.0.1 at 2013-04-30 13:20:42 +0530
508
+ Processing by ModelInfoController#show_notes_for_column as JSON
509
+ Parameters: {"table"=>"Post", "column"=>"when"}
510
+ Note Load (1.0ms) SELECT "notes".* FROM "notes" WHERE "notes"."table_name" = 'Post' AND "notes"."column_name" = 'when'
511
+ Completed 200 OK in 1ms (Views: 0.0ms | ActiveRecord: 1.0ms)
512
+
513
+
514
+ Started GET "/tables/Post/columns/author.json" for 127.0.0.1 at 2013-04-30 13:20:43 +0530
515
+ Processing by ModelInfoController#show_notes_for_column as JSON
516
+ Parameters: {"table"=>"Post", "column"=>"author"}
517
+ Note Load (0.0ms) SELECT "notes".* FROM "notes" WHERE "notes"."table_name" = 'Post' AND "notes"."column_name" = 'author'
518
+ Completed 200 OK in 2ms (Views: 0.0ms | ActiveRecord: 0.0ms)
519
+
520
+
521
+ Started GET "/is_user_logged_in" for 127.0.0.1 at 2013-04-30 13:20:44 +0530
522
+ Processing by ModelInfoController#is_user_logged_in as JSON
523
+ Completed 200 OK in 1ms (Views: 0.0ms | ActiveRecord: 0.0ms)
524
+
525
+
526
+ Started GET "/user_authenticate?username=jyothiprasad.ponduru&password=[FILTERED]" for 127.0.0.1 at 2013-04-30 13:20:52 +0530
527
+ Processing by ModelInfoController#user_authenticate as JSON
528
+ Parameters: {"username"=>"jyothiprasad.ponduru", "password"=>"[FILTERED]"}
529
+ Completed 200 OK in 3710ms (Views: 0.0ms | ActiveRecord: 0.0ms)
530
+
531
+
532
+ Started GET "/get_author_name" for 127.0.0.1 at 2013-04-30 13:20:55 +0530
533
+ Processing by ModelInfoController#get_author_name as JSON
534
+ Completed 200 OK in 1ms (Views: 0.0ms | ActiveRecord: 0.0ms)
535
+
536
+
537
+ Started GET "/is_user_logged_in" for 127.0.0.1 at 2013-04-30 13:21:01 +0530
538
+ Processing by ModelInfoController#is_user_logged_in as JSON
539
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
540
+
541
+
542
+ Started GET "/get_author_name" for 127.0.0.1 at 2013-04-30 13:21:01 +0530
543
+ Processing by ModelInfoController#get_author_name as JSON
544
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
545
+
546
+
547
+ Started GET "/add_note?table_name=Post&column_name=author&author=SaiJyuothiPrasad%20Ponduru&note_text=(HTMLEditor%20goes%20here%20.%20For%20now%20it%20is%20a%20textarea.)" for 127.0.0.1 at 2013-04-30 13:21:01 +0530
548
+ Processing by ModelInfoController#add_note as JSON
549
+ Parameters: {"table_name"=>"Post", "column_name"=>"author", "author"=>"SaiJyuothiPrasad Ponduru", "note_text"=>"(HTMLEditor goes here . For now it is a textarea.)"}
550
+  (0.0ms) begin transaction
551
+ SQL (125.0ms) INSERT INTO "notes" ("author", "column_name", "created_at", "note_text", "table_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["author", "SaiJyuothiPrasad Ponduru"], ["column_name", "author"], ["created_at", Tue, 30 Apr 2013 07:51:01 UTC +00:00], ["note_text", "(HTMLEditor goes here . For now it is a textarea.)"], ["table_name", "Post"], ["updated_at", Tue, 30 Apr 2013 07:51:01 UTC +00:00]]
552
+  (310.0ms) commit transaction
553
+ Completed 200 OK in 449ms (Views: 0.0ms | ActiveRecord: 435.0ms)
554
+
555
+
556
+ Started GET "/tables/Post/columns/author.json" for 127.0.0.1 at 2013-04-30 13:21:01 +0530
557
+ Processing by ModelInfoController#show_notes_for_column as JSON
558
+ Parameters: {"table"=>"Post", "column"=>"author"}
559
+ Note Load (1.0ms) SELECT "notes".* FROM "notes" WHERE "notes"."table_name" = 'Post' AND "notes"."column_name" = 'author'
560
+ Completed 500 Internal Server Error in 38ms
561
+
562
+ NoMethodError (undefined method `comments' for #<Note:0x3acae08>):
563
+ activemodel (3.2.13) lib/active_model/attribute_methods.rb:407:in `method_missing'
564
+ activerecord (3.2.13) lib/active_record/attribute_methods.rb:149:in `method_missing'
565
+ activemodel (3.2.13) lib/active_model/serialization.rb:133:in `block in serializable_add_includes'
566
+ activemodel (3.2.13) lib/active_model/serialization.rb:132:in `each'
567
+ activemodel (3.2.13) lib/active_model/serialization.rb:132:in `serializable_add_includes'
568
+ activemodel (3.2.13) lib/active_model/serialization.rb:87:in `serializable_hash'
569
+ activerecord (3.2.13) lib/active_record/serialization.rb:13:in `serializable_hash'
570
+ activemodel (3.2.13) lib/active_model/serializers/json.rb:96:in `as_json'
571
+ activesupport (3.2.13) lib/active_support/json/encoding.rb:55:in `block in as_json'
572
+ activesupport (3.2.13) lib/active_support/json/encoding.rb:77:in `check_for_circular_references'
573
+ activesupport (3.2.13) lib/active_support/json/encoding.rb:54:in `as_json'
574
+ activesupport (3.2.13) lib/active_support/json/encoding.rb:209:in `block in as_json'
575
+ activesupport (3.2.13) lib/active_support/json/encoding.rb:209:in `map'
576
+ activesupport (3.2.13) lib/active_support/json/encoding.rb:209:in `as_json'
577
+ activerecord (3.2.13) lib/active_record/relation.rb:198:in `as_json'
578
+ activesupport (3.2.13) lib/active_support/json/encoding.rb:47:in `block in encode'
579
+ activesupport (3.2.13) lib/active_support/json/encoding.rb:77:in `check_for_circular_references'
580
+ activesupport (3.2.13) lib/active_support/json/encoding.rb:46:in `encode'
581
+ activesupport (3.2.13) lib/active_support/json/encoding.rb:31:in `encode'
582
+ activesupport (3.2.13) lib/active_support/core_ext/object/to_json.rb:16:in `to_json'
583
+ C:/Sites/DBNotesEng/app/controllers/model_info_controller.rb:111:in `show_notes_for_column'
584
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
585
+ actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
586
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
587
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
588
+ activesupport (3.2.13) lib/active_support/callbacks.rb:414:in `_run__236409329__process_action__968422216__callbacks'
589
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
590
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
591
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
592
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
593
+ actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
594
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
595
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
596
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
597
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
598
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
599
+ actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
600
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
601
+ actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
602
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
603
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
604
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
605
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
606
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
607
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
608
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
609
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
610
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
611
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
612
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
613
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
614
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
615
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
616
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
617
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
618
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
619
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
620
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
621
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
622
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
623
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
624
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
625
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__136884249__call__1055453806__callbacks'
626
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
627
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
628
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
629
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
630
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
631
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
632
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
633
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
634
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
635
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
636
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
637
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
638
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
639
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
640
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
641
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
642
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
643
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
644
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
645
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
646
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
647
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
648
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
649
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
650
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
651
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
652
+
653
+
654
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (24.0ms)
655
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
656
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (56.0ms)
657
+
658
+
659
+ Started GET "/get_table_notes_count" for 127.0.0.1 at 2013-04-30 13:21:02 +0530
660
+ Processing by ModelInfoController#get_table_notes_count as JSON
661
+ Note Load (1.0ms) select table_name, count(*) as note_count from Notes group by table_name
662
+ Completed 200 OK in 3ms (Views: 0.0ms | ActiveRecord: 1.0ms)
663
+
664
+
665
+ Started GET "/get_column_notes_count" for 127.0.0.1 at 2013-04-30 13:21:02 +0530
666
+ Processing by ModelInfoController#get_column_notes_count as JSON
667
+ Note Load (1.0ms) select table_name, column_name, count(*) as note_count from Notes group by table_name, column_name
668
+ Completed 200 OK in 1ms (Views: 0.0ms | ActiveRecord: 1.0ms)
669
+
670
+
671
+ Started GET "/is_user_logged_in" for 127.0.0.1 at 2013-04-30 13:21:20 +0530
672
+ Processing by ModelInfoController#is_user_logged_in as JSON
673
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
674
+
675
+
676
+ Started GET "/get_author_name" for 127.0.0.1 at 2013-04-30 13:21:20 +0530
677
+ Processing by ModelInfoController#get_author_name as JSON
678
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
679
+
680
+
681
+ Started GET "/add_note?table_name=Post&column_name=author&author=SaiJyuothiPrasad%20Ponduru&note_text=dsdsf" for 127.0.0.1 at 2013-04-30 13:21:20 +0530
682
+ Processing by ModelInfoController#add_note as JSON
683
+ Parameters: {"table_name"=>"Post", "column_name"=>"author", "author"=>"SaiJyuothiPrasad Ponduru", "note_text"=>"dsdsf"}
684
+  (0.0ms) begin transaction
685
+ SQL (2.0ms) INSERT INTO "notes" ("author", "column_name", "created_at", "note_text", "table_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["author", "SaiJyuothiPrasad Ponduru"], ["column_name", "author"], ["created_at", Tue, 30 Apr 2013 07:51:20 UTC +00:00], ["note_text", "dsdsf"], ["table_name", "Post"], ["updated_at", Tue, 30 Apr 2013 07:51:20 UTC +00:00]]
686
+  (145.0ms) commit transaction
687
+ Completed 200 OK in 151ms (Views: 0.0ms | ActiveRecord: 147.0ms)
688
+
689
+
690
+ Started GET "/tables/Post/columns/author.json" for 127.0.0.1 at 2013-04-30 13:21:21 +0530
691
+ Processing by ModelInfoController#show_notes_for_column as JSON
692
+ Parameters: {"table"=>"Post", "column"=>"author"}
693
+ Note Load (0.0ms) SELECT "notes".* FROM "notes" WHERE "notes"."table_name" = 'Post' AND "notes"."column_name" = 'author'
694
+ Completed 500 Internal Server Error in 3ms
695
+
696
+ NoMethodError (undefined method `comments' for #<Note:0x3ec0040>):
697
+ activemodel (3.2.13) lib/active_model/attribute_methods.rb:407:in `method_missing'
698
+ activerecord (3.2.13) lib/active_record/attribute_methods.rb:149:in `method_missing'
699
+ activemodel (3.2.13) lib/active_model/serialization.rb:133:in `block in serializable_add_includes'
700
+ activemodel (3.2.13) lib/active_model/serialization.rb:132:in `each'
701
+ activemodel (3.2.13) lib/active_model/serialization.rb:132:in `serializable_add_includes'
702
+ activemodel (3.2.13) lib/active_model/serialization.rb:87:in `serializable_hash'
703
+ activerecord (3.2.13) lib/active_record/serialization.rb:13:in `serializable_hash'
704
+ activemodel (3.2.13) lib/active_model/serializers/json.rb:96:in `as_json'
705
+ activesupport (3.2.13) lib/active_support/json/encoding.rb:55:in `block in as_json'
706
+ activesupport (3.2.13) lib/active_support/json/encoding.rb:77:in `check_for_circular_references'
707
+ activesupport (3.2.13) lib/active_support/json/encoding.rb:54:in `as_json'
708
+ activesupport (3.2.13) lib/active_support/json/encoding.rb:209:in `block in as_json'
709
+ activesupport (3.2.13) lib/active_support/json/encoding.rb:209:in `map'
710
+ activesupport (3.2.13) lib/active_support/json/encoding.rb:209:in `as_json'
711
+ activerecord (3.2.13) lib/active_record/relation.rb:198:in `as_json'
712
+ activesupport (3.2.13) lib/active_support/json/encoding.rb:47:in `block in encode'
713
+ activesupport (3.2.13) lib/active_support/json/encoding.rb:77:in `check_for_circular_references'
714
+ activesupport (3.2.13) lib/active_support/json/encoding.rb:46:in `encode'
715
+ activesupport (3.2.13) lib/active_support/json/encoding.rb:31:in `encode'
716
+ activesupport (3.2.13) lib/active_support/core_ext/object/to_json.rb:16:in `to_json'
717
+ C:/Sites/DBNotesEng/app/controllers/model_info_controller.rb:111:in `show_notes_for_column'
718
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
719
+ actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
720
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
721
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
722
+ activesupport (3.2.13) lib/active_support/callbacks.rb:414:in `_run__236409329__process_action__968422216__callbacks'
723
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
724
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
725
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
726
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
727
+ actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
728
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
729
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
730
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
731
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
732
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
733
+ actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
734
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
735
+ actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
736
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
737
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
738
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
739
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
740
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
741
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
742
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
743
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
744
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
745
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
746
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
747
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
748
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
749
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
750
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
751
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
752
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
753
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
754
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
755
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
756
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
757
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
758
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
759
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__136884249__call__1055453806__callbacks'
760
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
761
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
762
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
763
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
764
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
765
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
766
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
767
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
768
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
769
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
770
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
771
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
772
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
773
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
774
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
775
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
776
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
777
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
778
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
779
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
780
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
781
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
782
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
783
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
784
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
785
+ C:/RailsInstaller/Ruby1.9.3/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
786
+
787
+
788
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
789
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
790
+ Rendered C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (32.0ms)
791
+
792
+
793
+ Started GET "/get_table_notes_count" for 127.0.0.1 at 2013-04-30 13:21:21 +0530
794
+ Processing by ModelInfoController#get_table_notes_count as JSON
795
+ Note Load (0.0ms) select table_name, count(*) as note_count from Notes group by table_name
796
+ Completed 200 OK in 2ms (Views: 0.0ms | ActiveRecord: 0.0ms)
797
+
798
+
799
+ Started GET "/get_column_notes_count" for 127.0.0.1 at 2013-04-30 13:21:21 +0530
800
+ Processing by ModelInfoController#get_column_notes_count as JSON
801
+ Note Load (0.0ms) select table_name, column_name, count(*) as note_count from Notes group by table_name, column_name
802
+ Completed 200 OK in 1ms (Views: 0.0ms | ActiveRecord: 0.0ms)
803
+
804
+
805
+ Started GET "/DBNotes" for 127.0.0.1 at 2013-04-30 13:22:05 +0530
806
+ Processing by ModelInfoController#DBNotes as HTML
807
+ Rendered C:/Sites/DBNotesEng/app/views/model_info/DBNotes.html.erb within layouts/application (2.0ms)
808
+ Completed 200 OK in 53ms (Views: 11.0ms | ActiveRecord: 2.0ms)
809
+
810
+
811
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-04-30 13:22:05 +0530
812
+ Served asset /posts.css - 200 OK (0ms)
813
+
814
+
815
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-30 13:22:05 +0530
816
+ Served asset /jquery_ujs.js - 200 OK (0ms)
817
+
818
+
819
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-30 13:22:05 +0530
820
+ Served asset /jquery.js - 200 OK (0ms)
821
+
822
+
823
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-04-30 13:22:05 +0530
824
+ Served asset /scaffold.css - 200 OK (0ms)
825
+
826
+
827
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-30 13:22:05 +0530
828
+ Served asset /application.css - 200 OK (0ms)
829
+
830
+
831
+ Started GET "/assets/db_notes_eng/bootstrap.css" for 127.0.0.1 at 2013-04-30 13:22:05 +0530
832
+ Served asset /db_notes_eng/bootstrap.css - 200 OK (1ms)
833
+
834
+
835
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-04-30 13:22:05 +0530
836
+ Served asset /posts.js - 200 OK (0ms)
837
+
838
+
839
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-30 13:22:05 +0530
840
+ Served asset /application.js - 200 OK (0ms)
841
+
842
+
843
+ Started GET "/assets/db_notes_eng/bootstrap.js" for 127.0.0.1 at 2013-04-30 13:22:05 +0530
844
+ Served asset /db_notes_eng/bootstrap.js - 200 OK (0ms)
845
+
846
+
847
+ Started GET "/assets/db_notes_eng/glyphicons-halflings-white.png" for 127.0.0.1 at 2013-04-30 13:22:05 +0530
848
+ Served asset /db_notes_eng/glyphicons-halflings-white.png - 200 OK (0ms)
849
+
850
+
851
+ Started GET "/tables/Post/columns/author.json" for 127.0.0.1 at 2013-04-30 13:22:06 +0530
852
+ Processing by ModelInfoController#show_notes_for_column as JSON
853
+ Parameters: {"table"=>"Post", "column"=>"author"}
854
+ Note Load (0.0ms) SELECT "notes".* FROM "notes" WHERE "notes"."table_name" = 'Post' AND "notes"."column_name" = 'author'
855
+ Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."note_id" = 1
856
+ Comment Load (1.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."note_id" = 2
857
+ Completed 200 OK in 434ms (Views: 0.0ms | ActiveRecord: 2.0ms)
858
+
859
+
860
+ Started GET "/get_table_notes_count" for 127.0.0.1 at 2013-04-30 13:22:06 +0530
861
+ Processing by ModelInfoController#get_table_notes_count as JSON
862
+ Note Load (1.0ms) select table_name, count(*) as note_count from Notes group by table_name
863
+ Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 1.0ms)
864
+
865
+
866
+ Started GET "/get_column_notes_count" for 127.0.0.1 at 2013-04-30 13:22:06 +0530
867
+ Processing by ModelInfoController#get_column_notes_count as JSON
868
+ Note Load (0.0ms) select table_name, column_name, count(*) as note_count from Notes group by table_name, column_name
869
+ Completed 200 OK in 2ms (Views: 0.0ms | ActiveRecord: 0.0ms)
870
+
871
+
872
+ Started GET "/assets/db_notes_eng/glyphicons-halflings.png" for 127.0.0.1 at 2013-04-30 13:22:06 +0530
873
+ Served asset /db_notes_eng/glyphicons-halflings.png - 200 OK (0ms)
874
+
875
+
876
+ Started GET "/is_user_logged_in" for 127.0.0.1 at 2013-04-30 13:22:15 +0530
877
+ Processing by ModelInfoController#is_user_logged_in as JSON
878
+ Completed 200 OK in 1ms (Views: 0.0ms | ActiveRecord: 0.0ms)
879
+
880
+
881
+ Started GET "/user_authenticate?username=jyothiprasad.ponduru&password=[FILTERED]" for 127.0.0.1 at 2013-04-30 13:22:23 +0530
882
+ Processing by ModelInfoController#user_authenticate as JSON
883
+ Parameters: {"username"=>"jyothiprasad.ponduru", "password"=>"[FILTERED]"}
884
+ Completed 200 OK in 1408ms (Views: 1.0ms | ActiveRecord: 0.0ms)
885
+
886
+
887
+ Started GET "/get_author_name" for 127.0.0.1 at 2013-04-30 13:22:24 +0530
888
+ Processing by ModelInfoController#get_author_name as JSON
889
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
890
+
891
+
892
+ Started GET "/is_user_logged_in" for 127.0.0.1 at 2013-04-30 13:22:30 +0530
893
+ Processing by ModelInfoController#is_user_logged_in as JSON
894
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
895
+
896
+
897
+ Started GET "/get_author_name" for 127.0.0.1 at 2013-04-30 13:22:30 +0530
898
+ Processing by ModelInfoController#get_author_name as JSON
899
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
900
+
901
+
902
+ Started GET "/add_note?table_name=Post&column_name=author&author=SaiJyuothiPrasad%20Ponduru&note_text=(HTMLEditor%20goes%20here%20.%20For%20now%20it%20is%20a%20textarea.)" for 127.0.0.1 at 2013-04-30 13:22:30 +0530
903
+ Processing by ModelInfoController#add_note as JSON
904
+ Parameters: {"table_name"=>"Post", "column_name"=>"author", "author"=>"SaiJyuothiPrasad Ponduru", "note_text"=>"(HTMLEditor goes here . For now it is a textarea.)"}
905
+  (0.0ms) begin transaction
906
+ SQL (2.0ms) INSERT INTO "notes" ("author", "column_name", "created_at", "note_text", "table_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["author", "SaiJyuothiPrasad Ponduru"], ["column_name", "author"], ["created_at", Tue, 30 Apr 2013 07:52:30 UTC +00:00], ["note_text", "(HTMLEditor goes here . For now it is a textarea.)"], ["table_name", "Post"], ["updated_at", Tue, 30 Apr 2013 07:52:30 UTC +00:00]]
907
+  (138.0ms) commit transaction
908
+ Completed 200 OK in 146ms (Views: 0.0ms | ActiveRecord: 140.0ms)
909
+
910
+
911
+ Started GET "/tables/Post/columns/author.json" for 127.0.0.1 at 2013-04-30 13:22:30 +0530
912
+ Processing by ModelInfoController#show_notes_for_column as JSON
913
+ Parameters: {"table"=>"Post", "column"=>"author"}
914
+ Note Load (1.0ms) SELECT "notes".* FROM "notes" WHERE "notes"."table_name" = 'Post' AND "notes"."column_name" = 'author'
915
+ Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."note_id" = 1
916
+ Comment Load (1.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."note_id" = 2
917
+ Comment Load (1.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."note_id" = 3
918
+ Completed 200 OK in 11ms (Views: 1.0ms | ActiveRecord: 3.0ms)
919
+
920
+
921
+ Started GET "/get_table_notes_count" for 127.0.0.1 at 2013-04-30 13:22:30 +0530
922
+ Processing by ModelInfoController#get_table_notes_count as JSON
923
+ Note Load (1.0ms) select table_name, count(*) as note_count from Notes group by table_name
924
+ Completed 200 OK in 2ms (Views: 0.0ms | ActiveRecord: 1.0ms)
925
+
926
+
927
+ Started GET "/get_column_notes_count" for 127.0.0.1 at 2013-04-30 13:22:30 +0530
928
+ Processing by ModelInfoController#get_column_notes_count as JSON
929
+ Note Load (0.0ms) select table_name, column_name, count(*) as note_count from Notes group by table_name, column_name
930
+ Completed 200 OK in 1ms (Views: 0.0ms | ActiveRecord: 0.0ms)