analyze 0.0.1 → 0.0.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 (86) hide show
  1. data/{LICENSE.txt → MIT-LICENSE} +2 -4
  2. data/README.rdoc +3 -0
  3. data/Rakefile +40 -1
  4. data/app/assets/javascripts/analyze/index.js +15 -0
  5. data/app/assets/javascripts/analyze/tracker.js +13 -0
  6. data/app/assets/stylesheets/analyze/application.css +13 -0
  7. data/app/controllers/analyze/application_controller.rb +4 -0
  8. data/app/controllers/analyze/user_visits_controller.rb +10 -0
  9. data/app/helpers/analyze/application_helper.rb +4 -0
  10. data/app/models/analyze/user_visit.rb +15 -0
  11. data/app/views/layouts/analyze/application.html.erb +14 -0
  12. data/config/routes.rb +3 -0
  13. data/db/migrate/20130401222410_create_analyze_user_visits.rb +12 -0
  14. data/lib/analyze.rb +2 -2
  15. data/lib/analyze/engine.rb +5 -0
  16. data/lib/analyze/tracker.rb +19 -0
  17. data/lib/analyze/version.rb +1 -1
  18. data/lib/tasks/analyze_tasks.rake +4 -0
  19. data/test/analyze_test.rb +7 -0
  20. data/test/dummy/README.rdoc +261 -0
  21. data/test/dummy/Rakefile +7 -0
  22. data/test/dummy/app/assets/javascripts/application.js +16 -0
  23. data/test/dummy/app/assets/javascripts/home.js +4 -0
  24. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  25. data/test/dummy/app/assets/stylesheets/home.css +4 -0
  26. data/test/dummy/app/controllers/application_controller.rb +6 -0
  27. data/test/dummy/app/controllers/home_controller.rb +4 -0
  28. data/test/dummy/app/helpers/application_helper.rb +2 -0
  29. data/test/dummy/app/helpers/home_helper.rb +2 -0
  30. data/test/dummy/app/views/home/index.html.erb +2 -0
  31. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  32. data/test/dummy/config.ru +4 -0
  33. data/test/dummy/config/application.rb +59 -0
  34. data/test/dummy/config/boot.rb +10 -0
  35. data/test/dummy/config/database.yml +25 -0
  36. data/test/dummy/config/environment.rb +5 -0
  37. data/test/dummy/config/environments/development.rb +37 -0
  38. data/test/dummy/config/environments/production.rb +67 -0
  39. data/test/dummy/config/environments/test.rb +37 -0
  40. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  41. data/test/dummy/config/initializers/inflections.rb +15 -0
  42. data/test/dummy/config/initializers/mime_types.rb +5 -0
  43. data/test/dummy/config/initializers/secret_token.rb +7 -0
  44. data/test/dummy/config/initializers/session_store.rb +8 -0
  45. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  46. data/test/dummy/config/locales/en.yml +5 -0
  47. data/test/dummy/config/routes.rb +6 -0
  48. data/test/dummy/db/development.sqlite3 +0 -0
  49. data/test/dummy/db/migrate/20130401223200_create_analyze_user_visits.analyze.rb +13 -0
  50. data/test/dummy/db/schema.rb +25 -0
  51. data/test/dummy/log/development.log +1447 -0
  52. data/test/dummy/public/404.html +26 -0
  53. data/test/dummy/public/422.html +26 -0
  54. data/test/dummy/public/500.html +25 -0
  55. data/test/dummy/public/favicon.ico +0 -0
  56. data/test/dummy/script/rails +6 -0
  57. data/test/dummy/test/functional/home_controller_test.rb +9 -0
  58. data/test/dummy/test/unit/helpers/home_helper_test.rb +4 -0
  59. data/test/dummy/tmp/cache/assets/C81/D40/sprockets%2Fbd73939fb5313416525d259b2e1a4639 +0 -0
  60. data/test/dummy/tmp/cache/assets/CD7/0B0/sprockets%2F18b0b345fcb68ffba96846350060433a +0 -0
  61. data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  62. data/test/dummy/tmp/cache/assets/CDA/2E0/sprockets%2F57cf8ca064b9a62db745b467219702a0 +0 -0
  63. data/test/dummy/tmp/cache/assets/CDF/870/sprockets%2Fb878faf942403e313a5b103e5d80488e +0 -0
  64. data/test/dummy/tmp/cache/assets/CF9/7C0/sprockets%2F40fc2f3d2a468a00e463f1d313cb1683 +0 -0
  65. data/test/dummy/tmp/cache/assets/D05/D40/sprockets%2F1c9faaf28d05409b88ad3113374d613c +0 -0
  66. data/test/dummy/tmp/cache/assets/D0A/350/sprockets%2F6ed6c68d13ab2246d5844b3bd27224f4 +0 -0
  67. data/test/dummy/tmp/cache/assets/D15/3F0/sprockets%2F39872498b093360df5f0580acacdb57d +0 -0
  68. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  69. data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  70. data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  71. data/test/dummy/tmp/cache/assets/D78/C50/sprockets%2F60a6ed9381d575bd401fe8e862dae83d +0 -0
  72. data/test/dummy/tmp/cache/assets/D98/8B0/sprockets%2Fedbef6e0d0a4742346cf479f2c522eb0 +0 -0
  73. data/test/dummy/tmp/cache/assets/DC1/AC0/sprockets%2Fa804445bea4e80dacecfbfd4a2316681 +0 -0
  74. data/test/dummy/tmp/cache/assets/DD3/970/sprockets%2F5ada8dbbe84ceb3be960e33931965af5 +0 -0
  75. data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  76. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  77. data/test/dummy/tmp/pids/server.pid +1 -0
  78. data/test/fixtures/analyze/user_visits.yml +13 -0
  79. data/test/integration/navigation_test.rb +10 -0
  80. data/test/test_helper.rb +15 -0
  81. data/test/unit/analyze/user_visit_test.rb +9 -0
  82. metadata +183 -15
  83. data/.gitignore +0 -17
  84. data/Gemfile +0 -4
  85. data/README.md +0 -29
  86. data/analyze.gemspec +0 -19
