visual_migrate 4.0.1.2

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 (207) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +1 -0
  4. data/Rakefile +34 -0
  5. data/app/assets/images/visual_migrate/bg_pagetop.gif +0 -0
  6. data/app/assets/javascripts/common.js +21 -0
  7. data/app/assets/javascripts/jquery.cookie.js +95 -0
  8. data/app/assets/javascripts/jquery.js +4 -0
  9. data/app/assets/javascripts/visual_migrate/application.js +13 -0
  10. data/app/assets/javascripts/visual_migrate/dialog.js +2 -0
  11. data/app/assets/javascripts/visual_migrate/index.js +2 -0
  12. data/app/assets/javascripts/vm-application.js +35 -0
  13. data/app/assets/stylesheets/visual_migrate/application.css +13 -0
  14. data/app/assets/stylesheets/visual_migrate/dialog.css +4 -0
  15. data/app/assets/stylesheets/visual_migrate/index.css +4 -0
  16. data/app/assets/stylesheets/vm-application.css +40 -0
  17. data/app/assets/stylesheets/vm-common.css +335 -0
  18. data/app/assets/template/sim003_blue.zip +0 -0
  19. data/app/assets/template/sim003_blue/src/css/common.css +329 -0
  20. data/app/assets/template/sim003_blue/src/images/bg_pagetop.gif +0 -0
  21. data/app/assets/template/sim003_blue/src/index.html +153 -0
  22. data/app/assets/template/sim003_blue/src/js/common.js +21 -0
  23. data/app/assets/template/sim003_blue/src/js/jquery.js +4 -0
  24. data/app/controllers/visual_migrate/application_controller.rb +5 -0
  25. data/app/controllers/visual_migrate/dialog_controller.rb +9 -0
  26. data/app/controllers/visual_migrate/index_controller.rb +174 -0
  27. data/app/helpers/visual_migrate/application_helper.rb +97 -0
  28. data/app/helpers/visual_migrate/dialog_helper.rb +4 -0
  29. data/app/helpers/visual_migrate/index_helper.rb +4 -0
  30. data/app/models/schema_migration.rb +2 -0
  31. data/app/views/layouts/visual_migrate/_columns.html.erb +133 -0
  32. data/app/views/layouts/visual_migrate/_func_add_column.html.erb +24 -0
  33. data/app/views/layouts/visual_migrate/_func_add_index.html.erb +20 -0
  34. data/app/views/layouts/visual_migrate/_func_add_timestamps.html.erb +8 -0
  35. data/app/views/layouts/visual_migrate/_func_change_column.html.erb +24 -0
  36. data/app/views/layouts/visual_migrate/_func_change_column_default.html.erb +12 -0
  37. data/app/views/layouts/visual_migrate/_func_create_table.html.erb +33 -0
  38. data/app/views/layouts/visual_migrate/_func_drop_table.html.erb +8 -0
  39. data/app/views/layouts/visual_migrate/_func_remove_column.html.erb +9 -0
  40. data/app/views/layouts/visual_migrate/_func_remove_index.html.erb +17 -0
  41. data/app/views/layouts/visual_migrate/_func_remove_timestamps.html.erb +8 -0
  42. data/app/views/layouts/visual_migrate/_func_rename_column.html.erb +12 -0
  43. data/app/views/layouts/visual_migrate/_func_rename_index.html.erb +10 -0
  44. data/app/views/layouts/visual_migrate/_func_rename_table.html.erb +9 -0
  45. data/app/views/layouts/visual_migrate/_migration_class.html.erb +20 -0
  46. data/app/views/layouts/visual_migrate/_migration_method.html.erb +40 -0
  47. data/app/views/layouts/visual_migrate/application.html.erb +68 -0
  48. data/app/views/layouts/visual_migrate/dialog.html.erb +28 -0
  49. data/app/views/visual_migrate/dialog/add_new_func.html.erb +45 -0
  50. data/app/views/visual_migrate/index/_section_migrations.html.erb +19 -0
  51. data/app/views/visual_migrate/index/_section_tables.html.erb +10 -0
  52. data/app/views/visual_migrate/index/command_line.html.erb +34 -0
  53. data/app/views/visual_migrate/index/direct_edit.html.erb +9 -0
  54. data/app/views/visual_migrate/index/edit_migration.html.erb +15 -0
  55. data/app/views/visual_migrate/index/modify_table.html.erb +1 -0
  56. data/config/routes.rb +70 -0
  57. data/lib/class_filter.rb +126 -0
  58. data/lib/func_filter.rb +560 -0
  59. data/lib/method_filter.rb +104 -0
  60. data/lib/migration_defs.rb +626 -0
  61. data/lib/tasks/visual-migrate_tasks.rake +4 -0
  62. data/lib/tasks/visual_migrate_tasks.rake +4 -0
  63. data/lib/visual_migrate.rb +6 -0
  64. data/lib/visual_migrate/activerecord.rb +23 -0
  65. data/lib/visual_migrate/engine.rb +5 -0
  66. data/lib/visual_migrate/migration.rb +15 -0
  67. data/lib/visual_migrate/version.rb +3 -0
  68. data/lib/visual_migrate_ripper.rb +157 -0
  69. data/test/dummy/Gemfile +84 -0
  70. data/test/dummy/Gemfile.lock +218 -0
  71. data/test/dummy/README.rdoc +28 -0
  72. data/test/dummy/Rakefile +6 -0
  73. data/test/dummy/app/assets/javascripts/application.js +13 -0
  74. data/test/dummy/app/assets/javascripts/index.js +2 -0
  75. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  76. data/test/dummy/app/assets/stylesheets/index.css +4 -0
  77. data/test/dummy/app/controllers/application_controller.rb +5 -0
  78. data/test/dummy/app/controllers/index_controller.rb +9 -0
  79. data/test/dummy/app/helpers/application_helper.rb +2 -0
  80. data/test/dummy/app/helpers/index_helper.rb +2 -0
  81. data/test/dummy/app/models/test_table.rb +2 -0
  82. data/test/dummy/app/views/index/index.html.erb +23 -0
  83. data/test/dummy/app/views/layouts/application.html.erb +43 -0
  84. data/test/dummy/bin/bundle +3 -0
  85. data/test/dummy/bin/rails +4 -0
  86. data/test/dummy/bin/rake +4 -0
  87. data/test/dummy/config.ru +4 -0
  88. data/test/dummy/config/application.rb +23 -0
  89. data/test/dummy/config/boot.rb +5 -0
  90. data/test/dummy/config/database.yml +30 -0
  91. data/test/dummy/config/environment.rb +5 -0
  92. data/test/dummy/config/environments/development.rb +29 -0
  93. data/test/dummy/config/environments/production.rb +80 -0
  94. data/test/dummy/config/environments/test.rb +36 -0
  95. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  96. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  97. data/test/dummy/config/initializers/inflections.rb +16 -0
  98. data/test/dummy/config/initializers/mime_types.rb +5 -0
  99. data/test/dummy/config/initializers/secret_token.rb +12 -0
  100. data/test/dummy/config/initializers/session_store.rb +3 -0
  101. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  102. data/test/dummy/config/locales/en.yml +23 -0
  103. data/test/dummy/config/routes.rb +6 -0
  104. data/test/dummy/db/development.sqlite3 +0 -0
  105. data/test/dummy/db/migrate/20131006135044_create_test_tables.rb +9 -0
  106. data/test/dummy/db/migrate/20131007030825_add_column_test_table.rb +13 -0
  107. data/test/dummy/db/migrate/20131026214458_rename_column_test_table.rb +5 -0
  108. data/test/dummy/db/migrate/20131030105601_change_column_test.rb +10 -0
  109. data/test/dummy/db/migrate/20131104225745_index_test.rb +9 -0
  110. data/test/dummy/db/migrate/20131105025821_rename_index_test.rb +5 -0
  111. data/test/dummy/db/migrate/20131105042853_remove_timestamps_test.rb +9 -0
  112. data/test/dummy/db/schema.rb +28 -0
  113. data/test/dummy/db/seeds.rb +20 -0
  114. data/test/dummy/db/test.sqlite3 +0 -0
  115. data/test/dummy/log/development.log +90374 -0
  116. data/test/dummy/log/production.log +329 -0
  117. data/test/dummy/log/test.log +489 -0
  118. data/test/dummy/public/404.html +58 -0
  119. data/test/dummy/public/422.html +58 -0
  120. data/test/dummy/public/500.html +57 -0
  121. data/test/dummy/public/favicon.ico +0 -0
  122. data/test/dummy/public/index.html.bak +38 -0
  123. data/test/dummy/spec/controllers/index_controller_spec.rb +19 -0
  124. data/test/dummy/spec/spec_helper.rb +46 -0
  125. data/test/dummy/spec/views/index/index.html.erb_spec.rb +17 -0
  126. data/test/dummy/test/controllers/index_controller_test.rb +7 -0
  127. data/test/dummy/test/fixtures/test_tables.yml +11 -0
  128. data/test/dummy/test/helpers/index_helper_test.rb +4 -0
  129. data/test/dummy/test/models/test_table_test.rb +7 -0
  130. data/test/dummy/tmp/cache/assets/development/sprockets/021fe5e1eadff30885806b7245f7e66e +0 -0
  131. data/test/dummy/tmp/cache/assets/development/sprockets/0a9126be05e74d1b89f024c687b7dbfd +0 -0
  132. data/test/dummy/tmp/cache/assets/development/sprockets/0b682b760de6f7c47a7236f024fee55d +0 -0
  133. data/test/dummy/tmp/cache/assets/development/sprockets/0caf4a7a233e329f7d3bfe3fc2f37910 +0 -0
  134. data/test/dummy/tmp/cache/assets/development/sprockets/0e059cd92931990c10b6c5b78014ec92 +0 -0
  135. data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  136. data/test/dummy/tmp/cache/assets/development/sprockets/178af67c2277a751289e81fc2f96dc7d +0 -0
  137. data/test/dummy/tmp/cache/assets/development/sprockets/18650e945a1a2ad87b3d8997d1ccac10 +0 -0
  138. data/test/dummy/tmp/cache/assets/development/sprockets/19bf9cd3f01562cdecb4b5c825c8f36d +0 -0
  139. data/test/dummy/tmp/cache/assets/development/sprockets/1b5f6c8780c3fcb34d2bbbabe38c3d94 +0 -0
  140. data/test/dummy/tmp/cache/assets/development/sprockets/1df2ccc1ade2cfe4a9d0ce8b0ec2dadf +0 -0
  141. data/test/dummy/tmp/cache/assets/development/sprockets/272853fd0642f08e38174a609a2be457 +0 -0
  142. data/test/dummy/tmp/cache/assets/development/sprockets/2aff43fdd4d59cb6a75288268ec363ee +0 -0
  143. data/test/dummy/tmp/cache/assets/development/sprockets/2c853768baf811357d81d41bdfd05dcf +0 -0
  144. data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  145. data/test/dummy/tmp/cache/assets/development/sprockets/314d48e543146f617c4d3439a4d8d40d +0 -0
  146. data/test/dummy/tmp/cache/assets/development/sprockets/320853225bbf3512349dc1ef4ea80874 +0 -0
  147. data/test/dummy/tmp/cache/assets/development/sprockets/32f1a742d35f7250e984b1de0554a894 +0 -0
  148. data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  149. data/test/dummy/tmp/cache/assets/development/sprockets/3807e3adca7677de6842a8048ad6d83b +0 -0
  150. data/test/dummy/tmp/cache/assets/development/sprockets/42ad84505ad8dfc0a4a724e8c889c607 +0 -0
  151. data/test/dummy/tmp/cache/assets/development/sprockets/46c5c46e37f5a22449050d7fc6f1dc26 +0 -0
  152. data/test/dummy/tmp/cache/assets/development/sprockets/4fbe2f2c44de1e405b3562e4935176b9 +0 -0
  153. data/test/dummy/tmp/cache/assets/development/sprockets/52d191f68c69ae795e8da63ef51ca640 +0 -0
  154. data/test/dummy/tmp/cache/assets/development/sprockets/54cf088ee215412d3800d9b1e0263c30 +0 -0
  155. data/test/dummy/tmp/cache/assets/development/sprockets/55165e8d7dcda66caf51df6c6417142d +0 -0
  156. data/test/dummy/tmp/cache/assets/development/sprockets/576fe10a40538bd3999a2b1b3fe334d1 +0 -0
  157. data/test/dummy/tmp/cache/assets/development/sprockets/5793e837a2934ce3b84aac8785a874ce +0 -0
  158. data/test/dummy/tmp/cache/assets/development/sprockets/5900a8937fa5118d2a6ee8289614c854 +0 -0
  159. data/test/dummy/tmp/cache/assets/development/sprockets/5a9053557c1035de31eb2162db5b9d34 +0 -0
  160. data/test/dummy/tmp/cache/assets/development/sprockets/5df80a6ab7f25724f11ce3179173ad60 +0 -0
  161. data/test/dummy/tmp/cache/assets/development/sprockets/6373000f4849668f51493aaf8503c8e8 +0 -0
  162. data/test/dummy/tmp/cache/assets/development/sprockets/65048e3e4fd096e06f7ca69a5af7ab9f +0 -0
  163. data/test/dummy/tmp/cache/assets/development/sprockets/6bb983076781d92edbb1da256023c14b +0 -0
  164. data/test/dummy/tmp/cache/assets/development/sprockets/6dfaf2d0d571c61e96bce5377fcddf7f +0 -0
  165. data/test/dummy/tmp/cache/assets/development/sprockets/6efc50a7f372f50e09a67daa7ac00940 +0 -0
  166. data/test/dummy/tmp/cache/assets/development/sprockets/6f7dfedc6e14ea8772e0284497539f90 +0 -0
  167. data/test/dummy/tmp/cache/assets/development/sprockets/70f64d1c4421c935f01a8d5aa647d792 +0 -0
  168. data/test/dummy/tmp/cache/assets/development/sprockets/7999e525c88173c1beb785f002effc1d +0 -0
  169. data/test/dummy/tmp/cache/assets/development/sprockets/7c188f2b1cb38e1b55dc8a8bb8785fe8 +0 -0
  170. data/test/dummy/tmp/cache/assets/development/sprockets/7d48e39953ffcdd70751e98d08d1282c +0 -0
  171. data/test/dummy/tmp/cache/assets/development/sprockets/7ddca3ef38a810d93ddc026ee5fa7959 +0 -0
  172. data/test/dummy/tmp/cache/assets/development/sprockets/7fecd8a0b0c56f928c31450f839c4731 +0 -0
  173. data/test/dummy/tmp/cache/assets/development/sprockets/842d637730ce4255c6beacff60b80157 +0 -0
  174. data/test/dummy/tmp/cache/assets/development/sprockets/89cd476f554d26de50608ac9ce6d0606 +0 -0
  175. data/test/dummy/tmp/cache/assets/development/sprockets/9519989fc45811670fa6b1184fedecc7 +0 -0
  176. data/test/dummy/tmp/cache/assets/development/sprockets/99cdbaecd1b34008d0853764ec707246 +0 -0
  177. data/test/dummy/tmp/cache/assets/development/sprockets/a093237e72888c88a730f537a544e03b +0 -0
  178. data/test/dummy/tmp/cache/assets/development/sprockets/a7c148cd78906c44016fdeb236569b5b +0 -0
  179. data/test/dummy/tmp/cache/assets/development/sprockets/a83bebd10c561b2264affb4ed6a9f83b +0 -0
  180. data/test/dummy/tmp/cache/assets/development/sprockets/b3ed09e62124bd9cf5f7a1ac14298d4f +0 -0
  181. data/test/dummy/tmp/cache/assets/development/sprockets/be45f47d31b8e7fd54a0b6087eeaf5de +0 -0
  182. data/test/dummy/tmp/cache/assets/development/sprockets/c00bfe3da0096cbd0434a6c66262fe23 +0 -0
  183. data/test/dummy/tmp/cache/assets/development/sprockets/c78109332f6461183a94718da0068da6 +0 -0
  184. data/test/dummy/tmp/cache/assets/development/sprockets/cee8c6b09c33d2b276753e959712724e +0 -0
  185. data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  186. data/test/dummy/tmp/cache/assets/development/sprockets/d08ae02c560f15a5cb4d0447b0da29ad +0 -0
  187. data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  188. data/test/dummy/tmp/cache/assets/development/sprockets/d990155237ca59ccb96cf2253f8059ae +0 -0
  189. data/test/dummy/tmp/cache/assets/development/sprockets/df600f50f002512c95d93bcfbab891ed +0 -0
  190. data/test/dummy/tmp/cache/assets/development/sprockets/e2a3afc837465539886843291aedd0f3 +0 -0
  191. data/test/dummy/tmp/cache/assets/development/sprockets/eb7b0ec5bff36142ba070d1a39e194b1 +0 -0
  192. data/test/dummy/tmp/cache/assets/development/sprockets/f3aee0380718ef20b2e587a842ce697e +0 -0
  193. data/test/dummy/tmp/cache/assets/development/sprockets/f408c68444462a9ae2effa5230b43edf +0 -0
  194. data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  195. data/test/dummy/tmp/cache/assets/development/sprockets/f898358aceb33227eb4403237acca034 +0 -0
  196. data/test/dummy/tmp/cache/assets/development/sprockets/fc7201c6cbef32453aa4175c520c8eae +0 -0
  197. data/test/dummy/tmp/cache/assets/development/sprockets/fca81105f7109a6a96f05aedd0f1b883 +0 -0
  198. data/test/dummy/tmp/cache/assets/development/sprockets/fdd7a6a4d56761d6463b3c34768fbc78 +0 -0
  199. data/test/dummy/tmp/restart.txt +0 -0
  200. data/test/dummy/tmp/visual-migrate_tmp.rb +5 -0
  201. data/test/dummy/tmp/visual_migrate_tmp.rb +10 -0
  202. data/test/fixtures/visual_migrate/schema_migrations.yml +11 -0
  203. data/test/integration/navigation_test.rb +10 -0
  204. data/test/models/visual_migrate/schema_migration_test.rb +9 -0
  205. data/test/test_helper.rb +15 -0
  206. data/test/visual_migrate_test.rb +7 -0
  207. metadata +487 -0
