plaid_webhook 0.1.0

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 (79) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +3 -0
  4. data/Rakefile +34 -0
  5. data/app/assets/javascripts/plaid_webhook/antennas.js +2 -0
  6. data/app/assets/javascripts/plaid_webhook/application.js +13 -0
  7. data/app/assets/stylesheets/plaid_webhook/antennas.css +4 -0
  8. data/app/assets/stylesheets/plaid_webhook/application.css +13 -0
  9. data/app/assets/stylesheets/scaffold.css +56 -0
  10. data/app/controllers/plaid_webhook/antennas_controller.rb +78 -0
  11. data/app/controllers/plaid_webhook/application_controller.rb +4 -0
  12. data/app/helpers/plaid_webhook/antennas_helper.rb +4 -0
  13. data/app/helpers/plaid_webhook/application_helper.rb +4 -0
  14. data/app/models/plaid_webhook/antenna.rb +4 -0
  15. data/app/views/layouts/plaid_webhook/application.html.erb +14 -0
  16. data/app/views/plaid_webhook/antennas/_form.html.erb +25 -0
  17. data/app/views/plaid_webhook/antennas/edit.html.erb +6 -0
  18. data/app/views/plaid_webhook/antennas/index.html.erb +29 -0
  19. data/app/views/plaid_webhook/antennas/new.html.erb +5 -0
  20. data/app/views/plaid_webhook/antennas/show.html.erb +14 -0
  21. data/config/routes.rb +4 -0
  22. data/db/migrate/20140317165604_create_plaid_webhook_antennas.rb +10 -0
  23. data/lib/plaid_webhook.rb +4 -0
  24. data/lib/plaid_webhook/engine.rb +5 -0
  25. data/lib/plaid_webhook/version.rb +3 -0
  26. data/lib/tasks/plaid_webhook_tasks.rake +4 -0
  27. data/test/controllers/plaid_webhook/antennas_controller_test.rb +51 -0
  28. data/test/dummy/README.rdoc +28 -0
  29. data/test/dummy/Rakefile +6 -0
  30. data/test/dummy/app/assets/javascripts/application.js +13 -0
  31. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  32. data/test/dummy/app/controllers/application_controller.rb +5 -0
  33. data/test/dummy/app/helpers/application_helper.rb +2 -0
  34. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  35. data/test/dummy/bin/bundle +3 -0
  36. data/test/dummy/bin/rails +4 -0
  37. data/test/dummy/bin/rake +4 -0
  38. data/test/dummy/config.ru +4 -0
  39. data/test/dummy/config/application.rb +23 -0
  40. data/test/dummy/config/boot.rb +5 -0
  41. data/test/dummy/config/database.yml +27 -0
  42. data/test/dummy/config/environment.rb +5 -0
  43. data/test/dummy/config/environments/development.rb +29 -0
  44. data/test/dummy/config/environments/production.rb +80 -0
  45. data/test/dummy/config/environments/test.rb +36 -0
  46. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  47. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  48. data/test/dummy/config/initializers/inflections.rb +16 -0
  49. data/test/dummy/config/initializers/mime_types.rb +5 -0
  50. data/test/dummy/config/initializers/secret_token.rb +12 -0
  51. data/test/dummy/config/initializers/session_store.rb +3 -0
  52. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  53. data/test/dummy/config/locales/en.yml +23 -0
  54. data/test/dummy/config/routes.rb +4 -0
  55. data/test/dummy/db/schema.rb +416 -0
  56. data/test/dummy/log/development.log +1707 -0
  57. data/test/dummy/public/404.html +58 -0
  58. data/test/dummy/public/422.html +58 -0
  59. data/test/dummy/public/500.html +57 -0
  60. data/test/dummy/public/favicon.ico +0 -0
  61. data/test/dummy/tmp/cache/assets/development/sprockets/313b7ba89c1d6d55bae830ea251d10e1 +0 -0
  62. data/test/dummy/tmp/cache/assets/development/sprockets/48fa05176e77c5f8cb2872c7026e1447 +0 -0
  63. data/test/dummy/tmp/cache/assets/development/sprockets/52a0c22102e812c0d1fb1c1d50dc70bd +0 -0
  64. data/test/dummy/tmp/cache/assets/development/sprockets/65c0709a9edd756188d69e966ec33b78 +0 -0
  65. data/test/dummy/tmp/cache/assets/development/sprockets/782675a12a422fd46dd45224ab24ba8b +0 -0
  66. data/test/dummy/tmp/cache/assets/development/sprockets/800ad20347f300e6913c8afccf526943 +0 -0
  67. data/test/dummy/tmp/cache/assets/development/sprockets/90588135dc7f2987d8e7c7b9f1174dd1 +0 -0
  68. data/test/dummy/tmp/cache/assets/development/sprockets/a0f94ca468b20983d61c6e055ca3196e +0 -0
  69. data/test/dummy/tmp/cache/assets/development/sprockets/b1286479191163a35a4a9249219cedaa +0 -0
  70. data/test/dummy/tmp/cache/assets/development/sprockets/c11b75288f31a76190ce72c3c3af8fcb +0 -0
  71. data/test/dummy/tmp/cache/assets/development/sprockets/c7adf43ffa343022949de394c3527a76 +0 -0
  72. data/test/dummy/tmp/cache/assets/development/sprockets/eda0583e783b11287a00a5961e26055c +0 -0
  73. data/test/fixtures/plaid_webhook/antennas.yml +9 -0
  74. data/test/helpers/plaid_webhook/antennas_helper_test.rb +6 -0
  75. data/test/integration/navigation_test.rb +10 -0
  76. data/test/models/plaid_webhook/antenna_test.rb +9 -0
  77. data/test/plaid_webhook_test.rb +7 -0
  78. data/test/test_helper.rb +15 -0
  79. metadata +202 -0