@@ -0,0 +1,25 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended to check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(:version => 20130401223200) do
15
+
16
+ create_table "analyze_user_visits", :force => true do |t|
17
+ t.integer "user_id"
18
+ t.text "referrer_url"
19
+ t.text "url"
20
+ t.text "params"
21
+ t.datetime "created_at", :null => false
22
+ t.datetime "updated_at", :null => false
23
+ end
24
+
25
+ end
@@ -0,0 +1,1447 @@
1
+ Connecting to database specified by database.yml
2
+ Connecting to database specified by database.yml
3
+
4
+
5
+ Started GET "/home/index" for 127.0.0.1 at 2013-04-01 16:30:02 -0600
6
+ Processing by HomeController#index as HTML
7
+ Completed 500 Internal Server Error in 4ms
8
+
9
+ NameError (undefined local variable or method `params_to_track' for #<HomeController:0x007feeae6b0770>):
10
+ /Users/smsohan/personal/analyze/lib/analyze/tracker.rb:7:in `track_user_visit'
11
+ activesupport (3.2.13) lib/active_support/callbacks.rb:418:in `_run__3490323263737945838__process_action__2883862045393106833__callbacks'
12
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
13
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
14
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
15
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
16
+ actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
17
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
18
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
19
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
20
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
21
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
22
+ actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
23
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
24
+ actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
25
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
26
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
27
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
28
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
29
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
30
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
31
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
32
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
33
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
34
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
35
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
36
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
37
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
38
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
39
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
40
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
41
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
42
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
43
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
44
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
45
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
46
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
47
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
48
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__2466702038499269098__call__847820108029346009__callbacks'
49
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
50
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
51
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
52
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
53
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
54
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
55
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
56
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
57
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
58
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
59
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
60
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
61
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
62
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
63
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
64
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
65
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
66
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
67
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
68
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
69
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
70
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
71
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
72
+ /Users/smsohan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
73
+ /Users/smsohan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
74
+ /Users/smsohan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
75
+
76
+
77
+ Rendered /Users/smsohan/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms)
78
+ Rendered /Users/smsohan/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
79
+ Rendered /Users/smsohan/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.6ms)
80
+
81
+
82
+ Started GET "/home/index" for 127.0.0.1 at 2013-04-01 16:30:53 -0600
83
+ Processing by HomeController#index as HTML
84
+ Completed 500 Internal Server Error in 2ms
85
+
86
+ NameError (undefined local variable or method `params_to_track' for #<HomeController:0x007feeae0bba90>):
87
+ /Users/smsohan/personal/analyze/lib/analyze/tracker.rb:7:in `track_user_visit'
88
+ activesupport (3.2.13) lib/active_support/callbacks.rb:418:in `_run__3490323263737945838__process_action__2883862045393106833__callbacks'
89
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
90
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
91
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
92
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
93
+ actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
94
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
95
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
96
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
97
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
98
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
99
+ actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
100
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
101
+ actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
102
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
103
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
104
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
105
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
106
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
107
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
108
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
109
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
110
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
111
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
112
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
113
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
114
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
115
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
116
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
117
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
118
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
119
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
120
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
121
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
122
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
123
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
124
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
125
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__2466702038499269098__call__847820108029346009__callbacks'
126
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
127
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
128
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
129
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
130
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
131
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
132
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
133
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
134
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
135
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
136
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
137
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
138
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
139
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
140
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
141
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
142
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
143
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
144
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
145
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
146
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
147
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
148
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
149
+ /Users/smsohan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
150
+ /Users/smsohan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
151
+ /Users/smsohan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
152
+
153
+
154
+ Rendered /Users/smsohan/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
155
+ Rendered /Users/smsohan/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
156
+ Rendered /Users/smsohan/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.7ms)
157
+
158
+
159
+ Started GET "/home/index" for 127.0.0.1 at 2013-04-01 16:31:04 -0600
160
+ Processing by HomeController#index as HTML
161
+ Completed 500 Internal Server Error in 3ms
162
+
163
+ NameError (undefined local variable or method `params_to_track' for #<HomeController:0x007feeae5c79d0>):
164
+ /Users/smsohan/personal/analyze/lib/analyze/tracker.rb:7:in `track_user_visit'
165
+ activesupport (3.2.13) lib/active_support/callbacks.rb:418:in `_run__3490323263737945838__process_action__2883862045393106833__callbacks'
166
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
167
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
168
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
169
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
170
+ actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
171
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
172
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
173
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
174
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
175
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
176
+ actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
177
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
178
+ actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
179
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
180
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
181
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
182
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
183
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
184
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
185
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
186
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
187
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
188
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
189
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
190
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
191
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
192
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
193
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
194
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
195
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
196
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
197
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
198
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
199
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
200
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
201
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
202
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__2466702038499269098__call__847820108029346009__callbacks'
203
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
204
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
205
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
206
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
207
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
208
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
209
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
210
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
211
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
212
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
213
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
214
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
215
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
216
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
217
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
218
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
219
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
220
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
221
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
222
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
223
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
224
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
225
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
226
+ /Users/smsohan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
227
+ /Users/smsohan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
228
+ /Users/smsohan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
229
+
230
+
231
+ Rendered /Users/smsohan/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms)
232
+ Rendered /Users/smsohan/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
233
+ Rendered /Users/smsohan/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.2ms)
234
+ Connecting to database specified by database.yml
235
+
236
+
237
+ Started GET "/home/index" for 127.0.0.1 at 2013-04-01 16:31:25 -0600
238
+ Processing by HomeController#index as HTML
239
+ Completed 500 Internal Server Error in 57ms
240
+
241
+ ActiveRecord::StatementInvalid (Could not find table 'analyze_user_visits'):
242
+ activerecord (3.2.13) lib/active_record/connection_adapters/sqlite_adapter.rb:472:in `table_structure'
243
+ activerecord (3.2.13) lib/active_record/connection_adapters/sqlite_adapter.rb:346:in `columns'
244
+ activerecord (3.2.13) lib/active_record/connection_adapters/schema_cache.rb:12:in `block in initialize'
245
+ activerecord (3.2.13) lib/active_record/model_schema.rb:228:in `yield'
246
+ activerecord (3.2.13) lib/active_record/model_schema.rb:228:in `default'
247
+ activerecord (3.2.13) lib/active_record/model_schema.rb:228:in `columns'
248
+ activerecord (3.2.13) lib/active_record/model_schema.rb:243:in `column_defaults'
249
+ activerecord (3.2.13) lib/active_record/base.rb:482:in `initialize'
250
+ activerecord (3.2.13) lib/active_record/validations.rb:39:in `new'
251
+ activerecord (3.2.13) lib/active_record/validations.rb:39:in `create!'
252
+ /Users/smsohan/personal/analyze/lib/analyze/tracker.rb:6:in `track_user_visit'
253
+ activesupport (3.2.13) lib/active_support/callbacks.rb:418:in `_run__312973297265312__process_action__3892487619652590646__callbacks'
254
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
255
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
256
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
257
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
258
+ actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
259
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
260
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
261
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
262
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
263
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
264
+ actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
265
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
266
+ actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
267
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
268
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
269
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
270
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
271
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
272
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
273
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
274
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
275
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
276
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
277
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
278
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
279
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
280
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
281
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
282
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
283
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
284
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
285
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
286
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
287
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
288
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
289
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
290
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__1636127953069030972__call__1001959402410466132__callbacks'
291
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
292
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
293
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
294
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
295
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
296
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
297
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
298
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
299
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
300
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
301
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
302
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
303
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
304
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
305
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
306
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
307
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
308
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
309
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
310
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
311
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
312
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
313
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
314
+ /Users/smsohan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
315
+ /Users/smsohan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
316
+ /Users/smsohan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
317
+
318
+
319
+ Rendered /Users/smsohan/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
320
+ Rendered /Users/smsohan/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
321
+ Rendered /Users/smsohan/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.0ms)
322
+ Connecting to database specified by database.yml
323
+  (0.1ms) select sqlite_version(*)
324
+  (2.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
325
+  (3.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
326
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
327
+ Migrating to CreateAnalyzeUserVisits (20130401223200)
328
+  (0.0ms) begin transaction
329
+  (0.3ms) CREATE TABLE "analyze_user_visits" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "referrer_url" text, "url" text, "params" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
330
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130401223200')
331
+  (5.0ms) commit transaction
332
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
333
+ Connecting to database specified by database.yml
334
+
335
+
336
+ Started GET "/home/index" for 127.0.0.1 at 2013-04-01 16:32:23 -0600
337
+ Processing by HomeController#index as HTML
338
+  (0.1ms) begin transaction
339
+ SQL (26.9ms) INSERT INTO "analyze_user_visits" ("created_at", "params", "referrer_url", "updated_at", "url", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 01 Apr 2013 22:32:23 UTC +00:00], ["params", "{}"], ["referrer_url", nil], ["updated_at", Mon, 01 Apr 2013 22:32:23 UTC +00:00], ["url", "http://localhost:3000/home/index"], ["user_id", nil]]
340
+  (1.4ms) commit transaction
341
+ Rendered home/index.html.erb within layouts/application (2.1ms)
342
+ Compiled home.css (0ms) (pid 19592)
343
+ Compiled application.css (38ms) (pid 19592)
344
+ Compiled jquery.js (2ms) (pid 19592)
345
+ Compiled jquery_ujs.js (0ms) (pid 19592)
346
+ Compiled home.js (0ms) (pid 19592)
347
+ Compiled application.js (70ms) (pid 19592)
348
+ Completed 200 OK in 251ms (Views: 156.3ms | ActiveRecord: 29.8ms)
349
+
350
+
351
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-01 16:32:23 -0600
352
+ Served asset /application.css - 200 OK (16ms)
353
+
354
+
355
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-01 16:32:23 -0600
356
+ Served asset /jquery.js - 200 OK (2ms)
357
+
358
+
359
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-04-01 16:32:23 -0600
360
+ Served asset /home.js - 200 OK (1ms)
361
+
362
+
363
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-01 16:32:23 -0600
364
+ Served asset /application.js - 200 OK (4ms)
365
+
366
+
367
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-04-01 16:32:23 -0600
368
+ Served asset /home.css - 200 OK (2ms)
369
+
370
+
371
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-01 16:32:23 -0600
372
+ Served asset /jquery_ujs.js - 200 OK (2ms)
373
+ Connecting to database specified by database.yml
374
+
375
+
376
+ Started GET "/home/index?hello=world" for 127.0.0.1 at 2013-04-01 16:33:00 -0600
377
+ Processing by HomeController#index as HTML
378
+ Parameters: {"hello"=>"world"}
379
+  (0.1ms) begin transaction
380
+ SQL (0.4ms) INSERT INTO "analyze_user_visits" ("created_at", "params", "referrer_url", "updated_at", "url", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 01 Apr 2013 22:33:00 UTC +00:00], ["params", "{\"hello\":\"world\"}"], ["referrer_url", nil], ["updated_at", Mon, 01 Apr 2013 22:33:00 UTC +00:00], ["url", "http://localhost:3000/home/index?hello=world"], ["user_id", nil]]
381
+  (14.9ms) commit transaction
382
+ Rendered home/index.html.erb within layouts/application (0.0ms)
383
+ Completed 200 OK in 22ms (Views: 4.6ms | ActiveRecord: 15.4ms)
384
+
385
+
386
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-04-01 16:33:00 -0600
387
+ Served asset /home.css - 304 Not Modified (0ms)
388
+
389
+
390
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-04-01 16:33:00 -0600
391
+ Served asset /home.js - 304 Not Modified (0ms)
392
+ Connecting to database specified by database.yml
393
+
394
+
395
+ Started GET "/home/index?hello=world" for 127.0.0.1 at 2013-04-01 16:40:24 -0600
396
+ Processing by HomeController#index as HTML
397
+ Parameters: {"hello"=>"world"}
398
+  (0.1ms) begin transaction
399
+ SQL (65.4ms) INSERT INTO "analyze_user_visits" ("created_at", "params", "referrer_url", "updated_at", "url", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 01 Apr 2013 22:40:24 UTC +00:00], ["params", "{\"hello\":\"world\"}"], ["referrer_url", nil], ["updated_at", Mon, 01 Apr 2013 22:40:24 UTC +00:00], ["url", "http://localhost:3000/home/index?hello=world"], ["user_id", nil]]
400
+  (2.8ms) commit transaction
401
+ Rendered home/index.html.erb within layouts/application (2.0ms)
402
+ Compiled home.js (0ms) (pid 19650)
403
+ Completed 500 Internal Server Error in 572ms
404
+
405
+ ActionView::Template::Error (couldn't find file 'analyze'
406
+ (in /Users/smsohan/personal/analyze/test/dummy/app/assets/javascripts/application.js:15)):
407
+ 3: <head>
408
+ 4: <title>Dummy</title>
409
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
410
+ 6: <%= javascript_include_tag "application" %>
411
+ 7: <%= csrf_meta_tags %>
412
+ 8: </head>
413
+ 9: <body>
414
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb__1372607386250341587_70359827367580'
415
+
416
+
417
+ Rendered /Users/smsohan/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms)
418
+ Rendered /Users/smsohan/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
419
+ Rendered /Users/smsohan/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.1ms)
420
+
421
+
422
+ Started GET "/home/index?hello=world" for 127.0.0.1 at 2013-04-01 16:40:56 -0600
423
+ Processing by HomeController#index as HTML
424
+ Parameters: {"hello"=>"world"}
425
+  (0.1ms) begin transaction
426
+ SQL (0.4ms) INSERT INTO "analyze_user_visits" ("created_at", "params", "referrer_url", "updated_at", "url", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 01 Apr 2013 22:40:56 UTC +00:00], ["params", "{\"hello\":\"world\"}"], ["referrer_url", nil], ["updated_at", Mon, 01 Apr 2013 22:40:56 UTC +00:00], ["url", "http://localhost:3000/home/index?hello=world"], ["user_id", nil]]
427
+  (2.2ms) commit transaction
428
+ Rendered home/index.html.erb within layouts/application (0.1ms)
429
+ Completed 500 Internal Server Error in 51ms
430
+
431
+ ActionView::Template::Error (cannot load such file -- coffee_script
432
+ (in /Users/smsohan/personal/analyze/app/assets/javascripts/analyze/tracker.js.coffee)):
433
+ 3: <head>
434
+ 4: <title>Dummy</title>
435
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
436
+ 6: <%= javascript_include_tag "application" %>
437
+ 7: <%= csrf_meta_tags %>
438
+ 8: </head>
439
+ 9: <body>
440
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb__1372607386250341587_70359827367580'
441
+
442
+
443
+ Rendered /Users/smsohan/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
444
+ Rendered /Users/smsohan/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.1ms)
445
+ Rendered /Users/smsohan/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.7ms)
446
+ Connecting to database specified by database.yml
447
+
448
+
449
+ Started GET "/home/index?hello=world" for 127.0.0.1 at 2013-04-01 16:41:09 -0600
450
+ Processing by HomeController#index as HTML
451
+ Parameters: {"hello"=>"world"}
452
+  (0.1ms) begin transaction
453
+ SQL (5.0ms) INSERT INTO "analyze_user_visits" ("created_at", "params", "referrer_url", "updated_at", "url", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 01 Apr 2013 22:41:09 UTC +00:00], ["params", "{\"hello\":\"world\"}"], ["referrer_url", nil], ["updated_at", Mon, 01 Apr 2013 22:41:09 UTC +00:00], ["url", "http://localhost:3000/home/index?hello=world"], ["user_id", nil]]
454
+  (2.1ms) commit transaction
455
+ Rendered home/index.html.erb within layouts/application (1.8ms)
456
+ Completed 500 Internal Server Error in 122ms
457
+
458
+ ActionView::Template::Error (cannot load such file -- coffee_script
459
+ (in /Users/smsohan/personal/analyze/app/assets/javascripts/analyze/tracker.js.coffee)):
460
+ 3: <head>
461
+ 4: <title>Dummy</title>
462
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
463
+ 6: <%= javascript_include_tag "application" %>
464
+ 7: <%= csrf_meta_tags %>
465
+ 8: </head>
466
+ 9: <body>
467
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb__1478760147673250900_70126609070080'
468
+
469
+
470
+ Rendered /Users/smsohan/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms)
471
+ Rendered /Users/smsohan/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
472
+ Rendered /Users/smsohan/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.2ms)
473
+ Connecting to database specified by database.yml
474
+
475
+
476
+ Started GET "/home/index?hello=world" for 127.0.0.1 at 2013-04-01 16:42:14 -0600
477
+ Processing by HomeController#index as HTML
478
+ Parameters: {"hello"=>"world"}
479
+  (0.1ms) begin transaction
480
+ SQL (4.5ms) INSERT INTO "analyze_user_visits" ("created_at", "params", "referrer_url", "updated_at", "url", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 01 Apr 2013 22:42:15 UTC +00:00], ["params", "{\"hello\":\"world\"}"], ["referrer_url", nil], ["updated_at", Mon, 01 Apr 2013 22:42:15 UTC +00:00], ["url", "http://localhost:3000/home/index?hello=world"], ["user_id", nil]]
481
+  (1.8ms) commit transaction
482
+ Rendered home/index.html.erb within layouts/application (1.8ms)
483
+ Compiled analyze/tracker.js (0ms) (pid 19659)
484
+ Compiled analyze/index.js (10ms) (pid 19659)
485
+ Compiled application.js (24ms) (pid 19659)
486
+ Completed 200 OK in 133ms (Views: 76.1ms | ActiveRecord: 7.9ms)
487
+
488
+
489
+ Started GET "/assets/analyze/index.js?body=1" for 127.0.0.1 at 2013-04-01 16:42:15 -0600
490
+ Served asset /analyze/index.js - 200 OK (19ms)
491
+
492
+
493
+ Started GET "/assets/analyze/tracker.js?body=1" for 127.0.0.1 at 2013-04-01 16:42:15 -0600
494
+ Served asset /analyze/tracker.js - 200 OK (4ms)
495
+
496
+
497
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-01 16:42:15 -0600
498
+ Served asset /application.css - 304 Not Modified (3ms)
499
+
500
+
501
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-04-01 16:42:15 -0600
502
+ Served asset /home.css - 304 Not Modified (4ms)
503
+
504
+
505
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-01 16:42:15 -0600
506
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
507
+
508
+
509
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-01 16:42:15 -0600
510
+ Served asset /jquery.js - 304 Not Modified (3ms)
511
+
512
+
513
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-04-01 16:42:15 -0600
514
+ Served asset /home.js - 200 OK (1ms)
515
+
516
+
517
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-01 16:42:15 -0600
518
+ Served asset /application.js - 200 OK (10ms)
519
+
520
+
521
+ Started GET "/home/index?hello=world" for 127.0.0.1 at 2013-04-01 16:43:20 -0600
522
+ Processing by HomeController#index as HTML
523
+ Parameters: {"hello"=>"world"}
524
+  (0.1ms) begin transaction
525
+ SQL (6.2ms) INSERT INTO "analyze_user_visits" ("created_at", "params", "referrer_url", "updated_at", "url", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 01 Apr 2013 22:43:20 UTC +00:00], ["params", "{\"hello\":\"world\"}"], ["referrer_url", nil], ["updated_at", Mon, 01 Apr 2013 22:43:20 UTC +00:00], ["url", "http://localhost:3000/home/index?hello=world"], ["user_id", nil]]
526
+  (1.3ms) commit transaction
527
+ Rendered home/index.html.erb within layouts/application (0.0ms)
528
+ Completed 200 OK in 35ms (Views: 25.4ms | ActiveRecord: 7.6ms)
529
+
530
+
531
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-01 16:43:20 -0600
532
+ Served asset /application.css - 304 Not Modified (0ms)
533
+
534
+
535
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-01 16:43:20 -0600
536
+ Served asset /jquery.js - 304 Not Modified (0ms)
537
+
538
+
539
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-01 16:43:20 -0600
540
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
541
+
542
+
543
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-04-01 16:43:20 -0600
544
+ Served asset /home.css - 304 Not Modified (0ms)
545
+
546
+
547
+ Started GET "/assets/analyze/tracker.js?body=1" for 127.0.0.1 at 2013-04-01 16:43:20 -0600
548
+ Served asset /analyze/tracker.js - 304 Not Modified (0ms)
549
+
550
+
551
+ Started GET "/assets/analyze/index.js?body=1" for 127.0.0.1 at 2013-04-01 16:43:20 -0600
552
+ Served asset /analyze/index.js - 304 Not Modified (0ms)
553
+
554
+
555
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-04-01 16:43:20 -0600
556
+ Served asset /home.js - 304 Not Modified (0ms)
557
+
558
+
559
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-01 16:43:20 -0600
560
+ Served asset /application.js - 304 Not Modified (0ms)
561
+ Connecting to database specified by database.yml
562
+
563
+
564
+ Started GET "/home/index?hello=world" for 127.0.0.1 at 2013-04-01 16:43:52 -0600
565
+ Processing by HomeController#index as HTML
566
+ Parameters: {"hello"=>"world"}
567
+  (0.1ms) begin transaction
568
+ SQL (33.7ms) INSERT INTO "analyze_user_visits" ("created_at", "params", "referrer_url", "updated_at", "url", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 01 Apr 2013 22:43:52 UTC +00:00], ["params", "{\"hello\":\"world\"}"], ["referrer_url", nil], ["updated_at", Mon, 01 Apr 2013 22:43:52 UTC +00:00], ["url", "http://localhost:3000/home/index?hello=world"], ["user_id", nil]]
569
+  (1.6ms) commit transaction
570
+ Rendered home/index.html.erb within layouts/application (2.1ms)
571
+ Compiled analyze/tracker.js (0ms) (pid 19662)
572
+ Compiled analyze/index.js (3ms) (pid 19662)
573
+ Compiled application.js (6ms) (pid 19662)
574
+ Completed 200 OK in 154ms (Views: 68.6ms | ActiveRecord: 36.9ms)
575
+
576
+
577
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-04-01 16:43:52 -0600
578
+ Served asset /home.css - 304 Not Modified (1ms)
579
+
580
+
581
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-01 16:43:52 -0600
582
+ Served asset /application.css - 304 Not Modified (3ms)
583
+
584
+
585
+ Started GET "/assets/analyze/tracker.js?body=1" for 127.0.0.1 at 2013-04-01 16:43:52 -0600
586
+ Served asset /analyze/tracker.js - 200 OK (2ms)
587
+
588
+
589
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-01 16:43:52 -0600
590
+ Served asset /jquery.js - 304 Not Modified (2ms)
591
+
592
+
593
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-01 16:43:52 -0600
594
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
595
+
596
+
597
+ Started GET "/assets/analyze/index.js?body=1" for 127.0.0.1 at 2013-04-01 16:43:52 -0600
598
+ Served asset /analyze/index.js - 304 Not Modified (8ms)
599
+
600
+
601
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-04-01 16:43:52 -0600
602
+ Served asset /home.js - 304 Not Modified (2ms)
603
+
604
+
605
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-01 16:43:52 -0600
606
+ Served asset /application.js - 304 Not Modified (10ms)
607
+
608
+
609
+ Started GET "/home/analyze/user_visits?from=js" for 127.0.0.1 at 2013-04-01 16:43:52 -0600
610
+
611
+ ActionController::RoutingError (No route matches [GET] "/home/analyze/user_visits"):
612
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
613
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
614
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
615
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
616
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
617
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
618
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
619
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
620
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
621
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
622
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
623
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
624
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
625
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
626
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
627
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
628
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
629
+ /Users/smsohan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
630
+ /Users/smsohan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
631
+ /Users/smsohan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
632
+
633
+
634
+ Rendered /Users/smsohan/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
635
+
636
+
637
+ Started GET "/home/index?hello=world" for 127.0.0.1 at 2013-04-01 16:46:25 -0600
638
+ Processing by HomeController#index as HTML
639
+ Parameters: {"hello"=>"world"}
640
+  (0.1ms) begin transaction
641
+ SQL (0.5ms) INSERT INTO "analyze_user_visits" ("created_at", "params", "referrer_url", "updated_at", "url", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 01 Apr 2013 22:46:25 UTC +00:00], ["params", "{\"hello\":\"world\"}"], ["referrer_url", nil], ["updated_at", Mon, 01 Apr 2013 22:46:25 UTC +00:00], ["url", "http://localhost:3000/home/index?hello=world"], ["user_id", nil]]
642
+  (2.2ms) commit transaction
643
+ Rendered home/index.html.erb within layouts/application (0.0ms)
644
+ Completed 200 OK in 44ms (Views: 5.9ms | ActiveRecord: 3.1ms)
645
+
646
+
647
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-01 16:46:25 -0600
648
+ Served asset /application.css - 304 Not Modified (0ms)
649
+
650
+
651
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-04-01 16:46:25 -0600
652
+ Served asset /home.css - 304 Not Modified (0ms)
653
+
654
+
655
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-01 16:46:25 -0600
656
+ Served asset /jquery.js - 304 Not Modified (0ms)
657
+
658
+
659
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-01 16:46:25 -0600
660
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
661
+
662
+
663
+ Started GET "/assets/analyze/tracker.js?body=1" for 127.0.0.1 at 2013-04-01 16:46:25 -0600
664
+ Served asset /analyze/tracker.js - 304 Not Modified (0ms)
665
+
666
+
667
+ Started GET "/assets/analyze/index.js?body=1" for 127.0.0.1 at 2013-04-01 16:46:25 -0600
668
+ Served asset /analyze/index.js - 304 Not Modified (0ms)
669
+
670
+
671
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-04-01 16:46:25 -0600
672
+ Served asset /home.js - 304 Not Modified (0ms)
673
+
674
+
675
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-01 16:46:25 -0600
676
+ Served asset /application.js - 304 Not Modified (0ms)
677
+
678
+
679
+ Started GET "/home/analyze/user_visits?from=js" for 127.0.0.1 at 2013-04-01 16:46:25 -0600
680
+
681
+ ActionController::RoutingError (No route matches [GET] "/home/analyze/user_visits"):
682
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
683
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
684
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
685
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
686
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
687
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
688
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
689
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
690
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
691
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
692
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
693
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
694
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
695
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
696
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
697
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
698
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
699
+ /Users/smsohan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
700
+ /Users/smsohan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
701
+ /Users/smsohan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
702
+
703
+
704
+ Rendered /Users/smsohan/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
705
+ Connecting to database specified by database.yml
706
+
707
+
708
+ Started GET "/home/index?hello=world" for 127.0.0.1 at 2013-04-01 16:46:32 -0600
709
+ Processing by HomeController#index as HTML
710
+ Parameters: {"hello"=>"world"}
711
+  (0.1ms) begin transaction
712
+ SQL (4.6ms) INSERT INTO "analyze_user_visits" ("created_at", "params", "referrer_url", "updated_at", "url", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 01 Apr 2013 22:46:32 UTC +00:00], ["params", "{\"hello\":\"world\"}"], ["referrer_url", nil], ["updated_at", Mon, 01 Apr 2013 22:46:32 UTC +00:00], ["url", "http://localhost:3000/home/index?hello=world"], ["user_id", nil]]
713
+  (1.9ms) commit transaction
714
+ Rendered home/index.html.erb within layouts/application (1.9ms)
715
+ Completed 200 OK in 84ms (Views: 26.9ms | ActiveRecord: 8.2ms)
716
+
717
+
718
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-01 16:46:32 -0600
719
+ Served asset /application.css - 304 Not Modified (6ms)
720
+
721
+
722
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-01 16:46:32 -0600
723
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
724
+
725
+
726
+ Started GET "/assets/analyze/tracker.js?body=1" for 127.0.0.1 at 2013-04-01 16:46:32 -0600
727
+ Served asset /analyze/tracker.js - 304 Not Modified (3ms)
728
+
729
+
730
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-04-01 16:46:32 -0600
731
+ Served asset /home.css - 304 Not Modified (2ms)
732
+
733
+
734
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-01 16:46:32 -0600
735
+ Served asset /jquery.js - 304 Not Modified (25ms)
736
+
737
+
738
+ Started GET "/assets/analyze/index.js?body=1" for 127.0.0.1 at 2013-04-01 16:46:32 -0600
739
+ Served asset /analyze/index.js - 304 Not Modified (6ms)
740
+
741
+
742
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-04-01 16:46:32 -0600
743
+ Served asset /home.js - 304 Not Modified (2ms)
744
+
745
+
746
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-01 16:46:32 -0600
747
+ Served asset /application.js - 304 Not Modified (10ms)
748
+
749
+
750
+ Started GET "/home/analyze/user_visits?from=js" for 127.0.0.1 at 2013-04-01 16:46:32 -0600
751
+
752
+ ActionController::RoutingError (No route matches [GET] "/home/analyze/user_visits"):
753
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
754
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
755
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
756
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
757
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
758
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
759
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
760
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
761
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
762
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
763
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
764
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
765
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
766
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
767
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
768
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
769
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
770
+ /Users/smsohan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
771
+ /Users/smsohan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
772
+ /Users/smsohan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
773
+
774
+
775
+ Rendered /Users/smsohan/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
776
+ Connecting to database specified by database.yml
777
+
778
+
779
+ Started GET "/home/index?hello=world" for 127.0.0.1 at 2013-04-01 16:47:05 -0600
780
+ Processing by HomeController#index as HTML
781
+ Parameters: {"hello"=>"world"}
782
+  (0.1ms) begin transaction
783
+ SQL (4.5ms) INSERT INTO "analyze_user_visits" ("created_at", "params", "referrer_url", "updated_at", "url", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 01 Apr 2013 22:47:05 UTC +00:00], ["params", "{\"hello\":\"world\"}"], ["referrer_url", nil], ["updated_at", Mon, 01 Apr 2013 22:47:05 UTC +00:00], ["url", "http://localhost:3000/home/index?hello=world"], ["user_id", nil]]
784
+  (2.0ms) commit transaction
785
+ Rendered home/index.html.erb within layouts/application (2.9ms)
786
+ Compiled analyze/tracker.js (0ms) (pid 19668)
787
+ Compiled analyze/index.js (3ms) (pid 19668)
788
+ Compiled application.js (8ms) (pid 19668)
789
+ Completed 200 OK in 129ms (Views: 72.8ms | ActiveRecord: 27.0ms)
790
+
791
+
792
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-01 16:47:05 -0600
793
+ Served asset /application.css - 304 Not Modified (6ms)
794
+
795
+
796
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-04-01 16:47:05 -0600
797
+ Served asset /home.css - 304 Not Modified (2ms)
798
+
799
+
800
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-01 16:47:05 -0600
801
+ Served asset /jquery.js - 304 Not Modified (2ms)
802
+
803
+
804
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-01 16:47:05 -0600
805
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
806
+
807
+
808
+ Started GET "/assets/analyze/tracker.js?body=1" for 127.0.0.1 at 2013-04-01 16:47:05 -0600
809
+ Served asset /analyze/tracker.js - 200 OK (2ms)
810
+
811
+
812
+ Started GET "/assets/analyze/index.js?body=1" for 127.0.0.1 at 2013-04-01 16:47:05 -0600
813
+ Served asset /analyze/index.js - 304 Not Modified (7ms)
814
+
815
+
816
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-04-01 16:47:05 -0600
817
+ Served asset /home.js - 304 Not Modified (2ms)
818
+
819
+
820
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-01 16:47:05 -0600
821
+ Served asset /application.js - 304 Not Modified (9ms)
822
+
823
+
824
+ Started POST "/home/analyze/user_visits" for 127.0.0.1 at 2013-04-01 16:47:05 -0600
825
+
826
+ ActionController::RoutingError (No route matches [POST] "/home/analyze/user_visits"):
827
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
828
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
829
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
830
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
831
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
832
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
833
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
834
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
835
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
836
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
837
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
838
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
839
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
840
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
841
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
842
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
843
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
844
+ /Users/smsohan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
845
+ /Users/smsohan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
846
+ /Users/smsohan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
847
+
848
+
849
+ Rendered /Users/smsohan/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
850
+ Connecting to database specified by database.yml
851
+
852
+
853
+ Started GET "/home/index?hello=world" for 127.0.0.1 at 2013-04-01 16:49:50 -0600
854
+ Processing by HomeController#index as HTML
855
+ Parameters: {"hello"=>"world"}
856
+  (0.1ms) begin transaction
857
+ SQL (0.6ms) INSERT INTO "analyze_user_visits" ("created_at", "params", "referrer_url", "updated_at", "url", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 01 Apr 2013 22:49:50 UTC +00:00], ["params", "{\"hello\":\"world\"}"], ["referrer_url", nil], ["updated_at", Mon, 01 Apr 2013 22:49:50 UTC +00:00], ["url", "http://localhost:3000/home/index?hello=world"], ["user_id", nil]]
858
+  (13.8ms) commit transaction
859
+ Rendered home/index.html.erb within layouts/application (0.0ms)
860
+ Compiled analyze/tracker.js (0ms) (pid 19668)
861
+ Compiled analyze/index.js (4ms) (pid 19668)
862
+ Compiled application.js (5ms) (pid 19668)
863
+ Completed 200 OK in 75ms (Views: 57.4ms | ActiveRecord: 14.5ms)
864
+
865
+
866
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-01 16:49:50 -0600
867
+ Served asset /application.css - 304 Not Modified (0ms)
868
+
869
+
870
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-04-01 16:49:50 -0600
871
+ Served asset /home.css - 304 Not Modified (0ms)
872
+
873
+
874
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-01 16:49:50 -0600
875
+ Served asset /jquery.js - 304 Not Modified (0ms)
876
+
877
+
878
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-01 16:49:50 -0600
879
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
880
+
881
+
882
+ Started GET "/assets/analyze/tracker.js?body=1" for 127.0.0.1 at 2013-04-01 16:49:50 -0600
883
+ Served asset /analyze/tracker.js - 200 OK (6ms)
884
+
885
+
886
+ Started GET "/assets/analyze/index.js?body=1" for 127.0.0.1 at 2013-04-01 16:49:50 -0600
887
+ Served asset /analyze/index.js - 304 Not Modified (5ms)
888
+
889
+
890
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-04-01 16:49:50 -0600
891
+ Served asset /home.js - 304 Not Modified (0ms)
892
+
893
+
894
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-01 16:49:50 -0600
895
+ Served asset /application.js - 304 Not Modified (12ms)
896
+
897
+
898
+ Started POST "/analyze/user_visits" for 127.0.0.1 at 2013-04-01 16:49:50 -0600
899
+
900
+ NoMethodError (undefined method `action' for Analyze::UserVisitsController:Class):
901
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
902
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
903
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
904
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
905
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
906
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
907
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
908
+ railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
909
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
910
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
911
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
912
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
913
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
914
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
915
+ rack (1.4.5) lib/rack/conditionalget.rb:35:in `call'
916
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
917
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
918
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
919
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
920
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
921
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
922
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
923
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
924
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
925
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__2820149085056562411__call__4280691799762519124__callbacks'
926
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
927
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
928
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
929
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
930
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
931
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
932
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
933
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
934
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
935
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
936
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
937
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
938
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
939
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
940
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
941
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
942
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
943
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
944
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
945
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
946
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
947
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
948
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
949
+ /Users/smsohan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
950
+ /Users/smsohan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
951
+ /Users/smsohan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
952
+
953
+
954
+ Rendered /Users/smsohan/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
955
+ Rendered /Users/smsohan/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
956
+ Rendered /Users/smsohan/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.9ms)
957
+
958
+
959
+ Started GET "/home/index?hello=world" for 127.0.0.1 at 2013-04-01 16:51:16 -0600
960
+ Processing by HomeController#index as HTML
961
+ Parameters: {"hello"=>"world"}
962
+  (0.1ms) begin transaction
963
+ SQL (0.5ms) INSERT INTO "analyze_user_visits" ("created_at", "params", "referrer_url", "updated_at", "url", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 01 Apr 2013 22:51:17 UTC +00:00], ["params", "{\"hello\":\"world\"}"], ["referrer_url", nil], ["updated_at", Mon, 01 Apr 2013 22:51:17 UTC +00:00], ["url", "http://localhost:3000/home/index?hello=world"], ["user_id", nil]]
964
+  (2.0ms) commit transaction
965
+ Rendered home/index.html.erb within layouts/application (0.0ms)
966
+ Completed 200 OK in 45ms (Views: 6.3ms | ActiveRecord: 3.0ms)
967
+
968
+
969
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-01 16:51:17 -0600
970
+ Served asset /application.css - 304 Not Modified (0ms)
971
+
972
+
973
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-04-01 16:51:17 -0600
974
+ Served asset /home.css - 304 Not Modified (0ms)
975
+
976
+
977
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-01 16:51:17 -0600
978
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
979
+
980
+
981
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-01 16:51:17 -0600
982
+ Served asset /jquery.js - 304 Not Modified (0ms)
983
+
984
+
985
+ Started GET "/assets/analyze/tracker.js?body=1" for 127.0.0.1 at 2013-04-01 16:51:17 -0600
986
+ Served asset /analyze/tracker.js - 304 Not Modified (0ms)
987
+
988
+
989
+ Started GET "/assets/analyze/index.js?body=1" for 127.0.0.1 at 2013-04-01 16:51:17 -0600
990
+ Served asset /analyze/index.js - 304 Not Modified (0ms)
991
+
992
+
993
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-04-01 16:51:17 -0600
994
+ Served asset /home.js - 304 Not Modified (0ms)
995
+
996
+
997
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-01 16:51:17 -0600
998
+ Served asset /application.js - 304 Not Modified (0ms)
999
+
1000
+
1001
+ Started POST "/analyze/user_visits" for 127.0.0.1 at 2013-04-01 16:51:17 -0600
1002
+ Processing by Analyze::UserVisitsController#create as */*
1003
+ Parameters: {"from"=>"js"}
1004
+ WARNING: Can't verify CSRF token authenticity
1005
+  (0.1ms) begin transaction
1006
+ SQL (0.6ms) INSERT INTO "analyze_user_visits" ("created_at", "params", "referrer_url", "updated_at", "url", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 01 Apr 2013 22:51:17 UTC +00:00], ["params", "{\"from\":\"js\"}"], ["referrer_url", nil], ["updated_at", Mon, 01 Apr 2013 22:51:17 UTC +00:00], ["url", "http://localhost:3000/analyze/user_visits"], ["user_id", nil]]
1007
+  (1.5ms) commit transaction
1008
+  (0.1ms) begin transaction
1009
+ SQL (0.4ms) INSERT INTO "analyze_user_visits" ("created_at", "params", "referrer_url", "updated_at", "url", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 01 Apr 2013 22:51:17 UTC +00:00], ["params", "{\"from\":\"js\"}"], ["referrer_url", nil], ["updated_at", Mon, 01 Apr 2013 22:51:17 UTC +00:00], ["url", "http://localhost:3000/analyze/user_visits"], ["user_id", nil]]
1010
+  (1.3ms) commit transaction
1011
+ Completed 500 Internal Server Error in 24ms
1012
+
1013
+ ActionView::MissingTemplate (Missing template analyze/user_visits/create, application/create with {:locale=>[:en], :formats=>[:html, :text, :js, :css, :ics, :csv, :png, :jpeg, :gif, :bmp, :tiff, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip], :handlers=>[:erb, :builder]}. Searched in:
1014
+ * "/Users/smsohan/personal/analyze/test/dummy/app/views"
1015
+ * "/Users/smsohan/personal/analyze/app/views"
1016
+ ):
1017
+ actionpack (3.2.13) lib/action_view/path_set.rb:58:in `find'
1018
+ actionpack (3.2.13) lib/action_view/lookup_context.rb:109:in `find'
1019
+ actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template'
1020
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:34:in `determine_template'
1021
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:10:in `render'
1022
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
1023
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
1024
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
1025
+ actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
1026
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
1027
+ actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
1028
+ actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
1029
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
1030
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
1031
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
1032
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
1033
+ /Users/smsohan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
1034
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
1035
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
1036
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
1037
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
1038
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
1039
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
1040
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
1041
+ actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
1042
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
1043
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1044
+ activesupport (3.2.13) lib/active_support/callbacks.rb:425:in `_run__2950157063217143568__process_action__2151697991571493164__callbacks'
1045
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
1046
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
1047
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
1048
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
1049
+ actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
1050
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
1051
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
1052
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1053
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
1054
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
1055
+ actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
1056
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1057
+ actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
1058
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
1059
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
1060
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1061
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
1062
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
1063
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1064
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
1065
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
1066
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
1067
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
1068
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
1069
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
1070
+ railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
1071
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
1072
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
1073
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
1074
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
1075
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1076
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
1077
+ rack (1.4.5) lib/rack/conditionalget.rb:35:in `call'
1078
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
1079
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1080
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
1081
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
1082
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
1083
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
1084
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
1085
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
1086
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1087
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__2820149085056562411__call__4280691799762519124__callbacks'
1088
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
1089
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1090
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
1091
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1092
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1093
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1094
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1095
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1096
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
1097
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
1098
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
1099
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
1100
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1101
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
1102
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
1103
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1104
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
1105
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
1106
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
1107
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
1108
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
1109
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
1110
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
1111
+ /Users/smsohan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1112
+ /Users/smsohan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1113
+ /Users/smsohan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1114
+
1115
+
1116
+ Rendered /Users/smsohan/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.6ms)
1117
+ Connecting to database specified by database.yml
1118
+
1119
+
1120
+ Started GET "/home/index?hello=world" for 127.0.0.1 at 2013-04-01 16:51:24 -0600
1121
+ Processing by HomeController#index as HTML
1122
+ Parameters: {"hello"=>"world"}
1123
+  (0.1ms) begin transaction
1124
+ SQL (4.6ms) INSERT INTO "analyze_user_visits" ("created_at", "params", "referrer_url", "updated_at", "url", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 01 Apr 2013 22:51:24 UTC +00:00], ["params", "{\"hello\":\"world\"}"], ["referrer_url", nil], ["updated_at", Mon, 01 Apr 2013 22:51:24 UTC +00:00], ["url", "http://localhost:3000/home/index?hello=world"], ["user_id", nil]]
1125
+  (2.0ms) commit transaction
1126
+ Rendered home/index.html.erb within layouts/application (1.9ms)
1127
+ Completed 200 OK in 84ms (Views: 26.4ms | ActiveRecord: 8.2ms)
1128
+
1129
+
1130
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-04-01 16:51:24 -0600
1131
+ Served asset /home.css - 304 Not Modified (4ms)
1132
+
1133
+
1134
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-01 16:51:24 -0600
1135
+ Served asset /application.css - 304 Not Modified (4ms)
1136
+
1137
+
1138
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-01 16:51:24 -0600
1139
+ Served asset /jquery_ujs.js - 304 Not Modified (5ms)
1140
+
1141
+
1142
+ Started GET "/assets/analyze/tracker.js?body=1" for 127.0.0.1 at 2013-04-01 16:51:24 -0600
1143
+ Served asset /analyze/tracker.js - 304 Not Modified (2ms)
1144
+
1145
+
1146
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-01 16:51:24 -0600
1147
+ Served asset /jquery.js - 304 Not Modified (24ms)
1148
+
1149
+
1150
+ Started GET "/assets/analyze/index.js?body=1" for 127.0.0.1 at 2013-04-01 16:51:24 -0600
1151
+ Served asset /analyze/index.js - 304 Not Modified (9ms)
1152
+
1153
+
1154
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-04-01 16:51:24 -0600
1155
+ Served asset /home.js - 304 Not Modified (1ms)
1156
+
1157
+
1158
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-01 16:51:24 -0600
1159
+ Served asset /application.js - 304 Not Modified (9ms)
1160
+
1161
+
1162
+ Started POST "/analyze/user_visits" for 127.0.0.1 at 2013-04-01 16:51:24 -0600
1163
+ Processing by Analyze::UserVisitsController#create as */*
1164
+ Parameters: {"from"=>"js"}
1165
+ WARNING: Can't verify CSRF token authenticity
1166
+  (0.1ms) begin transaction
1167
+ SQL (0.8ms) INSERT INTO "analyze_user_visits" ("created_at", "params", "referrer_url", "updated_at", "url", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 01 Apr 2013 22:51:24 UTC +00:00], ["params", "{\"from\":\"js\"}"], ["referrer_url", nil], ["updated_at", Mon, 01 Apr 2013 22:51:24 UTC +00:00], ["url", "http://localhost:3000/analyze/user_visits"], ["user_id", nil]]
1168
+  (17.1ms) commit transaction
1169
+  (0.1ms) begin transaction
1170
+ SQL (0.5ms) INSERT INTO "analyze_user_visits" ("created_at", "params", "referrer_url", "updated_at", "url", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 01 Apr 2013 22:51:24 UTC +00:00], ["params", "{\"from\":\"js\"}"], ["referrer_url", nil], ["updated_at", Mon, 01 Apr 2013 22:51:24 UTC +00:00], ["url", "http://localhost:3000/analyze/user_visits"], ["user_id", nil]]
1171
+  (3.0ms) commit transaction
1172
+ Completed 500 Internal Server Error in 42ms
1173
+
1174
+ ActionView::MissingTemplate (Missing template analyze/user_visits/create, application/create with {:locale=>[:en], :formats=>[:html, :text, :js, :css, :ics, :csv, :png, :jpeg, :gif, :bmp, :tiff, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip], :handlers=>[:erb, :builder]}. Searched in:
1175
+ * "/Users/smsohan/personal/analyze/test/dummy/app/views"
1176
+ * "/Users/smsohan/personal/analyze/app/views"
1177
+ ):
1178
+ actionpack (3.2.13) lib/action_view/path_set.rb:58:in `find'
1179
+ actionpack (3.2.13) lib/action_view/lookup_context.rb:109:in `find'
1180
+ actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template'
1181
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:34:in `determine_template'
1182
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:10:in `render'
1183
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
1184
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
1185
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
1186
+ actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
1187
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
1188
+ actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
1189
+ actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
1190
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
1191
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
1192
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
1193
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
1194
+ /Users/smsohan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
1195
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
1196
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
1197
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
1198
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
1199
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
1200
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
1201
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
1202
+ actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
1203
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
1204
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1205
+ activesupport (3.2.13) lib/active_support/callbacks.rb:425:in `_run__3971573766905072845__process_action__4137100093548686715__callbacks'
1206
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
1207
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
1208
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
1209
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
1210
+ actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
1211
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
1212
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
1213
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1214
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
1215
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
1216
+ actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
1217
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1218
+ actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
1219
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
1220
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
1221
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1222
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
1223
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
1224
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1225
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
1226
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
1227
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
1228
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
1229
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
1230
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
1231
+ railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
1232
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
1233
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
1234
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
1235
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
1236
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1237
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
1238
+ rack (1.4.5) lib/rack/conditionalget.rb:35:in `call'
1239
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
1240
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1241
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
1242
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
1243
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
1244
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
1245
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
1246
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
1247
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1248
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__3640095067983389464__call__753410730922610783__callbacks'
1249
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
1250
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1251
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
1252
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1253
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1254
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1255
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1256
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1257
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
1258
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
1259
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
1260
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
1261
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1262
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
1263
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
1264
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1265
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
1266
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
1267
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
1268
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
1269
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
1270
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
1271
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
1272
+ /Users/smsohan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1273
+ /Users/smsohan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1274
+ /Users/smsohan/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1275
+
1276
+
1277
+ Rendered /Users/smsohan/.rvm/gems/ruby-1.9.3-p286/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.7ms)
1278
+
1279
+
1280
+ Started GET "/home/index?hello=world" for 127.0.0.1 at 2013-04-01 16:51:57 -0600
1281
+ Processing by HomeController#index as HTML
1282
+ Parameters: {"hello"=>"world"}
1283
+  (0.1ms) begin transaction
1284
+ SQL (0.5ms) INSERT INTO "analyze_user_visits" ("created_at", "params", "referrer_url", "updated_at", "url", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 01 Apr 2013 22:51:58 UTC +00:00], ["params", "{\"hello\":\"world\"}"], ["referrer_url", nil], ["updated_at", Mon, 01 Apr 2013 22:51:58 UTC +00:00], ["url", "http://localhost:3000/home/index?hello=world"], ["user_id", nil]]
1285
+  (2.0ms) commit transaction
1286
+ Rendered home/index.html.erb within layouts/application (0.0ms)
1287
+ Completed 200 OK in 23ms (Views: 6.3ms | ActiveRecord: 2.9ms)
1288
+
1289
+
1290
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-01 16:51:58 -0600
1291
+ Served asset /application.css - 304 Not Modified (0ms)
1292
+
1293
+
1294
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-04-01 16:51:58 -0600
1295
+ Served asset /home.css - 304 Not Modified (0ms)
1296
+
1297
+
1298
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-01 16:51:58 -0600
1299
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1300
+
1301
+
1302
+ Started GET "/assets/analyze/tracker.js?body=1" for 127.0.0.1 at 2013-04-01 16:51:58 -0600
1303
+ Served asset /analyze/tracker.js - 304 Not Modified (0ms)
1304
+
1305
+
1306
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-01 16:51:58 -0600
1307
+ Served asset /jquery.js - 304 Not Modified (0ms)
1308
+
1309
+
1310
+ Started GET "/assets/analyze/index.js?body=1" for 127.0.0.1 at 2013-04-01 16:51:58 -0600
1311
+ Served asset /analyze/index.js - 304 Not Modified (0ms)
1312
+
1313
+
1314
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-04-01 16:51:58 -0600
1315
+ Served asset /home.js - 304 Not Modified (0ms)
1316
+
1317
+
1318
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-01 16:51:58 -0600
1319
+ Served asset /application.js - 304 Not Modified (0ms)
1320
+
1321
+
1322
+ Started POST "/analyze/user_visits" for 127.0.0.1 at 2013-04-01 16:51:58 -0600
1323
+ Processing by Analyze::UserVisitsController#create as */*
1324
+ Parameters: {"from"=>"js"}
1325
+ WARNING: Can't verify CSRF token authenticity
1326
+  (0.1ms) begin transaction
1327
+ SQL (0.6ms) INSERT INTO "analyze_user_visits" ("created_at", "params", "referrer_url", "updated_at", "url", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 01 Apr 2013 22:51:58 UTC +00:00], ["params", "{\"from\":\"js\"}"], ["referrer_url", nil], ["updated_at", Mon, 01 Apr 2013 22:51:58 UTC +00:00], ["url", "http://localhost:3000/analyze/user_visits"], ["user_id", nil]]
1328
+  (1.8ms) commit transaction
1329
+  (0.0ms) begin transaction
1330
+ SQL (0.4ms) INSERT INTO "analyze_user_visits" ("created_at", "params", "referrer_url", "updated_at", "url", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 01 Apr 2013 22:51:58 UTC +00:00], ["params", "{\"from\":\"js\"}"], ["referrer_url", nil], ["updated_at", Mon, 01 Apr 2013 22:51:58 UTC +00:00], ["url", "http://localhost:3000/analyze/user_visits"], ["user_id", nil]]
1331
+  (1.3ms) commit transaction
1332
+ Completed 201 Created in 9ms (Views: 0.2ms | ActiveRecord: 4.2ms)
1333
+ Connecting to database specified by database.yml
1334
+
1335
+
1336
+ Started GET "/home/index?hello=world" for 127.0.0.1 at 2013-04-01 16:52:06 -0600
1337
+ Processing by HomeController#index as HTML
1338
+ Parameters: {"hello"=>"world"}
1339
+  (0.1ms) begin transaction
1340
+ SQL (4.4ms) INSERT INTO "analyze_user_visits" ("created_at", "params", "referrer_url", "updated_at", "url", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 01 Apr 2013 22:52:06 UTC +00:00], ["params", "{\"hello\":\"world\"}"], ["referrer_url", nil], ["updated_at", Mon, 01 Apr 2013 22:52:06 UTC +00:00], ["url", "http://localhost:3000/home/index?hello=world"], ["user_id", nil]]
1341
+  (2.1ms) commit transaction
1342
+ Rendered home/index.html.erb within layouts/application (2.2ms)
1343
+ Completed 200 OK in 86ms (Views: 28.9ms | ActiveRecord: 8.2ms)
1344
+
1345
+
1346
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-04-01 16:52:06 -0600
1347
+ Served asset /home.css - 304 Not Modified (2ms)
1348
+
1349
+
1350
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-01 16:52:06 -0600
1351
+ Served asset /application.css - 304 Not Modified (3ms)
1352
+
1353
+
1354
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-01 16:52:06 -0600
1355
+ Served asset /jquery.js - 304 Not Modified (2ms)
1356
+
1357
+
1358
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-01 16:52:06 -0600
1359
+ Served asset /jquery_ujs.js - 304 Not Modified (24ms)
1360
+
1361
+
1362
+ Started GET "/assets/analyze/tracker.js?body=1" for 127.0.0.1 at 2013-04-01 16:52:06 -0600
1363
+ Served asset /analyze/tracker.js - 304 Not Modified (4ms)
1364
+
1365
+
1366
+ Started GET "/assets/analyze/index.js?body=1" for 127.0.0.1 at 2013-04-01 16:52:06 -0600
1367
+ Served asset /analyze/index.js - 304 Not Modified (7ms)
1368
+
1369
+
1370
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-04-01 16:52:06 -0600
1371
+ Served asset /home.js - 304 Not Modified (1ms)
1372
+
1373
+
1374
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-01 16:52:06 -0600
1375
+ Served asset /application.js - 304 Not Modified (9ms)
1376
+
1377
+
1378
+ Started POST "/analyze/user_visits" for 127.0.0.1 at 2013-04-01 16:52:06 -0600
1379
+ Processing by Analyze::UserVisitsController#create as */*
1380
+ Parameters: {"from"=>"js"}
1381
+ WARNING: Can't verify CSRF token authenticity
1382
+  (0.1ms) begin transaction
1383
+ SQL (0.7ms) INSERT INTO "analyze_user_visits" ("created_at", "params", "referrer_url", "updated_at", "url", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 01 Apr 2013 22:52:06 UTC +00:00], ["params", "{\"from\":\"js\"}"], ["referrer_url", nil], ["updated_at", Mon, 01 Apr 2013 22:52:06 UTC +00:00], ["url", "http://localhost:3000/analyze/user_visits"], ["user_id", nil]]
1384
+  (2.0ms) commit transaction
1385
+  (0.0ms) begin transaction
1386
+ SQL (0.6ms) INSERT INTO "analyze_user_visits" ("created_at", "params", "referrer_url", "updated_at", "url", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 01 Apr 2013 22:52:06 UTC +00:00], ["params", "{\"from\":\"js\"}"], ["referrer_url", nil], ["updated_at", Mon, 01 Apr 2013 22:52:06 UTC +00:00], ["url", "http://localhost:3000/analyze/user_visits"], ["user_id", nil]]
1387
+  (1.3ms) commit transaction
1388
+ Completed 201 Created in 11ms (Views: 0.2ms | ActiveRecord: 4.6ms)
1389
+ Connecting to database specified by database.yml
1390
+
1391
+
1392
+ Started GET "/home/index?hello=world" for 127.0.0.1 at 2013-04-01 16:56:18 -0600
1393
+ Processing by HomeController#index as HTML
1394
+ Parameters: {"hello"=>"world"}
1395
+  (0.1ms) begin transaction
1396
+ SQL (4.6ms) INSERT INTO "analyze_user_visits" ("created_at", "params", "referrer_url", "updated_at", "url", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 01 Apr 2013 22:56:18 UTC +00:00], ["params", "{\"hello\":\"world\"}"], ["referrer_url", nil], ["updated_at", Mon, 01 Apr 2013 22:56:18 UTC +00:00], ["url", "http://localhost:3000/home/index?hello=world"], ["user_id", nil]]
1397
+  (5.5ms) commit transaction
1398
+ Rendered home/index.html.erb within layouts/application (1.8ms)
1399
+ Compiled analyze/tracker.js (0ms) (pid 19717)
1400
+ Compiled analyze/index.js (3ms) (pid 19717)
1401
+ Compiled application.js (5ms) (pid 19717)
1402
+ Completed 200 OK in 127ms (Views: 65.9ms | ActiveRecord: 11.7ms)
1403
+
1404
+
1405
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-04-01 16:56:18 -0600
1406
+ Served asset /home.css - 304 Not Modified (1ms)
1407
+
1408
+
1409
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-01 16:56:18 -0600
1410
+ Served asset /jquery.js - 304 Not Modified (3ms)
1411
+
1412
+
1413
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-01 16:56:18 -0600
1414
+ Served asset /application.css - 304 Not Modified (2ms)
1415
+
1416
+
1417
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-01 16:56:18 -0600
1418
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
1419
+
1420
+
1421
+ Started GET "/assets/analyze/index.js?body=1" for 127.0.0.1 at 2013-04-01 16:56:18 -0600
1422
+ Served asset /analyze/index.js - 304 Not Modified (7ms)
1423
+
1424
+
1425
+ Started GET "/assets/analyze/tracker.js?body=1" for 127.0.0.1 at 2013-04-01 16:56:18 -0600
1426
+ Served asset /analyze/tracker.js - 200 OK (3ms)
1427
+
1428
+
1429
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-04-01 16:56:18 -0600
1430
+ Served asset /home.js - 304 Not Modified (2ms)
1431
+
1432
+
1433
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-01 16:56:18 -0600
1434
+ Served asset /application.js - 304 Not Modified (12ms)
1435
+
1436
+
1437
+ Started POST "/analyze/user_visits" for 127.0.0.1 at 2013-04-01 16:56:18 -0600
1438
+ Processing by Analyze::UserVisitsController#create as */*
1439
+ Parameters: {"from"=>"js"}
1440
+ WARNING: Can't verify CSRF token authenticity
1441
+  (0.1ms) begin transaction
1442
+ SQL (0.5ms) INSERT INTO "analyze_user_visits" ("created_at", "params", "referrer_url", "updated_at", "url", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 01 Apr 2013 22:56:18 UTC +00:00], ["params", "{\"from\":\"js\"}"], ["referrer_url", nil], ["updated_at", Mon, 01 Apr 2013 22:56:18 UTC +00:00], ["url", "http://localhost:3000/analyze/user_visits"], ["user_id", nil]]
1443
+  (1.8ms) commit transaction
1444
+  (0.1ms) begin transaction
1445
+ SQL (0.6ms) INSERT INTO "analyze_user_visits" ("created_at", "params", "referrer_url", "updated_at", "url", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 01 Apr 2013 22:56:18 UTC +00:00], ["params", "{\"from\":\"js\"}"], ["referrer_url", nil], ["updated_at", Mon, 01 Apr 2013 22:56:18 UTC +00:00], ["url", "http://localhost:3000/analyze/user_visits"], ["user_id", nil]]
1446
+  (1.5ms) commit transaction
1447
+ Completed 201 Created in 10ms (Views: 0.2ms | ActiveRecord: 4.5ms)