@@ -0,0 +1,329 @@
1
+ I, [2013-10-13T09:01:36.931003 #86835] INFO -- : Started GET "/assets/common.css?body=1" for 192.168.204.1 at 2013-10-13 09:01:36 +0900
2
+ F, [2013-10-13T09:01:36.940067 #86835] FATAL -- :
3
+ NameError (undefined local variable or method `initialize_ext' for #<Mysql2::Client:0x007fff24a0d4c8>):
4
+ mysql2 (0.3.13) lib/mysql2/client.rb:22:in `initialize'
5
+ activerecord (4.0.0) lib/active_record/connection_adapters/mysql2_adapter.rb:18:in `new'
6
+ activerecord (4.0.0) lib/active_record/connection_adapters/mysql2_adapter.rb:18:in `mysql2_connection'
7
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:440:in `new_connection'
8
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:450:in `checkout_new_connection'
9
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:421:in `acquire_connection'
10
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:356:in `block in checkout'
11
+ /Users/js/.rbenv/versions/2.0.0-p195/lib/ruby/2.0.0/monitor.rb:211:in `mon_synchronize'
12
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:355:in `checkout'
13
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:265:in `block in connection'
14
+ /Users/js/.rbenv/versions/2.0.0-p195/lib/ruby/2.0.0/monitor.rb:211:in `mon_synchronize'
15
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:264:in `connection'
16
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:546:in `retrieve_connection'
17
+ activerecord (4.0.0) lib/active_record/connection_handling.rb:79:in `retrieve_connection'
18
+ activerecord (4.0.0) lib/active_record/connection_handling.rb:53:in `connection'
19
+ activerecord (4.0.0) lib/active_record/query_cache.rb:51:in `restore_query_cache_settings'
20
+ activerecord (4.0.0) lib/active_record/query_cache.rb:43:in `rescue in call'
21
+ activerecord (4.0.0) lib/active_record/query_cache.rb:32:in `call'
22
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
23
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
24
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__3248019411124965802__call__callbacks'
25
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
26
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
27
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
28
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
29
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
30
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
31
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
32
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
33
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
34
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
35
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
36
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
37
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
38
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
39
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
40
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
41
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
42
+ passenger (4.0.5) lib/phusion_passenger/rack/thread_handler_extension.rb:77:in `process_request'
43
+ passenger (4.0.5) lib/phusion_passenger/request_handler/thread_handler.rb:140:in `accept_and_process_next_request'
44
+ passenger (4.0.5) lib/phusion_passenger/request_handler/thread_handler.rb:108:in `main_loop'
45
+ passenger (4.0.5) lib/phusion_passenger/request_handler.rb:441:in `block (3 levels) in start_threads'
46
+
47
+
48
+ I, [2013-10-13T09:01:39.467799 #86835] INFO -- : Started GET "/visual_migrate/" for 192.168.204.1 at 2013-10-13 09:01:39 +0900
49
+ F, [2013-10-13T09:01:39.472698 #86835] FATAL -- :
50
+ NameError (undefined local variable or method `initialize_ext' for #<Mysql2::Client:0x007fff24cc7d58>):
51
+ mysql2 (0.3.13) lib/mysql2/client.rb:22:in `initialize'
52
+ activerecord (4.0.0) lib/active_record/connection_adapters/mysql2_adapter.rb:18:in `new'
53
+ activerecord (4.0.0) lib/active_record/connection_adapters/mysql2_adapter.rb:18:in `mysql2_connection'
54
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:440:in `new_connection'
55
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:450:in `checkout_new_connection'
56
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:421:in `acquire_connection'
57
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:356:in `block in checkout'
58
+ /Users/js/.rbenv/versions/2.0.0-p195/lib/ruby/2.0.0/monitor.rb:211:in `mon_synchronize'
59
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:355:in `checkout'
60
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:265:in `block in connection'
61
+ /Users/js/.rbenv/versions/2.0.0-p195/lib/ruby/2.0.0/monitor.rb:211:in `mon_synchronize'
62
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:264:in `connection'
63
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:546:in `retrieve_connection'
64
+ activerecord (4.0.0) lib/active_record/connection_handling.rb:79:in `retrieve_connection'
65
+ activerecord (4.0.0) lib/active_record/connection_handling.rb:53:in `connection'
66
+ activerecord (4.0.0) lib/active_record/query_cache.rb:51:in `restore_query_cache_settings'
67
+ activerecord (4.0.0) lib/active_record/query_cache.rb:43:in `rescue in call'
68
+ activerecord (4.0.0) lib/active_record/query_cache.rb:32:in `call'
69
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
70
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
71
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__3248019411124965802__call__callbacks'
72
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
73
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
74
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
75
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
76
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
77
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
78
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
79
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
80
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
81
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
82
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
83
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
84
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
85
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
86
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
87
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
88
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
89
+ passenger (4.0.5) lib/phusion_passenger/rack/thread_handler_extension.rb:77:in `process_request'
90
+ passenger (4.0.5) lib/phusion_passenger/request_handler/thread_handler.rb:140:in `accept_and_process_next_request'
91
+ passenger (4.0.5) lib/phusion_passenger/request_handler/thread_handler.rb:108:in `main_loop'
92
+ passenger (4.0.5) lib/phusion_passenger/request_handler.rb:441:in `block (3 levels) in start_threads'
93
+
94
+
95
+ I, [2013-10-13T09:01:44.468231 #86835] INFO -- : Started GET "/visual_migrate/" for 192.168.204.1 at 2013-10-13 09:01:44 +0900
96
+ F, [2013-10-13T09:01:44.471957 #86835] FATAL -- :
97
+ NameError (undefined local variable or method `initialize_ext' for #<Mysql2::Client:0x007fff24de4fb0>):
98
+ mysql2 (0.3.13) lib/mysql2/client.rb:22:in `initialize'
99
+ activerecord (4.0.0) lib/active_record/connection_adapters/mysql2_adapter.rb:18:in `new'
100
+ activerecord (4.0.0) lib/active_record/connection_adapters/mysql2_adapter.rb:18:in `mysql2_connection'
101
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:440:in `new_connection'
102
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:450:in `checkout_new_connection'
103
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:421:in `acquire_connection'
104
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:356:in `block in checkout'
105
+ /Users/js/.rbenv/versions/2.0.0-p195/lib/ruby/2.0.0/monitor.rb:211:in `mon_synchronize'
106
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:355:in `checkout'
107
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:265:in `block in connection'
108
+ /Users/js/.rbenv/versions/2.0.0-p195/lib/ruby/2.0.0/monitor.rb:211:in `mon_synchronize'
109
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:264:in `connection'
110
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:546:in `retrieve_connection'
111
+ activerecord (4.0.0) lib/active_record/connection_handling.rb:79:in `retrieve_connection'
112
+ activerecord (4.0.0) lib/active_record/connection_handling.rb:53:in `connection'
113
+ activerecord (4.0.0) lib/active_record/query_cache.rb:51:in `restore_query_cache_settings'
114
+ activerecord (4.0.0) lib/active_record/query_cache.rb:43:in `rescue in call'
115
+ activerecord (4.0.0) lib/active_record/query_cache.rb:32:in `call'
116
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
117
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
118
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__3248019411124965802__call__callbacks'
119
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
120
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
121
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
122
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
123
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
124
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
125
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
126
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
127
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
128
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
129
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
130
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
131
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
132
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
133
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
134
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
135
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
136
+ passenger (4.0.5) lib/phusion_passenger/rack/thread_handler_extension.rb:77:in `process_request'
137
+ passenger (4.0.5) lib/phusion_passenger/request_handler/thread_handler.rb:140:in `accept_and_process_next_request'
138
+ passenger (4.0.5) lib/phusion_passenger/request_handler/thread_handler.rb:108:in `main_loop'
139
+ passenger (4.0.5) lib/phusion_passenger/request_handler.rb:441:in `block (3 levels) in start_threads'
140
+
141
+
142
+ I, [2013-10-13T09:02:57.351834 #87020] INFO -- : Started GET "/assets/common.css?body=1" for 192.168.204.1 at 2013-10-13 09:02:57 +0900
143
+ F, [2013-10-13T09:02:57.360122 #87020] FATAL -- :
144
+ NameError (undefined local variable or method `initialize_ext' for #<Mysql2::Client:0x007fd5a2c01280>):
145
+ mysql2 (0.3.13) lib/mysql2/client.rb:22:in `initialize'
146
+ activerecord (4.0.0) lib/active_record/connection_adapters/mysql2_adapter.rb:18:in `new'
147
+ activerecord (4.0.0) lib/active_record/connection_adapters/mysql2_adapter.rb:18:in `mysql2_connection'
148
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:440:in `new_connection'
149
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:450:in `checkout_new_connection'
150
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:421:in `acquire_connection'
151
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:356:in `block in checkout'
152
+ /Users/js/.rbenv/versions/2.0.0-p195/lib/ruby/2.0.0/monitor.rb:211:in `mon_synchronize'
153
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:355:in `checkout'
154
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:265:in `block in connection'
155
+ /Users/js/.rbenv/versions/2.0.0-p195/lib/ruby/2.0.0/monitor.rb:211:in `mon_synchronize'
156
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:264:in `connection'
157
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:546:in `retrieve_connection'
158
+ activerecord (4.0.0) lib/active_record/connection_handling.rb:79:in `retrieve_connection'
159
+ activerecord (4.0.0) lib/active_record/connection_handling.rb:53:in `connection'
160
+ activerecord (4.0.0) lib/active_record/query_cache.rb:51:in `restore_query_cache_settings'
161
+ activerecord (4.0.0) lib/active_record/query_cache.rb:43:in `rescue in call'
162
+ activerecord (4.0.0) lib/active_record/query_cache.rb:32:in `call'
163
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
164
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
165
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__4006178524046418218__call__callbacks'
166
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
167
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
168
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
169
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
170
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
171
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
172
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
173
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
174
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
175
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
176
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
177
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
178
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
179
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
180
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
181
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
182
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
183
+ passenger (4.0.5) lib/phusion_passenger/rack/thread_handler_extension.rb:77:in `process_request'
184
+ passenger (4.0.5) lib/phusion_passenger/request_handler/thread_handler.rb:140:in `accept_and_process_next_request'
185
+ passenger (4.0.5) lib/phusion_passenger/request_handler/thread_handler.rb:108:in `main_loop'
186
+ passenger (4.0.5) lib/phusion_passenger/request_handler.rb:441:in `block (3 levels) in start_threads'
187
+
188
+
189
+ I, [2013-10-13T09:02:59.157394 #87020] INFO -- : Started GET "/visual_migrate/" for 192.168.204.1 at 2013-10-13 09:02:59 +0900
190
+ F, [2013-10-13T09:02:59.162422 #87020] FATAL -- :
191
+ NameError (undefined local variable or method `initialize_ext' for #<Mysql2::Client:0x007fd5a2ebaee0>):
192
+ mysql2 (0.3.13) lib/mysql2/client.rb:22:in `initialize'
193
+ activerecord (4.0.0) lib/active_record/connection_adapters/mysql2_adapter.rb:18:in `new'
194
+ activerecord (4.0.0) lib/active_record/connection_adapters/mysql2_adapter.rb:18:in `mysql2_connection'
195
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:440:in `new_connection'
196
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:450:in `checkout_new_connection'
197
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:421:in `acquire_connection'
198
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:356:in `block in checkout'
199
+ /Users/js/.rbenv/versions/2.0.0-p195/lib/ruby/2.0.0/monitor.rb:211:in `mon_synchronize'
200
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:355:in `checkout'
201
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:265:in `block in connection'
202
+ /Users/js/.rbenv/versions/2.0.0-p195/lib/ruby/2.0.0/monitor.rb:211:in `mon_synchronize'
203
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:264:in `connection'
204
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:546:in `retrieve_connection'
205
+ activerecord (4.0.0) lib/active_record/connection_handling.rb:79:in `retrieve_connection'
206
+ activerecord (4.0.0) lib/active_record/connection_handling.rb:53:in `connection'
207
+ activerecord (4.0.0) lib/active_record/query_cache.rb:51:in `restore_query_cache_settings'
208
+ activerecord (4.0.0) lib/active_record/query_cache.rb:43:in `rescue in call'
209
+ activerecord (4.0.0) lib/active_record/query_cache.rb:32:in `call'
210
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
211
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
212
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__4006178524046418218__call__callbacks'
213
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
214
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
215
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
216
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
217
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
218
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
219
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
220
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
221
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
222
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
223
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
224
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
225
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
226
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
227
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
228
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
229
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
230
+ passenger (4.0.5) lib/phusion_passenger/rack/thread_handler_extension.rb:77:in `process_request'
231
+ passenger (4.0.5) lib/phusion_passenger/request_handler/thread_handler.rb:140:in `accept_and_process_next_request'
232
+ passenger (4.0.5) lib/phusion_passenger/request_handler/thread_handler.rb:108:in `main_loop'
233
+ passenger (4.0.5) lib/phusion_passenger/request_handler.rb:441:in `block (3 levels) in start_threads'
234
+
235
+
236
+ I, [2013-10-13T09:06:51.652179 #87488] INFO -- : Started GET "/assets/common.css?body=1" for 192.168.204.1 at 2013-10-13 09:06:51 +0900
237
+ F, [2013-10-13T09:06:51.659829 #87488] FATAL -- :
238
+ NameError (undefined local variable or method `initialize_ext' for #<Mysql2::Client:0x007f82dbc76e28>):
239
+ mysql2 (0.3.13) lib/mysql2/client.rb:22:in `initialize'
240
+ activerecord (4.0.0) lib/active_record/connection_adapters/mysql2_adapter.rb:18:in `new'
241
+ activerecord (4.0.0) lib/active_record/connection_adapters/mysql2_adapter.rb:18:in `mysql2_connection'
242
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:440:in `new_connection'
243
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:450:in `checkout_new_connection'
244
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:421:in `acquire_connection'
245
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:356:in `block in checkout'
246
+ /Users/js/.rbenv/versions/2.0.0-p195/lib/ruby/2.0.0/monitor.rb:211:in `mon_synchronize'
247
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:355:in `checkout'
248
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:265:in `block in connection'
249
+ /Users/js/.rbenv/versions/2.0.0-p195/lib/ruby/2.0.0/monitor.rb:211:in `mon_synchronize'
250
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:264:in `connection'
251
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:546:in `retrieve_connection'
252
+ activerecord (4.0.0) lib/active_record/connection_handling.rb:79:in `retrieve_connection'
253
+ activerecord (4.0.0) lib/active_record/connection_handling.rb:53:in `connection'
254
+ activerecord (4.0.0) lib/active_record/query_cache.rb:51:in `restore_query_cache_settings'
255
+ activerecord (4.0.0) lib/active_record/query_cache.rb:43:in `rescue in call'
256
+ activerecord (4.0.0) lib/active_record/query_cache.rb:32:in `call'
257
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
258
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
259
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__1249262127794796483__call__callbacks'
260
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
261
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
262
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
263
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
264
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
265
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
266
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
267
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
268
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
269
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
270
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
271
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
272
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
273
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
274
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
275
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
276
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
277
+ passenger (4.0.5) lib/phusion_passenger/rack/thread_handler_extension.rb:77:in `process_request'
278
+ passenger (4.0.5) lib/phusion_passenger/request_handler/thread_handler.rb:140:in `accept_and_process_next_request'
279
+ passenger (4.0.5) lib/phusion_passenger/request_handler/thread_handler.rb:108:in `main_loop'
280
+ passenger (4.0.5) lib/phusion_passenger/request_handler.rb:441:in `block (3 levels) in start_threads'
281
+
282
+
283
+ I, [2013-10-13T09:06:54.235446 #87488] INFO -- : Started GET "/visual_migrate/" for 192.168.204.1 at 2013-10-13 09:06:54 +0900
284
+ F, [2013-10-13T09:06:54.241119 #87488] FATAL -- :
285
+ NameError (undefined local variable or method `initialize_ext' for #<Mysql2::Client:0x007f82dbef4fd8>):
286
+ mysql2 (0.3.13) lib/mysql2/client.rb:22:in `initialize'
287
+ activerecord (4.0.0) lib/active_record/connection_adapters/mysql2_adapter.rb:18:in `new'
288
+ activerecord (4.0.0) lib/active_record/connection_adapters/mysql2_adapter.rb:18:in `mysql2_connection'
289
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:440:in `new_connection'
290
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:450:in `checkout_new_connection'
291
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:421:in `acquire_connection'
292
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:356:in `block in checkout'
293
+ /Users/js/.rbenv/versions/2.0.0-p195/lib/ruby/2.0.0/monitor.rb:211:in `mon_synchronize'
294
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:355:in `checkout'
295
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:265:in `block in connection'
296
+ /Users/js/.rbenv/versions/2.0.0-p195/lib/ruby/2.0.0/monitor.rb:211:in `mon_synchronize'
297
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:264:in `connection'
298
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:546:in `retrieve_connection'
299
+ activerecord (4.0.0) lib/active_record/connection_handling.rb:79:in `retrieve_connection'
300
+ activerecord (4.0.0) lib/active_record/connection_handling.rb:53:in `connection'
301
+ activerecord (4.0.0) lib/active_record/query_cache.rb:51:in `restore_query_cache_settings'
302
+ activerecord (4.0.0) lib/active_record/query_cache.rb:43:in `rescue in call'
303
+ activerecord (4.0.0) lib/active_record/query_cache.rb:32:in `call'
304
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
305
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
306
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__1249262127794796483__call__callbacks'
307
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
308
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
309
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
310
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
311
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
312
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
313
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
314
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
315
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
316
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
317
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
318
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
319
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
320
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
321
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
322
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
323
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
324
+ passenger (4.0.5) lib/phusion_passenger/rack/thread_handler_extension.rb:77:in `process_request'
325
+ passenger (4.0.5) lib/phusion_passenger/request_handler/thread_handler.rb:140:in `accept_and_process_next_request'
326
+ passenger (4.0.5) lib/phusion_passenger/request_handler/thread_handler.rb:108:in `main_loop'
327
+ passenger (4.0.5) lib/phusion_passenger/request_handler.rb:441:in `block (3 levels) in start_threads'
328
+
329
+
@@ -0,0 +1,489 @@
1
+  (0.4ms) begin transaction
2
+ Processing by IndexController#index as HTML
3
+ Rendered index/index.html.erb within layouts/application (0.4ms)
4
+ Completed 200 OK in 13ms (Views: 11.5ms | ActiveRecord: 1.2ms)
5
+  (0.1ms) rollback transaction
6
+  (0.6ms) begin transaction
7
+ Processing by IndexController#index as HTML
8
+ Rendered index/index.html.erb within layouts/application (0.3ms)
9
+ Completed 200 OK in 9ms (Views: 6.9ms | ActiveRecord: 1.4ms)
10
+  (0.1ms) rollback transaction
11
+  (0.4ms) begin transaction
12
+ Processing by IndexController#index as HTML
13
+ Rendered index/index.html.erb within layouts/application (0.3ms)
14
+ Completed 200 OK in 8ms (Views: 6.0ms | ActiveRecord: 1.0ms)
15
+  (0.1ms) rollback transaction
16
+  (0.4ms) begin transaction
17
+ Processing by IndexController#index as HTML
18
+ Rendered index/index.html.erb within layouts/application (0.4ms)
19
+ Completed 200 OK in 11ms (Views: 8.2ms | ActiveRecord: 1.4ms)
20
+  (0.1ms) rollback transaction
21
+  (0.4ms) begin transaction
22
+ Processing by IndexController#index as HTML
23
+ Rendered index/index.html.erb within layouts/application (0.4ms)
24
+ Completed 200 OK in 9ms (Views: 7.2ms | ActiveRecord: 0.9ms)
25
+  (0.1ms) rollback transaction
26
+  (0.4ms) begin transaction
27
+  (0.1ms) rollback transaction
28
+  (0.1ms) begin transaction
29
+ Processing by IndexController#index as HTML
30
+ Completed 200 OK in 6ms (Views: 3.2ms | ActiveRecord: 1.5ms)
31
+  (0.1ms) rollback transaction
32
+  (0.4ms) begin transaction
33
+ Processing by IndexController#index as HTML
34
+ Rendered index/index.html.erb within layouts/application (0.4ms)
35
+ Completed 200 OK in 13ms (Views: 10.6ms | ActiveRecord: 1.4ms)
36
+  (0.1ms) rollback transaction
37
+  (0.1ms) begin transaction
38
+  (0.1ms) rollback transaction
39
+  (0.1ms) begin transaction
40
+  (0.1ms) rollback transaction
41
+  (0.5ms) begin transaction
42
+  (0.1ms) rollback transaction
43
+  (0.1ms) begin transaction
44
+  (0.2ms) rollback transaction
45
+  (0.1ms) begin transaction
46
+ Processing by IndexController#index as HTML
47
+ Completed 200 OK in 46ms (Views: 3.4ms | ActiveRecord: 41.5ms)
48
+  (0.2ms) rollback transaction
49
+  (0.4ms) begin transaction
50
+ Processing by IndexController#index as HTML
51
+ Rendered index/index.html.erb within layouts/application (0.3ms)
52
+ Completed 200 OK in 9ms (Views: 7.2ms | ActiveRecord: 1.2ms)
53
+  (0.1ms) rollback transaction
54
+  (0.1ms) begin transaction
55
+  (0.1ms) rollback transaction
56
+  (0.1ms) begin transaction
57
+  (0.1ms) rollback transaction
58
+  (0.4ms) begin transaction
59
+ Processing by IndexController#index as HTML
60
+ Rendered index/index.html.erb within layouts/application (0.4ms)
61
+ Completed 200 OK in 11ms (Views: 8.9ms | ActiveRecord: 1.2ms)
62
+  (0.1ms) rollback transaction
63
+  (0.1ms) begin transaction
64
+  (0.1ms) rollback transaction
65
+  (0.1ms) begin transaction
66
+  (0.1ms) rollback transaction
67
+  (0.3ms) begin transaction
68
+  (0.2ms) rollback transaction
69
+  (0.1ms) begin transaction
70
+  (0.1ms) rollback transaction
71
+  (0.1ms) begin transaction
72
+ Processing by IndexController#index as HTML
73
+ Completed 200 OK in 36ms (Views: 33.9ms | ActiveRecord: 1.2ms)
74
+  (0.1ms) rollback transaction
75
+  (0.4ms) begin transaction
76
+  (0.1ms) rollback transaction
77
+  (0.1ms) begin transaction
78
+  (0.1ms) rollback transaction
79
+  (0.1ms) begin transaction
80
+  (0.1ms) rollback transaction
81
+  (0.1ms) begin transaction
82
+ Processing by IndexController#index as HTML
83
+ Completed 200 OK in 5ms (Views: 3.3ms | ActiveRecord: 1.2ms)
84
+  (0.1ms) rollback transaction
85
+  (0.4ms) begin transaction
86
+  (0.1ms) rollback transaction
87
+  (0.1ms) begin transaction
88
+  (0.1ms) rollback transaction
89
+  (0.1ms) begin transaction
90
+  (0.1ms) rollback transaction
91
+  (0.1ms) begin transaction
92
+ Processing by IndexController#index as HTML
93
+ Completed 200 OK in 68ms (Views: 66.0ms | ActiveRecord: 1.2ms)
94
+  (0.1ms) rollback transaction
95
+  (0.5ms) begin transaction
96
+ Processing by IndexController#index as HTML
97
+ Rendered index/index.html.erb within layouts/application (0.4ms)
98
+ Completed 200 OK in 12ms (Views: 9.5ms | ActiveRecord: 1.5ms)
99
+  (0.2ms) rollback transaction
100
+  (0.2ms) begin transaction
101
+  (0.2ms) rollback transaction
102
+  (0.1ms) begin transaction
103
+  (0.1ms) rollback transaction
104
+  (0.1ms) begin transaction
105
+  (0.1ms) rollback transaction
106
+  (0.4ms) begin transaction
107
+  (0.1ms) rollback transaction
108
+  (0.1ms) begin transaction
109
+  (0.1ms) rollback transaction
110
+  (0.1ms) begin transaction
111
+  (0.1ms) rollback transaction
112
+  (0.1ms) begin transaction
113
+ Processing by IndexController#index as HTML
114
+ Completed 200 OK in 6ms (Views: 3.3ms | ActiveRecord: 1.5ms)
115
+  (0.1ms) rollback transaction
116
+  (0.4ms) begin transaction
117
+  (0.1ms) rollback transaction
118
+  (0.1ms) begin transaction
119
+  (0.1ms) rollback transaction
120
+  (0.1ms) begin transaction
121
+  (0.1ms) rollback transaction
122
+  (0.1ms) begin transaction
123
+ Processing by IndexController#index as HTML
124
+ Completed 200 OK in 69ms (Views: 67.4ms | ActiveRecord: 0.9ms)
125
+  (0.1ms) rollback transaction
126
+  (0.5ms) begin transaction
127
+ Processing by IndexController#index as HTML
128
+ Rendered index/index.html.erb within layouts/application (0.4ms)
129
+ Completed 200 OK in 43ms (Views: 40.4ms | ActiveRecord: 1.3ms)
130
+  (0.1ms) rollback transaction
131
+  (0.1ms) begin transaction
132
+  (0.1ms) rollback transaction
133
+  (0.1ms) begin transaction
134
+  (0.1ms) rollback transaction
135
+  (0.1ms) begin transaction
136
+  (0.1ms) rollback transaction
137
+  (0.1ms) begin transaction
138
+  (0.1ms) rollback transaction
139
+  (0.4ms) begin transaction
140
+ Processing by IndexController#index as HTML
141
+ Rendered index/index.html.erb within layouts/application (0.4ms)
142
+ Completed 200 OK in 44ms (Views: 42.2ms | ActiveRecord: 1.1ms)
143
+  (0.1ms) rollback transaction
144
+  (0.1ms) begin transaction
145
+ Processing by IndexController#index as HTML
146
+ Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.2ms)
147
+  (0.1ms) rollback transaction
148
+  (0.1ms) begin transaction
149
+ Processing by IndexController#index as HTML
150
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.1ms)
151
+  (0.1ms) rollback transaction
152
+  (0.1ms) begin transaction
153
+ Processing by IndexController#index as HTML
154
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)
155
+  (0.1ms) rollback transaction
156
+  (0.4ms) begin transaction
157
+ Processing by IndexController#index as HTML
158
+ Rendered index/index.html.erb within layouts/application (0.4ms)
159
+ Completed 200 OK in 10ms (Views: 7.9ms | ActiveRecord: 1.1ms)
160
+  (0.1ms) rollback transaction
161
+  (0.1ms) begin transaction
162
+ Processing by IndexController#index as HTML
163
+ Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms)
164
+  (0.1ms) rollback transaction
165
+  (0.1ms) begin transaction
166
+ Processing by IndexController#index as HTML
167
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)
168
+  (0.1ms) rollback transaction
169
+  (0.1ms) begin transaction
170
+ Processing by IndexController#index as HTML
171
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.2ms)
172
+  (0.1ms) rollback transaction
173
+  (0.4ms) begin transaction
174
+ Processing by IndexController#index as HTML
175
+ Rendered index/index.html.erb within layouts/application (0.3ms)
176
+ Completed 200 OK in 43ms (Views: 41.7ms | ActiveRecord: 1.0ms)
177
+  (0.1ms) rollback transaction
178
+  (0.1ms) begin transaction
179
+ Processing by IndexController#index as HTML
180
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)
181
+  (0.1ms) rollback transaction
182
+  (0.1ms) begin transaction
183
+ Processing by IndexController#index as HTML
184
+ Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.2ms)
185
+  (0.1ms) rollback transaction
186
+  (0.1ms) begin transaction
187
+ Processing by IndexController#index as HTML
188
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)
189
+  (0.1ms) rollback transaction
190
+  (0.5ms) begin transaction
191
+ Processing by IndexController#index as HTML
192
+ Rendered index/index.html.erb within layouts/application (0.4ms)
193
+ Completed 200 OK in 53ms (Views: 50.9ms | ActiveRecord: 1.2ms)
194
+  (0.4ms) begin transaction
195
+ Processing by IndexController#index as HTML
196
+ Rendered index/index.html.erb within layouts/application (0.4ms)
197
+ Completed 200 OK in 55ms (Views: 53.8ms | ActiveRecord: 1.0ms)
198
+  (0.1ms) rollback transaction
199
+  (0.1ms) begin transaction
200
+ Processing by IndexController#index as HTML
201
+ Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms)
202
+  (0.1ms) rollback transaction
203
+  (0.1ms) begin transaction
204
+ Processing by IndexController#index as HTML
205
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)
206
+  (0.1ms) rollback transaction
207
+  (0.1ms) begin transaction
208
+ Processing by IndexController#index as HTML
209
+ Completed 200 OK in 33ms (Views: 32.8ms | ActiveRecord: 0.2ms)
210
+  (0.1ms) rollback transaction
211
+  (0.4ms) begin transaction
212
+ Processing by IndexController#index as HTML
213
+ Rendered index/index.html.erb within layouts/application (0.3ms)
214
+ Completed 200 OK in 8ms (Views: 6.3ms | ActiveRecord: 1.1ms)
215
+  (0.1ms) rollback transaction
216
+  (0.1ms) begin transaction
217
+ Processing by IndexController#index as HTML
218
+ Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.2ms)
219
+  (0.1ms) rollback transaction
220
+  (0.1ms) begin transaction
221
+ Processing by IndexController#index as HTML
222
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)
223
+  (0.1ms) rollback transaction
224
+  (0.4ms) begin transaction
225
+ Processing by IndexController#index as HTML
226
+ Rendered index/index.html.erb within layouts/application (0.4ms)
227
+ Completed 200 OK in 11ms (Views: 8.4ms | ActiveRecord: 1.3ms)
228
+  (0.1ms) rollback transaction
229
+  (0.1ms) begin transaction
230
+ Processing by IndexController#index as HTML
231
+ Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms)
232
+  (0.1ms) rollback transaction
233
+  (0.1ms) begin transaction
234
+ Processing by IndexController#index as HTML
235
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.2ms)
236
+  (0.2ms) rollback transaction
237
+  (0.4ms) begin transaction
238
+ Processing by IndexController#index as HTML
239
+ Rendered index/index.html.erb within layouts/application (0.3ms)
240
+ Completed 200 OK in 9ms (Views: 6.8ms | ActiveRecord: 1.2ms)
241
+  (0.1ms) rollback transaction
242
+  (0.1ms) begin transaction
243
+ Processing by IndexController#index as HTML
244
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)
245
+  (0.1ms) rollback transaction
246
+  (0.5ms) begin transaction
247
+ Processing by IndexController#index as HTML
248
+ Rendered index/index.html.erb within layouts/application (0.3ms)
249
+ Completed 200 OK in 10ms (Views: 8.1ms | ActiveRecord: 1.3ms)
250
+  (0.1ms) rollback transaction
251
+  (0.1ms) begin transaction
252
+ Processing by IndexController#index as HTML
253
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.2ms)
254
+  (0.1ms) rollback transaction
255
+  (0.1ms) begin transaction
256
+  (0.2ms) rollback transaction
257
+  (0.1ms) begin transaction
258
+  (0.2ms) rollback transaction
259
+  (0.4ms) begin transaction
260
+  (0.2ms) rollback transaction
261
+  (0.1ms) begin transaction
262
+  (0.1ms) rollback transaction
263
+  (0.1ms) begin transaction
264
+ Processing by IndexController#index as HTML
265
+ Completed 200 OK in 6ms (Views: 3.8ms | ActiveRecord: 1.2ms)
266
+  (0.1ms) rollback transaction
267
+  (0.1ms) begin transaction
268
+ Processing by IndexController#index as HTML
269
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.2ms)
270
+  (0.2ms) rollback transaction
271
+  (0.4ms) begin transaction
272
+ Processing by IndexController#index as HTML
273
+ Rendered index/index.html.erb within layouts/application (0.3ms)
274
+ Completed 200 OK in 8ms (Views: 6.4ms | ActiveRecord: 1.2ms)
275
+  (0.1ms) rollback transaction
276
+  (0.1ms) begin transaction
277
+ Processing by IndexController#index as HTML
278
+ Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.2ms)
279
+  (0.1ms) rollback transaction
280
+  (0.1ms) begin transaction
281
+  (0.1ms) rollback transaction
282
+  (0.1ms) begin transaction
283
+  (0.1ms) rollback transaction
284
+  (0.4ms) begin transaction
285
+ Processing by IndexController#index as HTML
286
+ Rendered index/index.html.erb within layouts/application (0.3ms)
287
+ Completed 200 OK in 9ms (Views: 6.9ms | ActiveRecord: 1.1ms)
288
+  (0.1ms) rollback transaction
289
+  (0.1ms) begin transaction
290
+ Processing by IndexController#index as HTML
291
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)
292
+  (0.1ms) rollback transaction
293
+  (0.1ms) begin transaction
294
+  (0.1ms) rollback transaction
295
+  (0.1ms) begin transaction
296
+  (0.1ms) rollback transaction
297
+  (0.3ms) begin transaction
298
+  (0.1ms) rollback transaction
299
+  (0.1ms) begin transaction
300
+  (0.1ms) rollback transaction
301
+  (0.1ms) begin transaction
302
+ Processing by IndexController#index as HTML
303
+ Completed 200 OK in 42ms (Views: 40.0ms | ActiveRecord: 1.1ms)
304
+  (0.1ms) rollback transaction
305
+  (0.1ms) begin transaction
306
+ Processing by IndexController#index as HTML
307
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.2ms)
308
+  (0.1ms) rollback transaction
309
+  (0.4ms) begin transaction
310
+ Processing by IndexController#index as HTML
311
+ Rendered index/index.html.erb within layouts/application (0.4ms)
312
+ Completed 200 OK in 11ms (Views: 8.5ms | ActiveRecord: 1.2ms)
313
+  (0.2ms) rollback transaction
314
+  (0.1ms) begin transaction
315
+ Processing by IndexController#index as HTML
316
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.2ms)
317
+  (0.1ms) rollback transaction
318
+  (0.1ms) begin transaction
319
+  (0.1ms) rollback transaction
320
+  (0.1ms) begin transaction
321
+  (0.1ms) rollback transaction
322
+  (0.5ms) begin transaction
323
+ Rendered index/index.html.erb (140.8ms)
324
+  (0.1ms) rollback transaction
325
+  (0.1ms) begin transaction
326
+  (0.1ms) rollback transaction
327
+  (0.1ms) begin transaction
328
+ Processing by IndexController#index as HTML
329
+ Completed 200 OK in 47ms (Views: 44.7ms | ActiveRecord: 1.2ms)
330
+  (0.1ms) rollback transaction
331
+  (0.1ms) begin transaction
332
+ Processing by IndexController#index as HTML
333
+ Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.2ms)
334
+  (0.1ms) rollback transaction
335
+  (0.5ms) begin transaction
336
+ Processing by IndexController#index as HTML
337
+ Rendered index/index.html.erb within layouts/application (0.5ms)
338
+ Completed 200 OK in 11ms (Views: 9.1ms | ActiveRecord: 1.1ms)
339
+  (0.1ms) rollback transaction
340
+  (0.1ms) begin transaction
341
+ Processing by IndexController#index as HTML
342
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.2ms)
343
+  (0.1ms) rollback transaction
344
+  (0.1ms) begin transaction
345
+  (0.1ms) rollback transaction
346
+  (0.1ms) begin transaction
347
+  (0.1ms) rollback transaction
348
+  (0.4ms) begin transaction
349
+ Processing by IndexController#index as HTML
350
+ Rendered index/index.html.erb within layouts/application (0.4ms)
351
+ Completed 200 OK in 9ms (Views: 7.4ms | ActiveRecord: 1.2ms)
352
+  (0.1ms) rollback transaction
353
+  (0.1ms) begin transaction
354
+ Processing by IndexController#index as HTML
355
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.2ms)
356
+  (0.1ms) rollback transaction
357
+  (0.1ms) begin transaction
358
+  (0.1ms) rollback transaction
359
+  (0.1ms) begin transaction
360
+  (0.1ms) rollback transaction
361
+  (0.4ms) begin transaction
362
+ Processing by IndexController#index as HTML
363
+ Rendered index/index.html.erb within layouts/application (0.3ms)
364
+ Completed 200 OK in 8ms (Views: 6.9ms | ActiveRecord: 1.0ms)
365
+  (0.1ms) rollback transaction
366
+  (0.1ms) begin transaction
367
+ Processing by IndexController#index as HTML
368
+ Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.2ms)
369
+  (0.1ms) rollback transaction
370
+  (0.1ms) begin transaction
371
+  (0.1ms) rollback transaction
372
+  (0.1ms) begin transaction
373
+  (0.1ms) rollback transaction
374
+  (0.4ms) begin transaction
375
+ Processing by IndexController#index as HTML
376
+ Rendered index/index.html.erb within layouts/application (0.3ms)
377
+ Completed 200 OK in 9ms (Views: 7.1ms | ActiveRecord: 1.1ms)
378
+  (0.1ms) rollback transaction
379
+  (0.1ms) begin transaction
380
+ Processing by IndexController#index as HTML
381
+ Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms)
382
+  (0.1ms) rollback transaction
383
+  (0.1ms) begin transaction
384
+  (0.1ms) rollback transaction
385
+  (0.1ms) begin transaction
386
+  (0.1ms) rollback transaction
387
+  (0.4ms) begin transaction
388
+ Processing by IndexController#index as HTML
389
+ Rendered index/index.html.erb within layouts/application (0.4ms)
390
+ Completed 200 OK in 11ms (Views: 9.1ms | ActiveRecord: 1.4ms)
391
+  (0.1ms) rollback transaction
392
+  (0.1ms) begin transaction
393
+ Processing by IndexController#index as HTML
394
+ Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms)
395
+  (0.1ms) rollback transaction
396
+  (0.1ms) begin transaction
397
+  (0.1ms) rollback transaction
398
+  (0.1ms) begin transaction
399
+  (0.1ms) rollback transaction
400
+  (0.4ms) begin transaction
401
+ Processing by IndexController#index as HTML
402
+ Rendered index/index.html.erb within layouts/application (0.4ms)
403
+ Completed 200 OK in 11ms (Views: 8.8ms | ActiveRecord: 1.0ms)
404
+  (0.1ms) rollback transaction
405
+  (0.1ms) begin transaction
406
+ Processing by IndexController#index as HTML
407
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.2ms)
408
+  (0.1ms) rollback transaction
409
+  (0.1ms) begin transaction
410
+  (0.1ms) rollback transaction
411
+  (0.1ms) begin transaction
412
+  (0.1ms) rollback transaction
413
+  (0.4ms) begin transaction
414
+ Processing by IndexController#index as HTML
415
+ Rendered index/index.html.erb within layouts/application (0.4ms)
416
+ Completed 200 OK in 10ms (Views: 8.1ms | ActiveRecord: 1.5ms)
417
+  (0.1ms) rollback transaction
418
+  (0.1ms) begin transaction
419
+ Processing by IndexController#index as HTML
420
+ Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.2ms)
421
+  (0.1ms) rollback transaction
422
+  (0.1ms) begin transaction
423
+  (0.1ms) rollback transaction
424
+  (0.1ms) begin transaction
425
+  (0.1ms) rollback transaction
426
+  (0.3ms) begin transaction
427
+ Processing by IndexController#index as HTML
428
+ Rendered index/index.html.erb within layouts/application (0.3ms)
429
+ Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.9ms)
430
+  (0.1ms) rollback transaction
431
+  (0.1ms) begin transaction
432
+ Processing by IndexController#index as HTML
433
+ Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.2ms)
434
+  (0.1ms) rollback transaction
435
+  (0.1ms) begin transaction
436
+  (0.1ms) rollback transaction
437
+  (0.2ms) begin transaction
438
+  (0.1ms) rollback transaction
439
+  (0.6ms) begin transaction
440
+ Processing by IndexController#index as HTML
441
+ Rendered index/index.html.erb within layouts/application (0.4ms)
442
+ Completed 200 OK in 13ms (Views: 10.7ms | ActiveRecord: 1.0ms)
443
+  (0.1ms) rollback transaction
444
+  (0.1ms) begin transaction
445
+ Processing by IndexController#index as HTML
446
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.2ms)
447
+  (0.1ms) rollback transaction
448
+  (0.1ms) begin transaction
449
+  (0.1ms) rollback transaction
450
+  (0.1ms) begin transaction
451
+  (0.1ms) rollback transaction
452
+  (0.3ms) begin transaction
453
+  (0.1ms) rollback transaction
454
+  (0.1ms) begin transaction
455
+  (0.1ms) rollback transaction
456
+  (0.1ms) begin transaction
457
+ Processing by IndexController#index as HTML
458
+ Completed 200 OK in 7ms (Views: 4.9ms | ActiveRecord: 1.0ms)
459
+  (0.1ms) rollback transaction
460
+  (0.1ms) begin transaction
461
+ Processing by IndexController#index as HTML
462
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.2ms)
463
+  (0.1ms) rollback transaction
464
+  (0.4ms) begin transaction
465
+ Processing by IndexController#index as HTML
466
+ Rendered index/index.html.erb within layouts/application (0.3ms)
467
+ Completed 200 OK in 9ms (Views: 6.5ms | ActiveRecord: 1.5ms)
468
+  (0.1ms) rollback transaction
469
+  (0.1ms) begin transaction
470
+ Processing by IndexController#index as HTML
471
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.1ms)
472
+  (0.1ms) rollback transaction
473
+  (0.1ms) begin transaction
474
+  (0.1ms) rollback transaction
475
+  (0.1ms) begin transaction
476
+  (0.1ms) rollback transaction
477
+  (0.4ms) begin transaction
478
+ Processing by IndexController#index as HTML
479
+ Rendered index/index.html.erb within layouts/application (0.4ms)
480
+ Completed 200 OK in 10ms (Views: 8.4ms | ActiveRecord: 1.1ms)
481
+  (0.2ms) rollback transaction
482
+  (0.1ms) begin transaction
483
+ Processing by IndexController#index as HTML
484
+ Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.2ms)
485
+  (0.1ms) rollback transaction
486
+  (0.1ms) begin transaction
487
+  (0.1ms) rollback transaction
488
+  (0.1ms) begin transaction
489
+  (0.1ms) rollback transaction