@@ -0,0 +1,416 @@
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 that you check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(version: 20140317165604) do
15
+
16
+ # These are extensions that must be enabled in order to support this database
17
+ enable_extension "plpgsql"
18
+
19
+ create_table "billing_codes", force: true do |t|
20
+ t.string "name"
21
+ t.string "description"
22
+ t.integer "rate"
23
+ t.integer "period"
24
+ t.uuid "contract_id"
25
+ t.datetime "created_at"
26
+ t.datetime "updated_at"
27
+ end
28
+
29
+ create_table "billing_infos", force: true do |t|
30
+ t.uuid "user_account_id"
31
+ t.uuid "delegate_account_id"
32
+ t.date "start"
33
+ t.date "start_billing"
34
+ t.integer "billing_code_id"
35
+ t.integer "billing_code_period"
36
+ t.integer "delegate_billing_code_id"
37
+ t.datetime "created_at"
38
+ t.datetime "updated_at"
39
+ end
40
+
41
+ create_table "billing_profiles", force: true do |t|
42
+ t.string "stripe_customer_id"
43
+ t.string "card_number_last4"
44
+ t.integer "card_exp_month"
45
+ t.integer "card_exp_year"
46
+ t.string "card_type"
47
+ t.uuid "user_account_id"
48
+ t.datetime "created_at"
49
+ t.datetime "updated_at"
50
+ end
51
+
52
+ create_table "clients", force: true do |t|
53
+ t.uuid "group_id"
54
+ t.uuid "customer_id"
55
+ t.datetime "created_at"
56
+ t.datetime "updated_at"
57
+ end
58
+
59
+ create_table "cloudsway_users", id: false, force: true do |t|
60
+ t.string "email", default: "", null: false
61
+ t.string "encrypted_password", default: "", null: false
62
+ t.string "reset_password_token"
63
+ t.datetime "reset_password_sent_at"
64
+ t.datetime "remember_created_at"
65
+ t.integer "sign_in_count", default: 0
66
+ t.datetime "current_sign_in_at"
67
+ t.datetime "last_sign_in_at"
68
+ t.string "current_sign_in_ip"
69
+ t.string "last_sign_in_ip"
70
+ t.datetime "created_at"
71
+ t.datetime "updated_at"
72
+ t.uuid "id", null: false
73
+ t.string "prefix"
74
+ t.string "first_name"
75
+ t.string "middle_name"
76
+ t.string "last_name"
77
+ t.string "suffix"
78
+ t.string "nick_name"
79
+ t.string "telephone"
80
+ t.string "alternate_contact_number"
81
+ t.string "avatar"
82
+ t.boolean "gravatar_by_default", default: true
83
+ t.datetime "confirmed_at"
84
+ end
85
+
86
+ add_index "cloudsway_users", ["email"], name: "index_cloudsway_users_on_email", unique: true, using: :btree
87
+ add_index "cloudsway_users", ["reset_password_token"], name: "index_cloudsway_users_on_reset_password_token", unique: true, using: :btree
88
+
89
+ create_table "contracts", id: false, force: true do |t|
90
+ t.string "name"
91
+ t.text "description"
92
+ t.uuid "owner_id"
93
+ t.integer "rate_plan_id"
94
+ t.datetime "created_at"
95
+ t.datetime "updated_at"
96
+ t.uuid "id", null: false
97
+ t.uuid "parent_contract_id"
98
+ t.string "status"
99
+ t.datetime "effective_date"
100
+ t.integer "effective_days"
101
+ end
102
+
103
+ create_table "conversation_to_user_accounts", force: true do |t|
104
+ t.uuid "conversation_id"
105
+ t.uuid "user_account_id"
106
+ t.datetime "created_at"
107
+ t.datetime "updated_at"
108
+ end
109
+
110
+ create_table "conversations", id: false, force: true do |t|
111
+ t.uuid "user_account_id"
112
+ t.integer "status"
113
+ t.datetime "created_at"
114
+ t.datetime "updated_at"
115
+ t.uuid "id", null: false
116
+ end
117
+
118
+ create_table "document_folders", id: false, force: true do |t|
119
+ t.uuid "owner_id"
120
+ t.string "name"
121
+ t.uuid "parent_folder_id"
122
+ t.string "path_from_user_root"
123
+ t.uuid "user_document_repository_id"
124
+ t.string "server_uri"
125
+ t.boolean "orphan"
126
+ t.text "description"
127
+ t.uuid "client_group_id"
128
+ t.text "json_tree"
129
+ t.string "remote_id"
130
+ t.datetime "created_at"
131
+ t.datetime "updated_at"
132
+ t.uuid "id", null: false
133
+ end
134
+
135
+ create_table "document_repository_hosts", force: true do |t|
136
+ t.string "name"
137
+ t.string "string_uri"
138
+ t.string "repo_type"
139
+ t.string "protocol"
140
+ t.string "repo_credential"
141
+ t.string "logo_url"
142
+ t.datetime "created_at"
143
+ t.datetime "updated_at"
144
+ end
145
+
146
+ create_table "documents", id: false, force: true do |t|
147
+ t.uuid "owner_id"
148
+ t.string "filename"
149
+ t.integer "size"
150
+ t.text "description"
151
+ t.string "mime_type"
152
+ t.uuid "document_folder_id"
153
+ t.string "resource_uri"
154
+ t.boolean "orphan"
155
+ t.string "document_file"
156
+ t.string "remote_id"
157
+ t.datetime "created_at"
158
+ t.datetime "updated_at"
159
+ t.uuid "id", null: false
160
+ end
161
+
162
+ create_table "group_members", force: true do |t|
163
+ t.uuid "group_id"
164
+ t.uuid "user_account_id"
165
+ t.datetime "created_at"
166
+ t.datetime "updated_at"
167
+ end
168
+
169
+ create_table "groups", id: false, force: true do |t|
170
+ t.uuid "id", null: false
171
+ t.string "name"
172
+ t.string "description"
173
+ t.uuid "owner_id"
174
+ t.uuid "parent_group_id"
175
+ t.uuid "project_id"
176
+ t.datetime "created_at"
177
+ t.datetime "updated_at"
178
+ t.string "group_type", default: "General"
179
+ end
180
+
181
+ create_table "invitations", force: true do |t|
182
+ t.string "from"
183
+ t.text "from_id"
184
+ t.string "address"
185
+ t.string "subject"
186
+ t.text "content"
187
+ t.string "state"
188
+ t.uuid "invite_object_id"
189
+ t.string "invite_object_type"
190
+ t.uuid "invited_user_account_id"
191
+ t.uuid "invited_user_id"
192
+ t.datetime "created_at"
193
+ t.datetime "updated_at"
194
+ end
195
+
196
+ create_table "invoice_groups", force: true do |t|
197
+ t.uuid "sub_contract_id"
198
+ t.integer "invoice_id"
199
+ t.string "name"
200
+ t.text "description"
201
+ t.string "owner_email"
202
+ t.datetime "created_at"
203
+ t.datetime "updated_at"
204
+ t.decimal "total", precision: 8, scale: 2
205
+ end
206
+
207
+ create_table "invoice_lines", force: true do |t|
208
+ t.integer "invoice_group_id"
209
+ t.integer "count"
210
+ t.integer "billing_code_id"
211
+ t.integer "billing_credit_id"
212
+ t.uuid "user_account_id"
213
+ t.string "account_name"
214
+ t.string "account_email"
215
+ t.text "billing_code_name"
216
+ t.uuid "delegate_account_id"
217
+ t.datetime "created_at"
218
+ t.datetime "updated_at"
219
+ t.decimal "amount", precision: 8, scale: 2
220
+ end
221
+
222
+ create_table "invoices", force: true do |t|
223
+ t.datetime "bill_date"
224
+ t.datetime "payment_date"
225
+ t.uuid "user_account_id"
226
+ t.datetime "failed_date"
227
+ t.text "last_error"
228
+ t.integer "attempts"
229
+ t.datetime "created_at"
230
+ t.datetime "updated_at"
231
+ t.decimal "total_amount", precision: 8, scale: 2
232
+ t.decimal "subtotal_amount", precision: 8, scale: 2
233
+ end
234
+
235
+ create_table "messages", id: false, force: true do |t|
236
+ t.uuid "user_account_id"
237
+ t.string "from"
238
+ t.uuid "from_id"
239
+ t.integer "status"
240
+ t.text "content"
241
+ t.date "date_sent"
242
+ t.string "to"
243
+ t.uuid "to_id"
244
+ t.string "subject"
245
+ t.integer "urgency"
246
+ t.uuid "reply_to"
247
+ t.boolean "is_invitation"
248
+ t.string "encoding"
249
+ t.string "folder_tag"
250
+ t.uuid "conversation_id"
251
+ t.uuid "group_id"
252
+ t.uuid "project_id"
253
+ t.datetime "created_at"
254
+ t.datetime "updated_at"
255
+ t.uuid "id", null: false
256
+ end
257
+
258
+ create_table "permissions", force: true do |t|
259
+ t.uuid "user_account_id"
260
+ t.integer "role_id"
261
+ t.uuid "team_id"
262
+ t.uuid "object_id"
263
+ t.uuid "cloudsway_context_id"
264
+ t.string "cloudsway_context_type"
265
+ t.datetime "created_at"
266
+ t.datetime "updated_at"
267
+ end
268
+
269
+ create_table "plaid_webhook_antennas", force: true do |t|
270
+ t.string "access_token"
271
+ t.text "payload"
272
+ t.datetime "created_at"
273
+ t.datetime "updated_at"
274
+ end
275
+
276
+ create_table "projects", id: false, force: true do |t|
277
+ t.string "name"
278
+ t.string "description"
279
+ t.uuid "owner_id"
280
+ t.uuid "id", null: false
281
+ t.string "image_type"
282
+ t.uuid "image_id"
283
+ t.datetime "created_at"
284
+ t.datetime "updated_at"
285
+ end
286
+
287
+ create_table "rate_plans", force: true do |t|
288
+ t.string "name"
289
+ t.text "description"
290
+ t.integer "account_limit"
291
+ t.integer "user_limit"
292
+ t.integer "file_storage_limit"
293
+ t.integer "admin_limit"
294
+ t.integer "project_limit"
295
+ t.integer "yearly_pricing"
296
+ t.text "individual_rates"
297
+ t.integer "owner_rate"
298
+ t.integer "client_rate"
299
+ t.integer "team_member_rate"
300
+ t.integer "admin_rate"
301
+ t.integer "prospect_rate"
302
+ t.integer "prospect_limit"
303
+ t.integer "client_limit"
304
+ t.string "client_plan"
305
+ t.string "prospect_plan"
306
+ t.datetime "created_at"
307
+ t.datetime "updated_at"
308
+ end
309
+
310
+ create_table "role_rates", force: true do |t|
311
+ t.integer "billing_code_id"
312
+ t.integer "role_id"
313
+ t.datetime "created_at"
314
+ t.datetime "updated_at"
315
+ end
316
+
317
+ create_table "roles", force: true do |t|
318
+ t.string "name"
319
+ t.text "description"
320
+ t.string "cloudsway_context_type"
321
+ t.datetime "created_at"
322
+ t.datetime "updated_at"
323
+ end
324
+
325
+ create_table "sharings", id: false, force: true do |t|
326
+ t.uuid "id", null: false
327
+ t.uuid "owner_id"
328
+ t.integer "share_type"
329
+ t.uuid "share_object_id"
330
+ t.uuid "target_user_account_id"
331
+ t.uuid "target_group_id"
332
+ t.boolean "transferred"
333
+ t.uuid "target_project_id"
334
+ t.datetime "created_at"
335
+ t.datetime "updated_at"
336
+ end
337
+
338
+ create_table "task_lists", id: false, force: true do |t|
339
+ t.string "name"
340
+ t.text "description"
341
+ t.uuid "group_id"
342
+ t.uuid "owner_id"
343
+ t.uuid "project_id"
344
+ t.datetime "created_at"
345
+ t.datetime "updated_at"
346
+ t.uuid "id", null: false
347
+ end
348
+
349
+ create_table "tasks", id: false, force: true do |t|
350
+ t.string "name"
351
+ t.text "description"
352
+ t.uuid "related_task_id"
353
+ t.date "completion_date"
354
+ t.date "start_date"
355
+ t.string "label"
356
+ t.uuid "user_account_id"
357
+ t.uuid "creator"
358
+ t.string "status"
359
+ t.uuid "task_list_id"
360
+ t.datetime "completed_at"
361
+ t.uuid "assigner_id"
362
+ t.uuid "project_id"
363
+ t.integer "recurring_id"
364
+ t.datetime "created_at"
365
+ t.datetime "updated_at"
366
+ t.uuid "id", null: false
367
+ end
368
+
369
+ create_table "user_accounts", id: false, force: true do |t|
370
+ t.string "email", default: "", null: false
371
+ t.uuid "cloudsway_user_id"
372
+ t.string "dba_name"
373
+ t.string "title"
374
+ t.string "organization"
375
+ t.text "description"
376
+ t.string "url"
377
+ t.string "telephone_1"
378
+ t.string "telephone_2"
379
+ t.string "fax"
380
+ t.boolean "locked"
381
+ t.boolean "default_account"
382
+ t.datetime "created_at"
383
+ t.datetime "updated_at"
384
+ t.uuid "id", null: false
385
+ t.uuid "contract_id"
386
+ t.uuid "sub_contract_id"
387
+ t.string "avatar"
388
+ t.boolean "gravatar_by_default", default: true
389
+ end
390
+
391
+ add_index "user_accounts", ["email"], name: "index_user_accounts_on_email", unique: true, using: :btree
392
+
393
+ create_table "user_document_repositories", id: false, force: true do |t|
394
+ t.uuid "owner_id"
395
+ t.date "last_sync_date"
396
+ t.integer "document_repository_host_id"
397
+ t.string "user_credentials"
398
+ t.string "user_path"
399
+ t.string "user_name"
400
+ t.integer "connection_id"
401
+ t.string "connection_type"
402
+ t.datetime "created_at"
403
+ t.datetime "updated_at"
404
+ t.uuid "id", null: false
405
+ end
406
+
407
+ create_table "user_settings", force: true do |t|
408
+ t.uuid "cloudsway_user_id"
409
+ t.string "settings_type"
410
+ t.string "key"
411
+ t.string "value"
412
+ t.datetime "created_at"
413
+ t.datetime "updated_at"
414
+ end
415
+
416
+ end
@@ -0,0 +1,1707 @@
1
+
2
+
3
+ Started GET "/antennas" for 127.0.0.1 at 2014-03-17 11:15:03 -0700
4
+
5
+ ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
6
+ activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:546:in `retrieve_connection'
7
+ activerecord (4.0.4) lib/active_record/connection_handling.rb:79:in `retrieve_connection'
8
+ activerecord (4.0.4) lib/active_record/connection_handling.rb:53:in `connection'
9
+ activerecord (4.0.4) lib/active_record/query_cache.rb:51:in `restore_query_cache_settings'
10
+ activerecord (4.0.4) lib/active_record/query_cache.rb:43:in `rescue in call'
11
+ activerecord (4.0.4) lib/active_record/query_cache.rb:32:in `call'
12
+ activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
13
+ activerecord (4.0.4) lib/active_record/migration.rb:373:in `call'
14
+ actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
15
+ activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__3268236829813801264__call__callbacks'
16
+ activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks'
17
+ actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
18
+ actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call'
19
+ actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
20
+ actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
21
+ actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
22
+ railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app'
23
+ railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call'
24
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
25
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged'
26
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged'
27
+ railties (4.0.4) lib/rails/rack/logger.rb:20:in `call'
28
+ actionpack (4.0.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
29
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
30
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
31
+ activesupport (4.0.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
32
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
33
+ actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call'
34
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
35
+ railties (4.0.4) lib/rails/engine.rb:511:in `call'
36
+ railties (4.0.4) lib/rails/application.rb:97:in `call'
37
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
38
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
39
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
40
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
41
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
42
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
43
+
44
+
45
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
46
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
47
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
48
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (25.6ms)
49
+
50
+
51
+ Started GET "/antennas" for 127.0.0.1 at 2014-03-17 11:16:21 -0700
52
+
53
+ ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
54
+ activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:546:in `retrieve_connection'
55
+ activerecord (4.0.4) lib/active_record/connection_handling.rb:79:in `retrieve_connection'
56
+ activerecord (4.0.4) lib/active_record/connection_handling.rb:53:in `connection'
57
+ activerecord (4.0.4) lib/active_record/query_cache.rb:51:in `restore_query_cache_settings'
58
+ activerecord (4.0.4) lib/active_record/query_cache.rb:43:in `rescue in call'
59
+ activerecord (4.0.4) lib/active_record/query_cache.rb:32:in `call'
60
+ activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
61
+ activerecord (4.0.4) lib/active_record/migration.rb:373:in `call'
62
+ actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
63
+ activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__3268236829813801264__call__callbacks'
64
+ activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks'
65
+ actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
66
+ actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call'
67
+ actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
68
+ actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
69
+ actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
70
+ railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app'
71
+ railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call'
72
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
73
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged'
74
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged'
75
+ railties (4.0.4) lib/rails/rack/logger.rb:20:in `call'
76
+ actionpack (4.0.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
77
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
78
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
79
+ activesupport (4.0.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
80
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
81
+ actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call'
82
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
83
+ railties (4.0.4) lib/rails/engine.rb:511:in `call'
84
+ railties (4.0.4) lib/rails/application.rb:97:in `call'
85
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
86
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
87
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
88
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
89
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
90
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
91
+
92
+
93
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
94
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
95
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
96
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.1ms)
97
+
98
+
99
+ Started GET "/antennas" for 127.0.0.1 at 2014-03-17 11:16:24 -0700
100
+
101
+ ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
102
+ activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:546:in `retrieve_connection'
103
+ activerecord (4.0.4) lib/active_record/connection_handling.rb:79:in `retrieve_connection'
104
+ activerecord (4.0.4) lib/active_record/connection_handling.rb:53:in `connection'
105
+ activerecord (4.0.4) lib/active_record/query_cache.rb:51:in `restore_query_cache_settings'
106
+ activerecord (4.0.4) lib/active_record/query_cache.rb:43:in `rescue in call'
107
+ activerecord (4.0.4) lib/active_record/query_cache.rb:32:in `call'
108
+ activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
109
+ activerecord (4.0.4) lib/active_record/migration.rb:373:in `call'
110
+ actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
111
+ activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__3268236829813801264__call__callbacks'
112
+ activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks'
113
+ actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
114
+ actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call'
115
+ actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
116
+ actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
117
+ actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
118
+ railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app'
119
+ railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call'
120
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
121
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged'
122
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged'
123
+ railties (4.0.4) lib/rails/rack/logger.rb:20:in `call'
124
+ actionpack (4.0.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
125
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
126
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
127
+ activesupport (4.0.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
128
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
129
+ actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call'
130
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
131
+ railties (4.0.4) lib/rails/engine.rb:511:in `call'
132
+ railties (4.0.4) lib/rails/application.rb:97:in `call'
133
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
134
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
135
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
136
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
137
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
138
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
139
+
140
+
141
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
142
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
143
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
144
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.7ms)
145
+
146
+
147
+ Started GET "/antennas" for 127.0.0.1 at 2014-03-17 11:16:40 -0700
148
+
149
+ ActionController::RoutingError (No route matches [GET] "/antennas"):
150
+ actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
151
+ actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
152
+ railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app'
153
+ railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call'
154
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
155
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged'
156
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged'
157
+ railties (4.0.4) lib/rails/rack/logger.rb:20:in `call'
158
+ actionpack (4.0.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
159
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
160
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
161
+ activesupport (4.0.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
162
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
163
+ actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call'
164
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
165
+ railties (4.0.4) lib/rails/engine.rb:511:in `call'
166
+ railties (4.0.4) lib/rails/application.rb:97:in `call'
167
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
168
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
169
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
170
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
171
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
172
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
173
+
174
+
175
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
176
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
177
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms)
178
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.5ms)
179
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (21.8ms)
180
+
181
+
182
+ Started GET "/" for 127.0.0.1 at 2014-03-17 11:16:57 -0700
183
+ Processing by Rails::WelcomeController#index as HTML
184
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/railties-4.0.4/lib/rails/templates/rails/welcome/index.html.erb (0.6ms)
185
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
186
+
187
+
188
+ Started GET "/antennas" for 127.0.0.1 at 2014-03-17 11:17:07 -0700
189
+
190
+ ActionController::RoutingError (No route matches [GET] "/antennas"):
191
+ actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
192
+ actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
193
+ railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app'
194
+ railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call'
195
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
196
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged'
197
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged'
198
+ railties (4.0.4) lib/rails/rack/logger.rb:20:in `call'
199
+ actionpack (4.0.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
200
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
201
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
202
+ activesupport (4.0.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
203
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
204
+ actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call'
205
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
206
+ railties (4.0.4) lib/rails/engine.rb:511:in `call'
207
+ railties (4.0.4) lib/rails/application.rb:97:in `call'
208
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
209
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
210
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
211
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
212
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
213
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
214
+
215
+
216
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (12.4ms)
217
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
218
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms)
219
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
220
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (26.0ms)
221
+
222
+
223
+ Started GET "/plaid_webhook/antennas" for 127.0.0.1 at 2014-03-17 11:17:29 -0700
224
+ Processing by PlaidWebhook::AntennasController#index as HTML
225
+ PlaidWebhook::Antenna Load (0.5ms) SELECT "plaid_webhook_antennas".* FROM "plaid_webhook_antennas"
226
+ PG::UndefinedTable: ERROR: relation "plaid_webhook_antennas" does not exist
227
+ LINE 1: SELECT "plaid_webhook_antennas".* FROM "plaid_webhook_antenn...
228
+ ^
229
+ : SELECT "plaid_webhook_antennas".* FROM "plaid_webhook_antennas"
230
+ Rendered /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/views/plaid_webhook/antennas/index.html.erb within layouts/plaid_webhook/application (5.3ms)
231
+ Completed 500 Internal Server Error in 10ms
232
+
233
+ ActionView::Template::Error (PG::UndefinedTable: ERROR: relation "plaid_webhook_antennas" does not exist
234
+ LINE 1: SELECT "plaid_webhook_antennas".* FROM "plaid_webhook_antenn...
235
+ ^
236
+ : SELECT "plaid_webhook_antennas".* FROM "plaid_webhook_antennas"):
237
+ 12: </thead>
238
+ 13:
239
+ 14: <tbody>
240
+ 15: <% @antennas.each do |antenna| %>
241
+ 16: <tr>
242
+ 17: <td><%= antenna.asset_token %></td>
243
+ 18: <td><%= antenna.payload %></td>
244
+ activerecord (4.0.4) lib/active_record/connection_adapters/postgresql_adapter.rb:791:in `async_exec'
245
+ activerecord (4.0.4) lib/active_record/connection_adapters/postgresql_adapter.rb:791:in `exec_no_cache'
246
+ activerecord (4.0.4) lib/active_record/connection_adapters/postgresql/database_statements.rb:138:in `block in exec_query'
247
+ activerecord (4.0.4) lib/active_record/connection_adapters/abstract_adapter.rb:442:in `block in log'
248
+ activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
249
+ activerecord (4.0.4) lib/active_record/connection_adapters/abstract_adapter.rb:437:in `log'
250
+ activerecord (4.0.4) lib/active_record/connection_adapters/postgresql/database_statements.rb:137:in `exec_query'
251
+ activerecord (4.0.4) lib/active_record/connection_adapters/postgresql_adapter.rb:908:in `select'
252
+ activerecord (4.0.4) lib/active_record/connection_adapters/abstract/database_statements.rb:32:in `select_all'
253
+ activerecord (4.0.4) lib/active_record/connection_adapters/abstract/query_cache.rb:61:in `block in select_all'
254
+ activerecord (4.0.4) lib/active_record/connection_adapters/abstract/query_cache.rb:76:in `cache_sql'
255
+ activerecord (4.0.4) lib/active_record/connection_adapters/abstract/query_cache.rb:61:in `select_all'
256
+ activerecord (4.0.4) lib/active_record/querying.rb:36:in `find_by_sql'
257
+ activerecord (4.0.4) lib/active_record/relation.rb:585:in `exec_queries'
258
+ activerecord (4.0.4) lib/active_record/relation.rb:471:in `load'
259
+ activerecord (4.0.4) lib/active_record/relation.rb:220:in `to_a'
260
+ activerecord (4.0.4) lib/active_record/relation/delegation.rb:12:in `each'
261
+ /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/views/plaid_webhook/antennas/index.html.erb:15:in `___sers_jkoisch__ocuments_cloudsway_ruby_plaid_webhook_app_views_plaid_webhook_antennas_index_html_erb__2774253746680341297_70348503990100'
262
+ actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render'
263
+ activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument'
264
+ actionpack (4.0.4) lib/action_view/template.rb:141:in `render'
265
+ actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
266
+ actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
267
+ activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument'
268
+ activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
269
+ activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument'
270
+ actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
271
+ actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
272
+ actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
273
+ actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
274
+ actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:17:in `render'
275
+ actionpack (4.0.4) lib/action_view/renderer/renderer.rb:42:in `render_template'
276
+ actionpack (4.0.4) lib/action_view/renderer/renderer.rb:23:in `render'
277
+ actionpack (4.0.4) lib/abstract_controller/rendering.rb:127:in `_render_template'
278
+ actionpack (4.0.4) lib/action_controller/metal/streaming.rb:219:in `_render_template'
279
+ actionpack (4.0.4) lib/abstract_controller/rendering.rb:120:in `render_to_body'
280
+ actionpack (4.0.4) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
281
+ actionpack (4.0.4) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
282
+ actionpack (4.0.4) lib/abstract_controller/rendering.rb:97:in `render'
283
+ actionpack (4.0.4) lib/action_controller/metal/rendering.rb:16:in `render'
284
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
285
+ activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
286
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
287
+ activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `ms'
288
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
289
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
290
+ activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
291
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:40:in `render'
292
+ actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
293
+ actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
294
+ actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action'
295
+ actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action'
296
+ actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
297
+ activesupport (4.0.4) lib/active_support/callbacks.rb:383:in `_run__2214048834656884536__process_action__callbacks'
298
+ activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks'
299
+ actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action'
300
+ actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action'
301
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
302
+ activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument'
303
+ activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
304
+ activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument'
305
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
306
+ actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
307
+ activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
308
+ actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process'
309
+ actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process'
310
+ actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch'
311
+ actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
312
+ actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action'
313
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `call'
314
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
315
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call'
316
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
317
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `each'
318
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call'
319
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call'
320
+ railties (4.0.4) lib/rails/engine.rb:511:in `call'
321
+ railties (4.0.4) lib/rails/railtie/configurable.rb:30:in `method_missing'
322
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
323
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `each'
324
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call'
325
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call'
326
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
327
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
328
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
329
+ actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
330
+ actionpack (4.0.4) lib/action_dispatch/middleware/flash.rb:241:in `call'
331
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
332
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
333
+ actionpack (4.0.4) lib/action_dispatch/middleware/cookies.rb:486:in `call'
334
+ activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call'
335
+ activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
336
+ activerecord (4.0.4) lib/active_record/migration.rb:373:in `call'
337
+ actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
338
+ activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__2404650926784705270__call__callbacks'
339
+ activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks'
340
+ actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
341
+ actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call'
342
+ actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
343
+ actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
344
+ actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
345
+ railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app'
346
+ railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call'
347
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
348
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged'
349
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged'
350
+ railties (4.0.4) lib/rails/rack/logger.rb:20:in `call'
351
+ actionpack (4.0.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
352
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
353
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
354
+ activesupport (4.0.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
355
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
356
+ actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call'
357
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
358
+ railties (4.0.4) lib/rails/engine.rb:511:in `call'
359
+ railties (4.0.4) lib/rails/application.rb:97:in `call'
360
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
361
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
362
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
363
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
364
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
365
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
366
+
367
+
368
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
369
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (8.1ms)
370
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (14.4ms)
371
+ ActiveRecord::SchemaMigration Load (4.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
372
+ Migrating to CreatePlaidWebhookAntennas (20140317165604)
373
+  (0.1ms) BEGIN
374
+  (29.3ms) CREATE TABLE "plaid_webhook_antennas" ("id" serial primary key, "asset_token" character varying(255), "payload" text, "created_at" timestamp, "updated_at" timestamp) 
375
+ SQL (1.9ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140317165604"]]
376
+  (0.5ms) COMMIT
377
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
378
+
379
+
380
+ Started GET "/plaid_webhook/antennas" for 127.0.0.1 at 2014-03-17 11:18:14 -0700
381
+ Processing by PlaidWebhook::AntennasController#index as HTML
382
+ PlaidWebhook::Antenna Load (17.9ms) SELECT "plaid_webhook_antennas".* FROM "plaid_webhook_antennas"
383
+ Rendered /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/views/plaid_webhook/antennas/index.html.erb within layouts/plaid_webhook/application (18.7ms)
384
+ Completed 200 OK in 51ms (Views: 32.1ms | ActiveRecord: 17.9ms)
385
+
386
+
387
+ Started GET "/assets/plaid_webhook/application.css?body=1" for 127.0.0.1 at 2014-03-17 11:18:14 -0700
388
+
389
+
390
+ Started GET "/assets/plaid_webhook/antennas.css?body=1" for 127.0.0.1 at 2014-03-17 11:18:14 -0700
391
+
392
+
393
+ Started GET "/assets/plaid_webhook/antennas.js?body=1" for 127.0.0.1 at 2014-03-17 11:18:14 -0700
394
+
395
+
396
+ Started GET "/assets/plaid_webhook/application.js?body=1" for 127.0.0.1 at 2014-03-17 11:18:14 -0700
397
+
398
+
399
+ Started GET "/plaid_webhook/antennas/new" for 127.0.0.1 at 2014-03-17 11:18:16 -0700
400
+ Processing by PlaidWebhook::AntennasController#new as HTML
401
+ Rendered /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/views/plaid_webhook/antennas/_form.html.erb (15.4ms)
402
+ Rendered /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/views/plaid_webhook/antennas/new.html.erb within layouts/plaid_webhook/application (17.3ms)
403
+ Completed 200 OK in 28ms (Views: 20.8ms | ActiveRecord: 6.0ms)
404
+
405
+
406
+ Started POST "/plaid_webhook/antennas" for 127.0.0.1 at 2014-03-17 11:18:23 -0700
407
+ Processing by PlaidWebhook::AntennasController#create as HTML
408
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"yeO0NeFZvKu6qwhxHVlKGtEZ7CkmZrgFTQ4i5+JKs7o=", "antenna"=>{"asset_token"=>"xy", "payload"=>"djadslkjcbvwelkcjbwckajcbakjbedclkajwebclkewjcbewlkcjbwekcjb"}, "commit"=>"Create Antenna"}
409
+  (0.1ms) BEGIN
410
+ SQL (4.6ms) INSERT INTO "plaid_webhook_antennas" ("asset_token", "created_at", "payload", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["asset_token", "xy"], ["created_at", Mon, 17 Mar 2014 18:18:23 UTC +00:00], ["payload", "djadslkjcbvwelkcjbwckajcbakjbedclkajwebclkewjcbewlkcjbwekcjb"], ["updated_at", Mon, 17 Mar 2014 18:18:23 UTC +00:00]]
411
+  (0.3ms) COMMIT
412
+ Redirected to http://localhost:3000/plaid_webhook/antennas/1
413
+ Completed 302 Found in 9ms (ActiveRecord: 5.2ms)
414
+
415
+
416
+ Started GET "/plaid_webhook/antennas/1" for 127.0.0.1 at 2014-03-17 11:18:23 -0700
417
+ Processing by PlaidWebhook::AntennasController#show as HTML
418
+ Parameters: {"id"=>"1"}
419
+ PlaidWebhook::Antenna Load (0.5ms) SELECT "plaid_webhook_antennas".* FROM "plaid_webhook_antennas" WHERE "plaid_webhook_antennas"."id" = $1 LIMIT 1 [["id", "1"]]
420
+ Rendered /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/views/plaid_webhook/antennas/show.html.erb within layouts/plaid_webhook/application (16.9ms)
421
+ Completed 200 OK in 22ms (Views: 20.2ms | ActiveRecord: 0.5ms)
422
+
423
+
424
+ Started GET "/plaid_webhook/antennas" for 127.0.0.1 at 2014-03-17 11:19:51 -0700
425
+ Processing by PlaidWebhook::AntennasController#index as HTML
426
+ PlaidWebhook::Antenna Load (0.3ms) SELECT "plaid_webhook_antennas".* FROM "plaid_webhook_antennas"
427
+ Rendered /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/views/plaid_webhook/antennas/index.html.erb within layouts/plaid_webhook/application (6.9ms)
428
+ Completed 200 OK in 11ms (Views: 8.6ms | ActiveRecord: 1.6ms)
429
+
430
+
431
+ Started GET "/plaid_webhook/antennas/new" for 127.0.0.1 at 2014-03-17 11:19:52 -0700
432
+ Processing by PlaidWebhook::AntennasController#new as HTML
433
+ Rendered /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/views/plaid_webhook/antennas/_form.html.erb (1.7ms)
434
+ Rendered /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/views/plaid_webhook/antennas/new.html.erb within layouts/plaid_webhook/application (2.5ms)
435
+ Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
436
+
437
+
438
+ Started POST "/plaid_webhook/antennas" for 127.0.0.1 at 2014-03-17 11:19:59 -0700
439
+ Processing by PlaidWebhook::AntennasController#create as HTML
440
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"yeO0NeFZvKu6qwhxHVlKGtEZ7CkmZrgFTQ4i5+JKs7o=", "antenna"=>{"asset_token"=>"uuuu", "payload"=>"fakjvbsdkvjbaervjreabvkjerbvlkfjbvlfekdsjb"}, "commit"=>"Create Antenna"}
441
+ Completed 500 Internal Server Error in 1ms
442
+
443
+ NoMethodError (undefined method `keys' for #<ActionDispatch::Request:0x007ff693346c28>):
444
+ plaid (0.3.0) lib/plaid/plaid_object.rb:4:in `initialize'
445
+ /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/controllers/plaid_webhook/antennas_controller.rb:11:in `new'
446
+ /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/controllers/plaid_webhook/antennas_controller.rb:11:in `webhook'
447
+ /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/controllers/plaid_webhook/antennas_controller.rb:43:in `create'
448
+ actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
449
+ actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action'
450
+ actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action'
451
+ actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
452
+ activesupport (4.0.4) lib/active_support/callbacks.rb:383:in `_run__2214048834656884536__process_action__callbacks'
453
+ activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks'
454
+ actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action'
455
+ actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action'
456
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
457
+ activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument'
458
+ activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
459
+ activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument'
460
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
461
+ actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
462
+ activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
463
+ actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process'
464
+ actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process'
465
+ actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch'
466
+ actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
467
+ actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action'
468
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `call'
469
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
470
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call'
471
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
472
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `each'
473
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call'
474
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call'
475
+ railties (4.0.4) lib/rails/engine.rb:511:in `call'
476
+ railties (4.0.4) lib/rails/railtie/configurable.rb:30:in `method_missing'
477
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
478
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `each'
479
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call'
480
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call'
481
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
482
+ rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
483
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
484
+ actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
485
+ actionpack (4.0.4) lib/action_dispatch/middleware/flash.rb:241:in `call'
486
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
487
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
488
+ actionpack (4.0.4) lib/action_dispatch/middleware/cookies.rb:486:in `call'
489
+ activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call'
490
+ activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
491
+ activerecord (4.0.4) lib/active_record/migration.rb:373:in `call'
492
+ actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
493
+ activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__2404650926784705270__call__callbacks'
494
+ activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks'
495
+ actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
496
+ actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call'
497
+ actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
498
+ actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
499
+ actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
500
+ railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app'
501
+ railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call'
502
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
503
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged'
504
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged'
505
+ railties (4.0.4) lib/rails/rack/logger.rb:20:in `call'
506
+ actionpack (4.0.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
507
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
508
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
509
+ activesupport (4.0.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
510
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
511
+ actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call'
512
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
513
+ railties (4.0.4) lib/rails/engine.rb:511:in `call'
514
+ railties (4.0.4) lib/rails/application.rb:97:in `call'
515
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
516
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
517
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
518
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
519
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
520
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
521
+
522
+
523
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
524
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
525
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
526
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.7ms)
527
+
528
+
529
+ Started GET "/plaid_webhook/antennas" for 127.0.0.1 at 2014-03-17 11:26:12 -0700
530
+ Processing by PlaidWebhook::AntennasController#index as HTML
531
+ PlaidWebhook::Antenna Load (0.3ms) SELECT "plaid_webhook_antennas".* FROM "plaid_webhook_antennas"
532
+ Rendered /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/views/plaid_webhook/antennas/index.html.erb within layouts/plaid_webhook/application (8.8ms)
533
+ Completed 200 OK in 13ms (Views: 10.8ms | ActiveRecord: 1.5ms)
534
+
535
+
536
+ Started GET "/plaid_webhook/antennas/new" for 127.0.0.1 at 2014-03-17 11:26:14 -0700
537
+ Processing by PlaidWebhook::AntennasController#new as HTML
538
+ Rendered /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/views/plaid_webhook/antennas/_form.html.erb (2.2ms)
539
+ Rendered /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/views/plaid_webhook/antennas/new.html.erb within layouts/plaid_webhook/application (3.0ms)
540
+ Completed 200 OK in 6ms (Views: 6.0ms | ActiveRecord: 0.0ms)
541
+
542
+
543
+ Started POST "/plaid_webhook/antennas" for 127.0.0.1 at 2014-03-17 11:26:22 -0700
544
+ Processing by PlaidWebhook::AntennasController#create as HTML
545
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"yeO0NeFZvKu6qwhxHVlKGtEZ7CkmZrgFTQ4i5+JKs7o=", "antenna"=>{"asset_token"=>"ooooo", "payload"=>"dflknerasjvnarnvo oon werofinerao on afovjn aorif aroih rvglskfjg"}, "commit"=>"Create Antenna"}
546
+ Completed 500 Internal Server Error in 2ms
547
+
548
+ ActionView::MissingTemplate (Missing template plaid_webhook/antennas/create, plaid_webhook/application/create with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
549
+ * "/Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/test/dummy/app/views"
550
+ * "/Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/views"
551
+ ):
552
+ actionpack (4.0.4) lib/action_view/path_set.rb:46:in `find'
553
+ actionpack (4.0.4) lib/action_view/lookup_context.rb:122:in `find'
554
+ actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
555
+ actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:35:in `determine_template'
556
+ actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:8:in `render'
557
+ actionpack (4.0.4) lib/action_view/renderer/renderer.rb:42:in `render_template'
558
+ actionpack (4.0.4) lib/action_view/renderer/renderer.rb:23:in `render'
559
+ actionpack (4.0.4) lib/abstract_controller/rendering.rb:127:in `_render_template'
560
+ actionpack (4.0.4) lib/action_controller/metal/streaming.rb:219:in `_render_template'
561
+ actionpack (4.0.4) lib/abstract_controller/rendering.rb:120:in `render_to_body'
562
+ actionpack (4.0.4) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
563
+ actionpack (4.0.4) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
564
+ actionpack (4.0.4) lib/abstract_controller/rendering.rb:97:in `render'
565
+ actionpack (4.0.4) lib/action_controller/metal/rendering.rb:16:in `render'
566
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
567
+ activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
568
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
569
+ activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `ms'
570
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
571
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
572
+ activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
573
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:40:in `render'
574
+ actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
575
+ actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
576
+ actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action'
577
+ actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action'
578
+ actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
579
+ activesupport (4.0.4) lib/active_support/callbacks.rb:383:in `_run__2214048834656884536__process_action__callbacks'
580
+ activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks'
581
+ actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action'
582
+ actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action'
583
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
584
+ activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument'
585
+ activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
586
+ activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument'
587
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
588
+ actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
589
+ activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
590
+ actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process'
591
+ actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process'
592
+ actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch'
593
+ actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
594
+ actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action'
595
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `call'
596
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
597
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call'
598
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
599
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `each'
600
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call'
601
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call'
602
+ railties (4.0.4) lib/rails/engine.rb:511:in `call'
603
+ railties (4.0.4) lib/rails/railtie/configurable.rb:30:in `method_missing'
604
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
605
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `each'
606
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call'
607
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call'
608
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
609
+ rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
610
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
611
+ actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
612
+ actionpack (4.0.4) lib/action_dispatch/middleware/flash.rb:241:in `call'
613
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
614
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
615
+ actionpack (4.0.4) lib/action_dispatch/middleware/cookies.rb:486:in `call'
616
+ activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call'
617
+ activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
618
+ activerecord (4.0.4) lib/active_record/migration.rb:373:in `call'
619
+ actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
620
+ activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__2404650926784705270__call__callbacks'
621
+ activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks'
622
+ actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
623
+ actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call'
624
+ actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
625
+ actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
626
+ actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
627
+ railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app'
628
+ railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call'
629
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
630
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged'
631
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged'
632
+ railties (4.0.4) lib/rails/rack/logger.rb:20:in `call'
633
+ actionpack (4.0.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
634
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
635
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
636
+ activesupport (4.0.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
637
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
638
+ actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call'
639
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
640
+ railties (4.0.4) lib/rails/engine.rb:511:in `call'
641
+ railties (4.0.4) lib/rails/application.rb:97:in `call'
642
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
643
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
644
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
645
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
646
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
647
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
648
+
649
+
650
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.4ms)
651
+
652
+
653
+ Started POST "/plaid_webhook/antennas" for 127.0.0.1 at 2014-03-17 11:27:46 -0700
654
+ Processing by PlaidWebhook::AntennasController#create as HTML
655
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"yeO0NeFZvKu6qwhxHVlKGtEZ7CkmZrgFTQ4i5+JKs7o=", "antenna"=>{"asset_token"=>"ooooo", "payload"=>"dflknerasjvnarnvo oon werofinerao on afovjn aorif aroih rvglskfjg"}, "commit"=>"Create Antenna"}
656
+  (0.1ms) BEGIN
657
+ SQL (0.3ms) INSERT INTO "plaid_webhook_antennas" ("asset_token", "created_at", "payload", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["asset_token", "ooooo"], ["created_at", Mon, 17 Mar 2014 18:27:46 UTC +00:00], ["payload", "dflknerasjvnarnvo oon werofinerao on afovjn aorif aroih rvglskfjg"], ["updated_at", Mon, 17 Mar 2014 18:27:46 UTC +00:00]]
658
+  (0.3ms) COMMIT
659
+ Redirected to http://localhost:3000/plaid_webhook/antennas/2
660
+ Completed 302 Found in 9ms (ActiveRecord: 1.9ms)
661
+
662
+
663
+ Started GET "/plaid_webhook/antennas/2" for 127.0.0.1 at 2014-03-17 11:27:46 -0700
664
+ Processing by PlaidWebhook::AntennasController#show as HTML
665
+ Parameters: {"id"=>"2"}
666
+ PlaidWebhook::Antenna Load (0.2ms) SELECT "plaid_webhook_antennas".* FROM "plaid_webhook_antennas" WHERE "plaid_webhook_antennas"."id" = $1 LIMIT 1 [["id", "2"]]
667
+ Rendered /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/views/plaid_webhook/antennas/show.html.erb within layouts/plaid_webhook/application (7.9ms)
668
+ Completed 200 OK in 12ms (Views: 10.9ms | ActiveRecord: 0.2ms)
669
+
670
+
671
+ Started GET "/assets/plaid_webhook/antennas.css?body=1" for 127.0.0.1 at 2014-03-17 11:27:46 -0700
672
+
673
+
674
+ Started GET "/assets/plaid_webhook/antennas.js?body=1" for 127.0.0.1 at 2014-03-17 11:27:46 -0700
675
+
676
+
677
+ Started GET "/plaid_webhook/antennas/2" for 127.0.0.1 at 2014-03-17 11:28:04 -0700
678
+ Processing by PlaidWebhook::AntennasController#show as HTML
679
+ Parameters: {"id"=>"2"}
680
+ PlaidWebhook::Antenna Load (0.3ms) SELECT "plaid_webhook_antennas".* FROM "plaid_webhook_antennas" WHERE "plaid_webhook_antennas"."id" = $1 LIMIT 1 [["id", "2"]]
681
+ Rendered /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/views/plaid_webhook/antennas/show.html.erb within layouts/plaid_webhook/application (1.2ms)
682
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.3ms)
683
+
684
+
685
+ Started GET "/assets/plaid_webhook/antennas.css?body=1" for 127.0.0.1 at 2014-03-17 11:28:04 -0700
686
+
687
+
688
+ Started GET "/assets/plaid_webhook/antennas.js?body=1" for 127.0.0.1 at 2014-03-17 11:28:04 -0700
689
+
690
+
691
+ Started GET "/plaid_webhook/antennas/2/edit" for 127.0.0.1 at 2014-03-17 11:28:09 -0700
692
+ Processing by PlaidWebhook::AntennasController#edit as HTML
693
+ Parameters: {"id"=>"2"}
694
+ PlaidWebhook::Antenna Load (0.3ms) SELECT "plaid_webhook_antennas".* FROM "plaid_webhook_antennas" WHERE "plaid_webhook_antennas"."id" = $1 LIMIT 1 [["id", "2"]]
695
+ Rendered /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/views/plaid_webhook/antennas/_form.html.erb (2.2ms)
696
+ Rendered /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/views/plaid_webhook/antennas/edit.html.erb within layouts/plaid_webhook/application (3.7ms)
697
+ Completed 200 OK in 21ms (Views: 20.3ms | ActiveRecord: 0.3ms)
698
+
699
+
700
+ Started GET "/assets/plaid_webhook/antennas.css?body=1" for 127.0.0.1 at 2014-03-17 11:28:09 -0700
701
+
702
+
703
+ Started GET "/assets/plaid_webhook/antennas.js?body=1" for 127.0.0.1 at 2014-03-17 11:28:09 -0700
704
+
705
+
706
+ Started GET "/plaid_webhook/antennas" for 127.0.0.1 at 2014-03-17 11:28:10 -0700
707
+ Processing by PlaidWebhook::AntennasController#index as HTML
708
+ PlaidWebhook::Antenna Load (0.2ms) SELECT "plaid_webhook_antennas".* FROM "plaid_webhook_antennas"
709
+ Rendered /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/views/plaid_webhook/antennas/index.html.erb within layouts/plaid_webhook/application (2.3ms)
710
+ Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.2ms)
711
+
712
+
713
+ Started GET "/assets/plaid_webhook/antennas.css?body=1" for 127.0.0.1 at 2014-03-17 11:28:10 -0700
714
+
715
+
716
+ Started GET "/assets/plaid_webhook/antennas.js?body=1" for 127.0.0.1 at 2014-03-17 11:28:10 -0700
717
+
718
+
719
+ Started GET "/plaid_webhook/antennas/new" for 127.0.0.1 at 2014-03-17 11:28:11 -0700
720
+ Processing by PlaidWebhook::AntennasController#new as HTML
721
+ Rendered /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/views/plaid_webhook/antennas/_form.html.erb (2.1ms)
722
+ Rendered /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/views/plaid_webhook/antennas/new.html.erb within layouts/plaid_webhook/application (3.0ms)
723
+ Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms)
724
+
725
+
726
+ Started GET "/assets/plaid_webhook/antennas.css?body=1" for 127.0.0.1 at 2014-03-17 11:28:11 -0700
727
+
728
+
729
+ Started GET "/assets/plaid_webhook/antennas.js?body=1" for 127.0.0.1 at 2014-03-17 11:28:11 -0700
730
+
731
+
732
+ Started POST "/plaid_webhook/antennas" for 127.0.0.1 at 2014-03-17 11:28:14 -0700
733
+ Processing by PlaidWebhook::AntennasController#create as HTML
734
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"yeO0NeFZvKu6qwhxHVlKGtEZ7CkmZrgFTQ4i5+JKs7o=", "antenna"=>{"asset_token"=>"erver", "payload"=>"advas vagvarg "}, "commit"=>"Create Antenna"}
735
+  (0.1ms) BEGIN
736
+ SQL (0.3ms) INSERT INTO "plaid_webhook_antennas" ("asset_token", "created_at", "payload", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["asset_token", "erver"], ["created_at", Mon, 17 Mar 2014 18:28:14 UTC +00:00], ["payload", "advas vagvarg "], ["updated_at", Mon, 17 Mar 2014 18:28:14 UTC +00:00]]
737
+  (0.3ms) COMMIT
738
+ Redirected to http://localhost:3000/plaid_webhook/antennas/3
739
+ Completed 302 Found in 3ms (ActiveRecord: 0.7ms)
740
+
741
+
742
+ Started GET "/plaid_webhook/antennas/3" for 127.0.0.1 at 2014-03-17 11:28:14 -0700
743
+ Processing by PlaidWebhook::AntennasController#show as HTML
744
+ Parameters: {"id"=>"3"}
745
+ PlaidWebhook::Antenna Load (0.2ms) SELECT "plaid_webhook_antennas".* FROM "plaid_webhook_antennas" WHERE "plaid_webhook_antennas"."id" = $1 LIMIT 1 [["id", "3"]]
746
+ Rendered /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/views/plaid_webhook/antennas/show.html.erb within layouts/plaid_webhook/application (1.0ms)
747
+ Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.2ms)
748
+
749
+
750
+ Started GET "/assets/plaid_webhook/antennas.css?body=1" for 127.0.0.1 at 2014-03-17 11:28:14 -0700
751
+
752
+
753
+ Started GET "/assets/plaid_webhook/antennas.js?body=1" for 127.0.0.1 at 2014-03-17 11:28:14 -0700
754
+
755
+
756
+ Started POST "/plaid_webhook/antennas" for 127.0.0.1 at 2014-03-17 11:28:28 -0700
757
+ Processing by PlaidWebhook::AntennasController#create as HTML
758
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"yeO0NeFZvKu6qwhxHVlKGtEZ7CkmZrgFTQ4i5+JKs7o=", "antenna"=>{"asset_token"=>"erverac adf wa ", "payload"=>"advas vagvarg "}, "commit"=>"Create Antenna"}
759
+  (0.1ms) BEGIN
760
+ SQL (0.3ms) INSERT INTO "plaid_webhook_antennas" ("asset_token", "created_at", "payload", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["asset_token", "erverac adf wa "], ["created_at", Mon, 17 Mar 2014 18:28:28 UTC +00:00], ["payload", "advas vagvarg "], ["updated_at", Mon, 17 Mar 2014 18:28:28 UTC +00:00]]
761
+  (0.4ms) COMMIT
762
+ Redirected to http://localhost:3000/plaid_webhook/antennas/4
763
+ Completed 302 Found in 3ms (ActiveRecord: 0.9ms)
764
+
765
+
766
+ Started GET "/plaid_webhook/antennas/4" for 127.0.0.1 at 2014-03-17 11:28:28 -0700
767
+ Processing by PlaidWebhook::AntennasController#show as HTML
768
+ Parameters: {"id"=>"4"}
769
+ PlaidWebhook::Antenna Load (0.3ms) SELECT "plaid_webhook_antennas".* FROM "plaid_webhook_antennas" WHERE "plaid_webhook_antennas"."id" = $1 LIMIT 1 [["id", "4"]]
770
+ Rendered /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/views/plaid_webhook/antennas/show.html.erb within layouts/plaid_webhook/application (1.3ms)
771
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.3ms)
772
+
773
+
774
+ Started GET "/assets/plaid_webhook/antennas.css?body=1" for 127.0.0.1 at 2014-03-17 11:28:28 -0700
775
+
776
+
777
+ Started GET "/assets/plaid_webhook/antennas.js?body=1" for 127.0.0.1 at 2014-03-17 11:28:28 -0700
778
+
779
+
780
+ Started GET "/plaid_webhook/antennas" for 127.0.0.1 at 2014-03-17 11:28:41 -0700
781
+ Processing by PlaidWebhook::AntennasController#index as HTML
782
+ PlaidWebhook::Antenna Load (0.3ms) SELECT "plaid_webhook_antennas".* FROM "plaid_webhook_antennas"
783
+ Rendered /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/views/plaid_webhook/antennas/index.html.erb within layouts/plaid_webhook/application (3.4ms)
784
+ Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.3ms)
785
+
786
+
787
+ Started GET "/assets/plaid_webhook/antennas.css?body=1" for 127.0.0.1 at 2014-03-17 11:28:41 -0700
788
+
789
+
790
+ Started GET "/assets/plaid_webhook/antennas.js?body=1" for 127.0.0.1 at 2014-03-17 11:28:41 -0700
791
+
792
+
793
+ Started GET "/plaid_webhook/antennas/new" for 127.0.0.1 at 2014-03-17 11:28:42 -0700
794
+ Processing by PlaidWebhook::AntennasController#new as HTML
795
+ Rendered /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/views/plaid_webhook/antennas/_form.html.erb (1.9ms)
796
+ Rendered /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/views/plaid_webhook/antennas/new.html.erb within layouts/plaid_webhook/application (2.8ms)
797
+ Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms)
798
+
799
+
800
+ Started GET "/assets/plaid_webhook/antennas.css?body=1" for 127.0.0.1 at 2014-03-17 11:28:42 -0700
801
+
802
+
803
+ Started GET "/assets/plaid_webhook/antennas.js?body=1" for 127.0.0.1 at 2014-03-17 11:28:42 -0700
804
+
805
+
806
+ Started POST "/plaid_webhook/antennas" for 127.0.0.1 at 2014-03-17 11:28:45 -0700
807
+ Processing by PlaidWebhook::AntennasController#create as HTML
808
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"yeO0NeFZvKu6qwhxHVlKGtEZ7CkmZrgFTQ4i5+JKs7o=", "antenna"=>{"asset_token"=>"ava vrwa r", "payload"=>" avrvwraverv erv"}, "commit"=>"Create Antenna"}
809
+  (0.1ms) BEGIN
810
+ SQL (0.3ms) INSERT INTO "plaid_webhook_antennas" ("asset_token", "created_at", "payload", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["asset_token", "ava vrwa r"], ["created_at", Mon, 17 Mar 2014 18:28:45 UTC +00:00], ["payload", " avrvwraverv erv"], ["updated_at", Mon, 17 Mar 2014 18:28:45 UTC +00:00]]
811
+  (0.3ms) COMMIT
812
+ Redirected to http://localhost:3000/plaid_webhook/antennas/5
813
+ Completed 302 Found in 3ms (ActiveRecord: 0.7ms)
814
+
815
+
816
+ Started GET "/plaid_webhook/antennas/5" for 127.0.0.1 at 2014-03-17 11:28:45 -0700
817
+ Processing by PlaidWebhook::AntennasController#show as HTML
818
+ Parameters: {"id"=>"5"}
819
+ PlaidWebhook::Antenna Load (0.2ms) SELECT "plaid_webhook_antennas".* FROM "plaid_webhook_antennas" WHERE "plaid_webhook_antennas"."id" = $1 LIMIT 1 [["id", "5"]]
820
+ Rendered /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/views/plaid_webhook/antennas/show.html.erb within layouts/plaid_webhook/application (1.3ms)
821
+ Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.2ms)
822
+
823
+
824
+ Started GET "/assets/plaid_webhook/antennas.css?body=1" for 127.0.0.1 at 2014-03-17 11:28:45 -0700
825
+
826
+
827
+ Started GET "/assets/plaid_webhook/antennas.js?body=1" for 127.0.0.1 at 2014-03-17 11:28:45 -0700
828
+
829
+
830
+ Started GET "/plaid_webhook/antennas" for 127.0.0.1 at 2014-03-17 11:29:41 -0700
831
+ Processing by PlaidWebhook::AntennasController#index as HTML
832
+ PlaidWebhook::Antenna Load (0.3ms) SELECT "plaid_webhook_antennas".* FROM "plaid_webhook_antennas"
833
+ Rendered /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/views/plaid_webhook/antennas/index.html.erb within layouts/plaid_webhook/application (8.8ms)
834
+ Completed 200 OK in 13ms (Views: 10.6ms | ActiveRecord: 1.4ms)
835
+
836
+
837
+ Started GET "/assets/plaid_webhook/antennas.css?body=1" for 127.0.0.1 at 2014-03-17 11:29:41 -0700
838
+
839
+
840
+ Started GET "/assets/plaid_webhook/antennas.js?body=1" for 127.0.0.1 at 2014-03-17 11:29:41 -0700
841
+
842
+
843
+ Started GET "/plaid_webhook/antennas/new" for 127.0.0.1 at 2014-03-17 11:29:42 -0700
844
+ Processing by PlaidWebhook::AntennasController#new as HTML
845
+ Rendered /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/views/plaid_webhook/antennas/_form.html.erb (1.7ms)
846
+ Rendered /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/views/plaid_webhook/antennas/new.html.erb within layouts/plaid_webhook/application (2.4ms)
847
+ Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
848
+
849
+
850
+ Started GET "/assets/plaid_webhook/antennas.css?body=1" for 127.0.0.1 at 2014-03-17 11:29:42 -0700
851
+
852
+
853
+ Started GET "/assets/plaid_webhook/antennas.js?body=1" for 127.0.0.1 at 2014-03-17 11:29:42 -0700
854
+
855
+
856
+ Started POST "/plaid_webhook/antennas" for 127.0.0.1 at 2014-03-17 11:29:45 -0700
857
+ Processing by PlaidWebhook::AntennasController#create as HTML
858
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"yeO0NeFZvKu6qwhxHVlKGtEZ7CkmZrgFTQ4i5+JKs7o=", "antenna"=>{"asset_token"=>"ava erg wetbvs", "payload"=>"a dfvbaer bsdbets rt"}, "commit"=>"Create Antenna"}
859
+ Completed 500 Internal Server Error in 0ms
860
+
861
+ NoMethodError (undefined method `access_token' for #<PlaidObject:0x007ff6935199b0>):
862
+ /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/controllers/plaid_webhook/antennas_controller.rb:13:in `webhook'
863
+ /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/controllers/plaid_webhook/antennas_controller.rb:43:in `create'
864
+ actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
865
+ actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action'
866
+ actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action'
867
+ actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
868
+ activesupport (4.0.4) lib/active_support/callbacks.rb:383:in `_run__2214048834656884536__process_action__callbacks'
869
+ activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks'
870
+ actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action'
871
+ actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action'
872
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
873
+ activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument'
874
+ activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
875
+ activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument'
876
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
877
+ actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
878
+ activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
879
+ actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process'
880
+ actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process'
881
+ actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch'
882
+ actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
883
+ actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action'
884
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `call'
885
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
886
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call'
887
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
888
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `each'
889
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call'
890
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call'
891
+ railties (4.0.4) lib/rails/engine.rb:511:in `call'
892
+ railties (4.0.4) lib/rails/railtie/configurable.rb:30:in `method_missing'
893
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
894
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `each'
895
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call'
896
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call'
897
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
898
+ rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
899
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
900
+ actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
901
+ actionpack (4.0.4) lib/action_dispatch/middleware/flash.rb:241:in `call'
902
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
903
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
904
+ actionpack (4.0.4) lib/action_dispatch/middleware/cookies.rb:486:in `call'
905
+ activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call'
906
+ activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
907
+ activerecord (4.0.4) lib/active_record/migration.rb:373:in `call'
908
+ actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
909
+ activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__2404650926784705270__call__callbacks'
910
+ activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks'
911
+ actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
912
+ actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call'
913
+ actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
914
+ actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
915
+ actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
916
+ railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app'
917
+ railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call'
918
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
919
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged'
920
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged'
921
+ railties (4.0.4) lib/rails/rack/logger.rb:20:in `call'
922
+ actionpack (4.0.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
923
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
924
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
925
+ activesupport (4.0.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
926
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
927
+ actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call'
928
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
929
+ railties (4.0.4) lib/rails/engine.rb:511:in `call'
930
+ railties (4.0.4) lib/rails/application.rb:97:in `call'
931
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
932
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
933
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
934
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
935
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
936
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
937
+
938
+
939
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
940
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
941
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
942
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.3ms)
943
+
944
+
945
+ Started POST "/plaid_webhook/antennas" for 127.0.0.1 at 2014-03-17 11:30:26 -0700
946
+ Processing by PlaidWebhook::AntennasController#create as HTML
947
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"yeO0NeFZvKu6qwhxHVlKGtEZ7CkmZrgFTQ4i5+JKs7o=", "antenna"=>{"asset_token"=>"ava erg wetbvs", "payload"=>"a dfvbaer bsdbets rt"}, "commit"=>"Create Antenna"}
948
+ Completed 500 Internal Server Error in 1ms
949
+
950
+ NoMethodError (undefined method `access_token' for #<ActionController::Parameters:0x007ff693529608>):
951
+ /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/controllers/plaid_webhook/antennas_controller.rb:13:in `webhook'
952
+ /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/controllers/plaid_webhook/antennas_controller.rb:43:in `create'
953
+ actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
954
+ actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action'
955
+ actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action'
956
+ actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
957
+ activesupport (4.0.4) lib/active_support/callbacks.rb:383:in `_run__2214048834656884536__process_action__callbacks'
958
+ activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks'
959
+ actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action'
960
+ actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action'
961
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
962
+ activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument'
963
+ activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
964
+ activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument'
965
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
966
+ actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
967
+ activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
968
+ actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process'
969
+ actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process'
970
+ actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch'
971
+ actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
972
+ actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action'
973
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `call'
974
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
975
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call'
976
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
977
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `each'
978
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call'
979
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call'
980
+ railties (4.0.4) lib/rails/engine.rb:511:in `call'
981
+ railties (4.0.4) lib/rails/railtie/configurable.rb:30:in `method_missing'
982
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
983
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `each'
984
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call'
985
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call'
986
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
987
+ rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
988
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
989
+ actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
990
+ actionpack (4.0.4) lib/action_dispatch/middleware/flash.rb:241:in `call'
991
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
992
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
993
+ actionpack (4.0.4) lib/action_dispatch/middleware/cookies.rb:486:in `call'
994
+ activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call'
995
+ activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
996
+ activerecord (4.0.4) lib/active_record/migration.rb:373:in `call'
997
+ actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
998
+ activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__2404650926784705270__call__callbacks'
999
+ activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks'
1000
+ actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1001
+ actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1002
+ actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1003
+ actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1004
+ actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1005
+ railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app'
1006
+ railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call'
1007
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1008
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged'
1009
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged'
1010
+ railties (4.0.4) lib/rails/rack/logger.rb:20:in `call'
1011
+ actionpack (4.0.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1012
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1013
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1014
+ activesupport (4.0.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1015
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1016
+ actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call'
1017
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1018
+ railties (4.0.4) lib/rails/engine.rb:511:in `call'
1019
+ railties (4.0.4) lib/rails/application.rb:97:in `call'
1020
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1021
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1022
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1023
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1024
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1025
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1026
+
1027
+
1028
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
1029
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
1030
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
1031
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.4ms)
1032
+
1033
+
1034
+ Started POST "/plaid_webhook/antennas" for 127.0.0.1 at 2014-03-17 11:30:48 -0700
1035
+ Processing by PlaidWebhook::AntennasController#create as HTML
1036
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"yeO0NeFZvKu6qwhxHVlKGtEZ7CkmZrgFTQ4i5+JKs7o=", "antenna"=>{"asset_token"=>"ava erg wetbvs sss s", "payload"=>"a dfvbaer bsdbets rt dds serser erer"}, "commit"=>"Create Antenna"}
1037
+ Completed 500 Internal Server Error in 0ms
1038
+
1039
+ NoMethodError (undefined method `access_token' for #<ActionController::Parameters:0x007ff6936392f0>):
1040
+ /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/controllers/plaid_webhook/antennas_controller.rb:13:in `webhook'
1041
+ /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/controllers/plaid_webhook/antennas_controller.rb:43:in `create'
1042
+ actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1043
+ actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action'
1044
+ actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action'
1045
+ actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1046
+ activesupport (4.0.4) lib/active_support/callbacks.rb:383:in `_run__2214048834656884536__process_action__callbacks'
1047
+ activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks'
1048
+ actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action'
1049
+ actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action'
1050
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1051
+ activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument'
1052
+ activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1053
+ activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument'
1054
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1055
+ actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
1056
+ activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1057
+ actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process'
1058
+ actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process'
1059
+ actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch'
1060
+ actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1061
+ actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action'
1062
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `call'
1063
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1064
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call'
1065
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
1066
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `each'
1067
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call'
1068
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call'
1069
+ railties (4.0.4) lib/rails/engine.rb:511:in `call'
1070
+ railties (4.0.4) lib/rails/railtie/configurable.rb:30:in `method_missing'
1071
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
1072
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `each'
1073
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call'
1074
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call'
1075
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1076
+ rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
1077
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1078
+ actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1079
+ actionpack (4.0.4) lib/action_dispatch/middleware/flash.rb:241:in `call'
1080
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1081
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1082
+ actionpack (4.0.4) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1083
+ activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call'
1084
+ activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1085
+ activerecord (4.0.4) lib/active_record/migration.rb:373:in `call'
1086
+ actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1087
+ activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__2404650926784705270__call__callbacks'
1088
+ activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks'
1089
+ actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1090
+ actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1091
+ actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1092
+ actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1093
+ actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1094
+ railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app'
1095
+ railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call'
1096
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1097
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged'
1098
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged'
1099
+ railties (4.0.4) lib/rails/rack/logger.rb:20:in `call'
1100
+ actionpack (4.0.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1101
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1102
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1103
+ activesupport (4.0.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1104
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1105
+ actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call'
1106
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1107
+ railties (4.0.4) lib/rails/engine.rb:511:in `call'
1108
+ railties (4.0.4) lib/rails/application.rb:97:in `call'
1109
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1110
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1111
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1112
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1113
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1114
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1115
+
1116
+
1117
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
1118
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
1119
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
1120
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.4ms)
1121
+
1122
+
1123
+ Started GET "/plaid_webhook/antennas/new" for 127.0.0.1 at 2014-03-17 11:31:31 -0700
1124
+ Processing by PlaidWebhook::AntennasController#new as HTML
1125
+ Rendered /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/views/plaid_webhook/antennas/_form.html.erb (5.4ms)
1126
+ Rendered /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/views/plaid_webhook/antennas/new.html.erb within layouts/plaid_webhook/application (6.3ms)
1127
+ Completed 200 OK in 12ms (Views: 9.3ms | ActiveRecord: 1.3ms)
1128
+
1129
+
1130
+ Started GET "/assets/plaid_webhook/antennas.css?body=1" for 127.0.0.1 at 2014-03-17 11:31:31 -0700
1131
+
1132
+
1133
+ Started GET "/assets/plaid_webhook/antennas.js?body=1" for 127.0.0.1 at 2014-03-17 11:31:31 -0700
1134
+
1135
+
1136
+ Started POST "/plaid_webhook/antennas" for 127.0.0.1 at 2014-03-17 11:31:35 -0700
1137
+ Processing by PlaidWebhook::AntennasController#create as HTML
1138
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"yeO0NeFZvKu6qwhxHVlKGtEZ7CkmZrgFTQ4i5+JKs7o=", "antenna"=>{"asset_token"=>" s s ss s s", "payload"=>"cewa we fawef awerware"}, "commit"=>"Create Antenna"}
1139
+ Completed 500 Internal Server Error in 0ms
1140
+
1141
+ NoMethodError (undefined method `params' for #<PlaidObject:0x007ff6908c7f10>):
1142
+ /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/controllers/plaid_webhook/antennas_controller.rb:13:in `webhook'
1143
+ /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/controllers/plaid_webhook/antennas_controller.rb:44:in `create'
1144
+ actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1145
+ actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action'
1146
+ actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action'
1147
+ actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1148
+ activesupport (4.0.4) lib/active_support/callbacks.rb:383:in `_run__2214048834656884536__process_action__callbacks'
1149
+ activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks'
1150
+ actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action'
1151
+ actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action'
1152
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1153
+ activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument'
1154
+ activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1155
+ activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument'
1156
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1157
+ actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
1158
+ activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1159
+ actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process'
1160
+ actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process'
1161
+ actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch'
1162
+ actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1163
+ actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action'
1164
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `call'
1165
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1166
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call'
1167
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
1168
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `each'
1169
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call'
1170
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call'
1171
+ railties (4.0.4) lib/rails/engine.rb:511:in `call'
1172
+ railties (4.0.4) lib/rails/railtie/configurable.rb:30:in `method_missing'
1173
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
1174
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `each'
1175
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call'
1176
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call'
1177
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1178
+ rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
1179
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1180
+ actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1181
+ actionpack (4.0.4) lib/action_dispatch/middleware/flash.rb:241:in `call'
1182
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1183
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1184
+ actionpack (4.0.4) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1185
+ activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call'
1186
+ activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1187
+ activerecord (4.0.4) lib/active_record/migration.rb:373:in `call'
1188
+ actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1189
+ activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__2404650926784705270__call__callbacks'
1190
+ activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks'
1191
+ actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1192
+ actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1193
+ actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1194
+ actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1195
+ actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1196
+ railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app'
1197
+ railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call'
1198
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1199
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged'
1200
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged'
1201
+ railties (4.0.4) lib/rails/rack/logger.rb:20:in `call'
1202
+ actionpack (4.0.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1203
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1204
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1205
+ activesupport (4.0.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1206
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1207
+ actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call'
1208
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1209
+ railties (4.0.4) lib/rails/engine.rb:511:in `call'
1210
+ railties (4.0.4) lib/rails/application.rb:97:in `call'
1211
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1212
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1213
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1214
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1215
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1216
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1217
+
1218
+
1219
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
1220
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
1221
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
1222
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.6ms)
1223
+
1224
+
1225
+ Started POST "/plaid_webhook/antennas" for 127.0.0.1 at 2014-03-17 11:32:09 -0700
1226
+ Processing by PlaidWebhook::AntennasController#create as HTML
1227
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"yeO0NeFZvKu6qwhxHVlKGtEZ7CkmZrgFTQ4i5+JKs7o=", "antenna"=>{"asset_token"=>"dsscss s s ss s s", "payload"=>"cewa we fawef awerware"}, "commit"=>"Create Antenna"}
1228
+ Completed 500 Internal Server Error in 6ms
1229
+
1230
+ ActiveRecord::UnknownAttributeError (unknown attribute: access_token):
1231
+ activerecord (4.0.4) lib/active_record/attribute_assignment.rb:47:in `rescue in _assign_attribute'
1232
+ activerecord (4.0.4) lib/active_record/attribute_assignment.rb:42:in `_assign_attribute'
1233
+ activerecord (4.0.4) lib/active_record/attribute_assignment.rb:29:in `block in assign_attributes'
1234
+ activerecord (4.0.4) lib/active_record/attribute_assignment.rb:23:in `each'
1235
+ activerecord (4.0.4) lib/active_record/attribute_assignment.rb:23:in `assign_attributes'
1236
+ activerecord (4.0.4) lib/active_record/core.rb:468:in `init_attributes'
1237
+ activerecord (4.0.4) lib/active_record/core.rb:185:in `initialize'
1238
+ activerecord (4.0.4) lib/active_record/inheritance.rb:30:in `new'
1239
+ activerecord (4.0.4) lib/active_record/inheritance.rb:30:in `new'
1240
+ /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/controllers/plaid_webhook/antennas_controller.rb:13:in `webhook'
1241
+ /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/controllers/plaid_webhook/antennas_controller.rb:44:in `create'
1242
+ actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1243
+ actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action'
1244
+ actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action'
1245
+ actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1246
+ activesupport (4.0.4) lib/active_support/callbacks.rb:383:in `_run__2214048834656884536__process_action__callbacks'
1247
+ activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks'
1248
+ actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action'
1249
+ actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action'
1250
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1251
+ activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument'
1252
+ activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1253
+ activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument'
1254
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1255
+ actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
1256
+ activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1257
+ actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process'
1258
+ actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process'
1259
+ actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch'
1260
+ actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1261
+ actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action'
1262
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `call'
1263
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1264
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call'
1265
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
1266
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `each'
1267
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call'
1268
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call'
1269
+ railties (4.0.4) lib/rails/engine.rb:511:in `call'
1270
+ railties (4.0.4) lib/rails/railtie/configurable.rb:30:in `method_missing'
1271
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
1272
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `each'
1273
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call'
1274
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call'
1275
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1276
+ rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
1277
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1278
+ actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1279
+ actionpack (4.0.4) lib/action_dispatch/middleware/flash.rb:241:in `call'
1280
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1281
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1282
+ actionpack (4.0.4) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1283
+ activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call'
1284
+ activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1285
+ activerecord (4.0.4) lib/active_record/migration.rb:373:in `call'
1286
+ actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1287
+ activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__2404650926784705270__call__callbacks'
1288
+ activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks'
1289
+ actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1290
+ actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1291
+ actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1292
+ actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1293
+ actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1294
+ railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app'
1295
+ railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call'
1296
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1297
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged'
1298
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged'
1299
+ railties (4.0.4) lib/rails/rack/logger.rb:20:in `call'
1300
+ actionpack (4.0.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1301
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1302
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1303
+ activesupport (4.0.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1304
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1305
+ actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call'
1306
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1307
+ railties (4.0.4) lib/rails/engine.rb:511:in `call'
1308
+ railties (4.0.4) lib/rails/application.rb:97:in `call'
1309
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1310
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1311
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1312
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1313
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1314
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1315
+
1316
+
1317
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
1318
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
1319
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
1320
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.4ms)
1321
+
1322
+
1323
+ Started POST "/plaid_webhook/antennas" for 127.0.0.1 at 2014-03-17 11:33:11 -0700
1324
+ Processing by PlaidWebhook::AntennasController#create as HTML
1325
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"yeO0NeFZvKu6qwhxHVlKGtEZ7CkmZrgFTQ4i5+JKs7o=", "antenna"=>{"asset_token"=>"dsscss s s ss s s", "payload"=>"cewa we fawef awerware"}, "commit"=>"Create Antenna"}
1326
+ Completed 500 Internal Server Error in 6ms
1327
+
1328
+ ActiveRecord::UnknownAttributeError (unknown attribute: access_token):
1329
+ activerecord (4.0.4) lib/active_record/attribute_assignment.rb:47:in `rescue in _assign_attribute'
1330
+ activerecord (4.0.4) lib/active_record/attribute_assignment.rb:42:in `_assign_attribute'
1331
+ activerecord (4.0.4) lib/active_record/attribute_assignment.rb:29:in `block in assign_attributes'
1332
+ activerecord (4.0.4) lib/active_record/attribute_assignment.rb:23:in `each'
1333
+ activerecord (4.0.4) lib/active_record/attribute_assignment.rb:23:in `assign_attributes'
1334
+ activerecord (4.0.4) lib/active_record/core.rb:468:in `init_attributes'
1335
+ activerecord (4.0.4) lib/active_record/core.rb:185:in `initialize'
1336
+ activerecord (4.0.4) lib/active_record/inheritance.rb:30:in `new'
1337
+ activerecord (4.0.4) lib/active_record/inheritance.rb:30:in `new'
1338
+ /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/controllers/plaid_webhook/antennas_controller.rb:13:in `webhook'
1339
+ /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/controllers/plaid_webhook/antennas_controller.rb:44:in `create'
1340
+ actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1341
+ actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action'
1342
+ actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action'
1343
+ actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1344
+ activesupport (4.0.4) lib/active_support/callbacks.rb:383:in `_run__2214048834656884536__process_action__callbacks'
1345
+ activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks'
1346
+ actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action'
1347
+ actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action'
1348
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1349
+ activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument'
1350
+ activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1351
+ activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument'
1352
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1353
+ actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
1354
+ activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1355
+ actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process'
1356
+ actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process'
1357
+ actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch'
1358
+ actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1359
+ actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action'
1360
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `call'
1361
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1362
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call'
1363
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
1364
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `each'
1365
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call'
1366
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call'
1367
+ railties (4.0.4) lib/rails/engine.rb:511:in `call'
1368
+ railties (4.0.4) lib/rails/railtie/configurable.rb:30:in `method_missing'
1369
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
1370
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `each'
1371
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call'
1372
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call'
1373
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1374
+ rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
1375
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1376
+ actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1377
+ actionpack (4.0.4) lib/action_dispatch/middleware/flash.rb:241:in `call'
1378
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1379
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1380
+ actionpack (4.0.4) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1381
+ activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call'
1382
+ activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1383
+ activerecord (4.0.4) lib/active_record/migration.rb:373:in `call'
1384
+ actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1385
+ activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__2404650926784705270__call__callbacks'
1386
+ activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks'
1387
+ actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1388
+ actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1389
+ actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1390
+ actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1391
+ actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1392
+ railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app'
1393
+ railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call'
1394
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1395
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged'
1396
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged'
1397
+ railties (4.0.4) lib/rails/rack/logger.rb:20:in `call'
1398
+ actionpack (4.0.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1399
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1400
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1401
+ activesupport (4.0.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1402
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1403
+ actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call'
1404
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1405
+ railties (4.0.4) lib/rails/engine.rb:511:in `call'
1406
+ railties (4.0.4) lib/rails/application.rb:97:in `call'
1407
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1408
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1409
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1410
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1411
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1412
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1413
+
1414
+
1415
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
1416
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (12.7ms)
1417
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
1418
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (21.6ms)
1419
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1420
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1421
+ Migrating to CreatePlaidWebhookAntennas (20140317165604)
1422
+  (0.1ms) BEGIN
1423
+  (4.8ms) DROP TABLE "plaid_webhook_antennas"
1424
+ SQL (1.7ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20140317165604'
1425
+  (1.1ms) COMMIT
1426
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1427
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1428
+ Migrating to CreatePlaidWebhookAntennas (20140317165604)
1429
+  (0.1ms) BEGIN
1430
+  (5.2ms) CREATE TABLE "plaid_webhook_antennas" ("id" serial primary key, "access_token" character varying(255), "payload" text, "created_at" timestamp, "updated_at" timestamp) 
1431
+ SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140317165604"]]
1432
+  (0.6ms) COMMIT
1433
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1434
+
1435
+
1436
+ Started GET "/plaid_webhook/antennas/new" for 127.0.0.1 at 2014-03-17 11:36:15 -0700
1437
+ Processing by PlaidWebhook::AntennasController#new as HTML
1438
+ Rendered /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/views/plaid_webhook/antennas/_form.html.erb (21.6ms)
1439
+ Rendered /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/views/plaid_webhook/antennas/new.html.erb within layouts/plaid_webhook/application (22.3ms)
1440
+ Completed 500 Internal Server Error in 27ms
1441
+
1442
+ ActionView::Template::Error (undefined method `asset_token' for #<PlaidWebhook::Antenna:0x007ff6933f7ff0>):
1443
+ 13:
1444
+ 14: <div class="field">
1445
+ 15: <%= f.label :asset_token %><br>
1446
+ 16: <%= f.text_field :asset_token %>
1447
+ 17: </div>
1448
+ 18: <div class="field">
1449
+ 19: <%= f.label :payload %><br>
1450
+ activemodel (4.0.4) lib/active_model/attribute_methods.rb:439:in `method_missing'
1451
+ activerecord (4.0.4) lib/active_record/attribute_methods.rb:167:in `method_missing'
1452
+ actionpack (4.0.4) lib/action_view/helpers/tags/base.rb:28:in `value'
1453
+ actionpack (4.0.4) lib/action_view/helpers/tags/base.rb:37:in `value_before_type_cast'
1454
+ actionpack (4.0.4) lib/action_view/helpers/tags/text_field.rb:9:in `block in render'
1455
+ actionpack (4.0.4) lib/action_view/helpers/tags/text_field.rb:9:in `fetch'
1456
+ actionpack (4.0.4) lib/action_view/helpers/tags/text_field.rb:9:in `render'
1457
+ actionpack (4.0.4) lib/action_view/helpers/form_helper.rb:771:in `text_field'
1458
+ actionpack (4.0.4) lib/action_view/helpers/form_helper.rb:1262:in `text_field'
1459
+ /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/views/plaid_webhook/antennas/_form.html.erb:16:in `block in ___sers_jkoisch__ocuments_cloudsway_ruby_plaid_webhook_app_views_plaid_webhook_antennas__form_html_erb__1503562731113105180_70348503542540'
1460
+ actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture'
1461
+ actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer'
1462
+ actionpack (4.0.4) lib/action_view/helpers/capture_helper.rb:38:in `capture'
1463
+ actionpack (4.0.4) lib/action_view/helpers/form_helper.rb:435:in `form_for'
1464
+ /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/views/plaid_webhook/antennas/_form.html.erb:1:in `___sers_jkoisch__ocuments_cloudsway_ruby_plaid_webhook_app_views_plaid_webhook_antennas__form_html_erb__1503562731113105180_70348503542540'
1465
+ actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render'
1466
+ activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument'
1467
+ actionpack (4.0.4) lib/action_view/template.rb:141:in `render'
1468
+ actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial'
1469
+ actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:279:in `block in render'
1470
+ actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
1471
+ activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument'
1472
+ activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1473
+ activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument'
1474
+ actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
1475
+ actionpack (4.0.4) lib/action_view/renderer/partial_renderer.rb:278:in `render'
1476
+ actionpack (4.0.4) lib/action_view/renderer/renderer.rb:47:in `render_partial'
1477
+ actionpack (4.0.4) lib/action_view/helpers/rendering_helper.rb:27:in `render'
1478
+ /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/views/plaid_webhook/antennas/new.html.erb:3:in `___sers_jkoisch__ocuments_cloudsway_ruby_plaid_webhook_app_views_plaid_webhook_antennas_new_html_erb___4109020828318366253_70348503361520'
1479
+ actionpack (4.0.4) lib/action_view/template.rb:143:in `block in render'
1480
+ activesupport (4.0.4) lib/active_support/notifications.rb:161:in `instrument'
1481
+ actionpack (4.0.4) lib/action_view/template.rb:141:in `render'
1482
+ actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
1483
+ actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
1484
+ activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument'
1485
+ activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1486
+ activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument'
1487
+ actionpack (4.0.4) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
1488
+ actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
1489
+ actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
1490
+ actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
1491
+ actionpack (4.0.4) lib/action_view/renderer/template_renderer.rb:17:in `render'
1492
+ actionpack (4.0.4) lib/action_view/renderer/renderer.rb:42:in `render_template'
1493
+ actionpack (4.0.4) lib/action_view/renderer/renderer.rb:23:in `render'
1494
+ actionpack (4.0.4) lib/abstract_controller/rendering.rb:127:in `_render_template'
1495
+ actionpack (4.0.4) lib/action_controller/metal/streaming.rb:219:in `_render_template'
1496
+ actionpack (4.0.4) lib/abstract_controller/rendering.rb:120:in `render_to_body'
1497
+ actionpack (4.0.4) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
1498
+ actionpack (4.0.4) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
1499
+ actionpack (4.0.4) lib/abstract_controller/rendering.rb:97:in `render'
1500
+ actionpack (4.0.4) lib/action_controller/metal/rendering.rb:16:in `render'
1501
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
1502
+ activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
1503
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
1504
+ activesupport (4.0.4) lib/active_support/core_ext/benchmark.rb:12:in `ms'
1505
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
1506
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
1507
+ activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
1508
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:40:in `render'
1509
+ actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
1510
+ actionpack (4.0.4) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
1511
+ actionpack (4.0.4) lib/abstract_controller/base.rb:189:in `process_action'
1512
+ actionpack (4.0.4) lib/action_controller/metal/rendering.rb:10:in `process_action'
1513
+ actionpack (4.0.4) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1514
+ activesupport (4.0.4) lib/active_support/callbacks.rb:383:in `_run__2214048834656884536__process_action__callbacks'
1515
+ activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks'
1516
+ actionpack (4.0.4) lib/abstract_controller/callbacks.rb:17:in `process_action'
1517
+ actionpack (4.0.4) lib/action_controller/metal/rescue.rb:29:in `process_action'
1518
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1519
+ activesupport (4.0.4) lib/active_support/notifications.rb:159:in `block in instrument'
1520
+ activesupport (4.0.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1521
+ activesupport (4.0.4) lib/active_support/notifications.rb:159:in `instrument'
1522
+ actionpack (4.0.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1523
+ actionpack (4.0.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
1524
+ activerecord (4.0.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1525
+ actionpack (4.0.4) lib/abstract_controller/base.rb:136:in `process'
1526
+ actionpack (4.0.4) lib/abstract_controller/rendering.rb:44:in `process'
1527
+ actionpack (4.0.4) lib/action_controller/metal.rb:195:in `dispatch'
1528
+ actionpack (4.0.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1529
+ actionpack (4.0.4) lib/action_controller/metal.rb:231:in `block in action'
1530
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `call'
1531
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1532
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:48:in `call'
1533
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
1534
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `each'
1535
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call'
1536
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call'
1537
+ railties (4.0.4) lib/rails/engine.rb:511:in `call'
1538
+ railties (4.0.4) lib/rails/railtie/configurable.rb:30:in `method_missing'
1539
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
1540
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `each'
1541
+ actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call'
1542
+ actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call'
1543
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1544
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1545
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1546
+ actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1547
+ actionpack (4.0.4) lib/action_dispatch/middleware/flash.rb:241:in `call'
1548
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1549
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1550
+ actionpack (4.0.4) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1551
+ activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call'
1552
+ activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1553
+ activerecord (4.0.4) lib/active_record/migration.rb:373:in `call'
1554
+ actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1555
+ activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__2404650926784705270__call__callbacks'
1556
+ activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks'
1557
+ actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1558
+ actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1559
+ actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1560
+ actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1561
+ actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1562
+ railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app'
1563
+ railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call'
1564
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1565
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged'
1566
+ activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged'
1567
+ railties (4.0.4) lib/rails/rack/logger.rb:20:in `call'
1568
+ actionpack (4.0.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1569
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1570
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1571
+ activesupport (4.0.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1572
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1573
+ actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call'
1574
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1575
+ railties (4.0.4) lib/rails/engine.rb:511:in `call'
1576
+ railties (4.0.4) lib/rails/application.rb:97:in `call'
1577
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1578
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1579
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1580
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1581
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1582
+ /Users/jkoisch/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1583
+
1584
+
1585
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
1586
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
1587
+ Rendered /Users/jkoisch/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.1ms)
1588
+
1589
+
1590
+ Started GET "/plaid_webhook/antennas/new" for 127.0.0.1 at 2014-03-17 11:39:30 -0700
1591
+ Processing by PlaidWebhook::AntennasController#new as HTML
1592
+ Rendered /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/views/plaid_webhook/antennas/_form.html.erb (2.4ms)
1593
+ Rendered /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/views/plaid_webhook/antennas/new.html.erb within layouts/plaid_webhook/application (3.3ms)
1594
+ Completed 200 OK in 6ms (Views: 6.0ms | ActiveRecord: 0.0ms)
1595
+
1596
+
1597
+ Started GET "/assets/plaid_webhook/antennas.css?body=1" for 127.0.0.1 at 2014-03-17 11:39:30 -0700
1598
+
1599
+
1600
+ Started GET "/assets/plaid_webhook/antennas.js?body=1" for 127.0.0.1 at 2014-03-17 11:39:30 -0700
1601
+
1602
+
1603
+ Started POST "/plaid_webhook/antennas" for 127.0.0.1 at 2014-03-17 11:39:36 -0700
1604
+ Processing by PlaidWebhook::AntennasController#create as HTML
1605
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"yeO0NeFZvKu6qwhxHVlKGtEZ7CkmZrgFTQ4i5+JKs7o=", "antenna"=>{"access_token"=>"asvawfd awe eaf ", "payload"=>"asdfassv asdcs d"}, "commit"=>"Create Antenna"}
1606
+  (0.1ms) BEGIN
1607
+ SQL (0.8ms) INSERT INTO "plaid_webhook_antennas" ("access_token", "created_at", "payload", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["access_token", "asvawfd awe eaf "], ["created_at", Mon, 17 Mar 2014 18:39:36 UTC +00:00], ["payload", "utf8=%E2%9C%93&authenticity_token=yeO0NeFZvKu6qwhxHVlKGtEZ7CkmZrgFTQ4i5%2BJKs7o%3D&antenna%5Baccess_token%5D=asvawfd+awe+eaf+&antenna%5Bpayload%5D=asdfassv++++asdcs+d&commit=Create+Antenna"], ["updated_at", Mon, 17 Mar 2014 18:39:36 UTC +00:00]]
1608
+  (0.3ms) COMMIT
1609
+ Completed 201 Created in 4ms (Views: 0.4ms | ActiveRecord: 1.2ms)
1610
+
1611
+
1612
+ Started GET "/plaid_webhook/antennas" for 127.0.0.1 at 2014-03-17 11:39:59 -0700
1613
+ Processing by PlaidWebhook::AntennasController#index as HTML
1614
+ PlaidWebhook::Antenna Load (0.4ms) SELECT "plaid_webhook_antennas".* FROM "plaid_webhook_antennas"
1615
+ Rendered /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/views/plaid_webhook/antennas/index.html.erb within layouts/plaid_webhook/application (14.3ms)
1616
+ Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.4ms)
1617
+
1618
+
1619
+ Started GET "/assets/plaid_webhook/antennas.css?body=1" for 127.0.0.1 at 2014-03-17 11:39:59 -0700
1620
+
1621
+
1622
+ Started GET "/assets/plaid_webhook/antennas.js?body=1" for 127.0.0.1 at 2014-03-17 11:39:59 -0700
1623
+
1624
+
1625
+ Started GET "/plaid_webhook/antennas/new" for 127.0.0.1 at 2014-03-17 11:40:03 -0700
1626
+ Processing by PlaidWebhook::AntennasController#new as HTML
1627
+ Rendered /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/views/plaid_webhook/antennas/_form.html.erb (1.9ms)
1628
+ Rendered /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/views/plaid_webhook/antennas/new.html.erb within layouts/plaid_webhook/application (2.7ms)
1629
+ Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms)
1630
+
1631
+
1632
+ Started GET "/assets/plaid_webhook/antennas.css?body=1" for 127.0.0.1 at 2014-03-17 11:40:03 -0700
1633
+
1634
+
1635
+ Started GET "/assets/plaid_webhook/antennas.js?body=1" for 127.0.0.1 at 2014-03-17 11:40:03 -0700
1636
+
1637
+
1638
+ Started POST "/plaid_webhook/antennas" for 127.0.0.1 at 2014-03-17 11:40:07 -0700
1639
+ Processing by PlaidWebhook::AntennasController#create as HTML
1640
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"yeO0NeFZvKu6qwhxHVlKGtEZ7CkmZrgFTQ4i5+JKs7o=", "antenna"=>{"access_token"=>"ascasd a a a", "payload"=>"asdf sdafadsf asdfwrefawe fewa fwef "}, "commit"=>"Create Antenna"}
1641
+  (0.1ms) BEGIN
1642
+ SQL (0.3ms) INSERT INTO "plaid_webhook_antennas" ("access_token", "created_at", "payload", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["access_token", "ascasd a a a"], ["created_at", Mon, 17 Mar 2014 18:40:07 UTC +00:00], ["payload", "utf8=%E2%9C%93&authenticity_token=yeO0NeFZvKu6qwhxHVlKGtEZ7CkmZrgFTQ4i5%2BJKs7o%3D&antenna%5Baccess_token%5D=ascasd+a+a++a&antenna%5Bpayload%5D=asdf+sdafadsf+asdfwrefawe+fewa+fwef+&commit=Create+Antenna"], ["updated_at", Mon, 17 Mar 2014 18:40:07 UTC +00:00]]
1643
+  (0.3ms) COMMIT
1644
+ Completed 201 Created in 3ms (Views: 0.5ms | ActiveRecord: 0.7ms)
1645
+
1646
+
1647
+ Started GET "/plaid_webhook/antennas" for 127.0.0.1 at 2014-03-17 11:41:42 -0700
1648
+ Processing by PlaidWebhook::AntennasController#index as HTML
1649
+ PlaidWebhook::Antenna Load (0.3ms) SELECT "plaid_webhook_antennas".* FROM "plaid_webhook_antennas"
1650
+ Rendered /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/views/plaid_webhook/antennas/index.html.erb within layouts/plaid_webhook/application (21.4ms)
1651
+ Completed 200 OK in 26ms (Views: 23.4ms | ActiveRecord: 1.4ms)
1652
+
1653
+
1654
+ Started GET "/assets/plaid_webhook/antennas.css?body=1" for 127.0.0.1 at 2014-03-17 11:41:43 -0700
1655
+
1656
+
1657
+ Started GET "/assets/plaid_webhook/antennas.js?body=1" for 127.0.0.1 at 2014-03-17 11:41:43 -0700
1658
+
1659
+
1660
+ Started GET "/plaid_webhook/antennas/new" for 127.0.0.1 at 2014-03-17 11:41:44 -0700
1661
+ Processing by PlaidWebhook::AntennasController#new as HTML
1662
+ Rendered /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/views/plaid_webhook/antennas/_form.html.erb (2.1ms)
1663
+ Rendered /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/views/plaid_webhook/antennas/new.html.erb within layouts/plaid_webhook/application (2.9ms)
1664
+ Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
1665
+
1666
+
1667
+ Started GET "/assets/plaid_webhook/antennas.js?body=1" for 127.0.0.1 at 2014-03-17 11:41:44 -0700
1668
+
1669
+
1670
+ Started GET "/assets/plaid_webhook/antennas.css?body=1" for 127.0.0.1 at 2014-03-17 11:41:44 -0700
1671
+
1672
+
1673
+ Started POST "/plaid_webhook/antennas" for 127.0.0.1 at 2014-03-17 11:41:47 -0700
1674
+ Processing by PlaidWebhook::AntennasController#create as HTML
1675
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"yeO0NeFZvKu6qwhxHVlKGtEZ7CkmZrgFTQ4i5+JKs7o=", "antenna"=>{"access_token"=>"asdae va ", "payload"=>"ds aadsf awefew"}, "commit"=>"Create Antenna"}
1676
+  (0.1ms) BEGIN
1677
+ SQL (0.3ms) INSERT INTO "plaid_webhook_antennas" ("access_token", "created_at", "payload", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["access_token", "asdae va "], ["created_at", Mon, 17 Mar 2014 18:41:47 UTC +00:00], ["payload", "utf8=%E2%9C%93&authenticity_token=yeO0NeFZvKu6qwhxHVlKGtEZ7CkmZrgFTQ4i5%2BJKs7o%3D&antenna%5Baccess_token%5D=asdae+va+&antenna%5Bpayload%5D=ds+aadsf+awefew&commit=Create+Antenna"], ["updated_at", Mon, 17 Mar 2014 18:41:47 UTC +00:00]]
1678
+  (0.3ms) COMMIT
1679
+ Redirected to http://localhost:3000/plaid_webhook/antennas/3
1680
+ Completed 302 Found in 4ms (ActiveRecord: 0.7ms)
1681
+
1682
+
1683
+ Started GET "/plaid_webhook/antennas/3" for 127.0.0.1 at 2014-03-17 11:41:47 -0700
1684
+ Processing by PlaidWebhook::AntennasController#show as HTML
1685
+ Parameters: {"id"=>"3"}
1686
+ PlaidWebhook::Antenna Load (0.7ms) SELECT "plaid_webhook_antennas".* FROM "plaid_webhook_antennas" WHERE "plaid_webhook_antennas"."id" = $1 LIMIT 1 [["id", "3"]]
1687
+ Rendered /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/views/plaid_webhook/antennas/show.html.erb within layouts/plaid_webhook/application (1.3ms)
1688
+ Completed 200 OK in 6ms (Views: 4.3ms | ActiveRecord: 0.7ms)
1689
+
1690
+
1691
+ Started GET "/assets/plaid_webhook/antennas.css?body=1" for 127.0.0.1 at 2014-03-17 11:41:47 -0700
1692
+
1693
+
1694
+ Started GET "/assets/plaid_webhook/antennas.js?body=1" for 127.0.0.1 at 2014-03-17 11:41:47 -0700
1695
+
1696
+
1697
+ Started GET "/plaid_webhook/antennas" for 127.0.0.1 at 2014-03-17 11:41:49 -0700
1698
+ Processing by PlaidWebhook::AntennasController#index as HTML
1699
+ PlaidWebhook::Antenna Load (0.3ms) SELECT "plaid_webhook_antennas".* FROM "plaid_webhook_antennas"
1700
+ Rendered /Users/jkoisch/Documents/cloudsway/ruby/plaid_webhook/app/views/plaid_webhook/antennas/index.html.erb within layouts/plaid_webhook/application (3.2ms)
1701
+ Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.3ms)
1702
+
1703
+
1704
+ Started GET "/assets/plaid_webhook/antennas.css?body=1" for 127.0.0.1 at 2014-03-17 11:41:49 -0700
1705
+
1706
+
1707
+ Started GET "/assets/plaid_webhook/antennas.js?body=1" for 127.0.0.1 at 2014-03-17 11:41:49 -0700