leads_to_highrise 0.1.9 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (85) hide show
  1. checksums.yaml +8 -8
  2. data/README.rdoc +3 -0
  3. data/app/assets/javascripts/{leads_to_highrise/leads.js → leads.js} +0 -0
  4. data/app/assets/stylesheets/{leads_to_highrise/leads.css → leads.css} +0 -0
  5. data/app/controllers/leads_controller.rb +88 -0
  6. data/app/helpers/leads_helper.rb +2 -0
  7. data/app/models/lead.rb +2 -0
  8. data/app/views/{leads_to_highrise/leads → leads}/_form.html.erb +0 -0
  9. data/app/views/{leads_to_highrise/leads → leads}/edit.html.erb +0 -0
  10. data/{lib/generators/leads_to_highrise/templates/_lead.html.erb → app/views/leads/index.html.erb} +38 -34
  11. data/app/views/{leads_to_highrise/leads → leads}/new.html.erb +0 -0
  12. data/app/views/{leads_to_highrise/leads → leads}/show.html.erb +0 -0
  13. data/config/routes.rb +3 -12
  14. data/{test/dummy/db/migrate/20140416000345_create_leads_to_highrise_leads.rb → db/migrate/20140417073703_create_leads.rb} +2 -2
  15. data/db/migrate/{20140416021234_add_highrise_site_and_highrise_user_to_user.rb → 20140417074432_add_highrise_site_and_highrise_user_to_user.rb} +0 -0
  16. data/lib/generators/leads_to_highrise/install_generator.rb +3 -18
  17. data/lib/generators/leads_to_highrise/templates/{20140416000345_create_leads_to_highrise_leads.rb → 20140417073703_create_leads.rb} +2 -2
  18. data/lib/generators/leads_to_highrise/templates/{20140416021234_add_highrise_site_and_highrise_user_to_user.rb → 20140417074432_add_highrise_site_and_highrise_user_to_user.rb} +0 -0
  19. data/lib/leads_to_highrise/engine.rb +0 -3
  20. data/lib/leads_to_highrise/version.rb +1 -1
  21. data/test/controllers/leads_controller_test.rb +49 -0
  22. data/test/dummy/app/views/layouts/application.html.erb +2 -1
  23. data/test/dummy/config/initializers/devise.rb +2 -2
  24. data/test/dummy/config/routes.rb +55 -2
  25. data/test/dummy/config/secrets.yml +2 -2
  26. data/test/dummy/db/development.sqlite3 +0 -0
  27. data/test/dummy/db/migrate/{20140416014910_devise_create_users.rb → 20140417074003_devise_create_users.rb} +0 -0
  28. data/test/dummy/db/schema.rb +2 -2
  29. data/test/dummy/lib/generators/install/USAGE +8 -0
  30. data/test/dummy/lib/generators/install/install_generator.rb +3 -0
  31. data/test/dummy/log/development.log +282 -3990
  32. data/test/dummy/test/lib/generators/install_generator_test.rb +14 -0
  33. data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  34. data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  35. data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  36. data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  37. data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  38. data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  39. data/test/fixtures/{leads_to_highrise/leads.yml → leads.yml} +0 -0
  40. data/test/helpers/leads_helper_test.rb +4 -0
  41. data/test/lib/generators/install_generator_test.rb +14 -0
  42. data/test/models/lead_test.rb +7 -0
  43. metadata +38 -89
  44. data/app/assets/javascripts/leads_to_highrise/application.js +0 -13
  45. data/app/assets/stylesheets/leads_to_highrise/application.css +0 -15
  46. data/app/controllers/leads_to_highrise/application_controller.rb +0 -4
  47. data/app/controllers/leads_to_highrise/leads_controller.rb +0 -92
  48. data/app/helpers/leads_to_highrise/application_helper.rb +0 -4
  49. data/app/helpers/leads_to_highrise/leads_helper.rb +0 -4
  50. data/app/models/leads_to_highrise/lead.rb +0 -5
  51. data/app/views/layouts/leads_to_highrise/example_application.html.erb +0 -14
  52. data/app/views/leads_to_highrise/leads/_lead.html.erb +0 -34
  53. data/app/views/leads_to_highrise/leads/index.html.erb +0 -34
  54. data/db/migrate/20140416000345_create_leads_to_highrise_leads.rb +0 -15
  55. data/lib/generators/leads_to_highrise/templates/_form.html.erb +0 -45
  56. data/lib/generators/leads_to_highrise/templates/edit.html.erb +0 -6
  57. data/lib/generators/leads_to_highrise/templates/index.html.erb +0 -34
  58. data/lib/generators/leads_to_highrise/templates/new.html.erb +0 -5
  59. data/lib/generators/leads_to_highrise/templates/show.html.erb +0 -39
  60. data/test/controllers/leads_to_highrise/leads_controller_test.rb +0 -51
  61. data/test/dummy/app/views/leads_to_highrise/lead/_form.html.erb +0 -45
  62. data/test/dummy/app/views/leads_to_highrise/lead/_lead.html.erb +0 -34
  63. data/test/dummy/app/views/leads_to_highrise/lead/edit.html.erb +0 -6
  64. data/test/dummy/app/views/leads_to_highrise/lead/index.html.erb +0 -34
  65. data/test/dummy/app/views/leads_to_highrise/lead/new.html.erb +0 -5
  66. data/test/dummy/app/views/leads_to_highrise/lead/show.html.erb +0 -39
  67. data/test/dummy/db/migrate/20140416021234_add_highrise_site_and_highrise_user_to_user.rb +0 -6
  68. data/test/dummy/db/test.sqlite3 +0 -0
  69. data/test/dummy/log/test.log +0 -75
  70. data/test/dummy/tmp/cache/assets/development/sprockets/12ec86eede9697fe92fb83e90b318b88 +0 -0
  71. data/test/dummy/tmp/cache/assets/development/sprockets/33872968d30189cee4d8e79aab64c3d5 +0 -0
  72. data/test/dummy/tmp/cache/assets/development/sprockets/9200ac6353eb1662fce665485f7458e6 +0 -0
  73. data/test/dummy/tmp/cache/assets/development/sprockets/92dd5e2f944ef5e5fa71ed89d9312af1 +0 -0
  74. data/test/dummy/tmp/cache/assets/development/sprockets/97b9412f869910d55fc738ce7dbd88b8 +0 -0
  75. data/test/dummy/tmp/cache/assets/development/sprockets/b04e4334658d0126de1cb39dcd8b062f +0 -0
  76. data/test/dummy/tmp/cache/assets/development/sprockets/b3081c914d9ca4332c7bc691e46e9e72 +0 -0
  77. data/test/dummy/tmp/cache/assets/development/sprockets/ca056621a6e70c2cc40341a60d0820b0 +0 -0
  78. data/test/dummy/tmp/cache/assets/development/sprockets/d6fa42a82a7a232f9bae1108e45726de +0 -0
  79. data/test/dummy/tmp/cache/assets/development/sprockets/d8e31b2f676b02dfdf6cef42165373d3 +0 -0
  80. data/test/dummy/tmp/cache/assets/development/sprockets/f873bfac381915533ead2a0546e482f4 +0 -0
  81. data/test/dummy/tmp/cache/assets/development/sprockets/fe2a43ff0e654e41aac13b53e9087099 +0 -0
  82. data/test/helpers/leads_to_highrise/leads_helper_test.rb +0 -6
  83. data/test/lib/generators/leads_to_highrise/install_generator_test.rb +0 -16
  84. data/test/lib/generators/leads_to_highrise/lth_generator_test.rb +0 -16
  85. data/test/models/leads_to_highrise/lead_test.rb +0 -9
@@ -11,10 +11,10 @@
11
11
  # if you're sharing your code publicly.
12
12
 
13
13
  development:
14
- secret_key_base: a9a3e949e6b0fc4dcdb76b60af26dffcd778c23d13f5229baf3677342584670cd0d31d3ae5b21007e99fb8ea1af575242be036e709246ade0c600c5ba00a094d
14
+ secret_key_base: 268b02807c0702947154f88d617f5bb9e48ad9955bf9f1a692a4af7284b500b36097060b1a3e55946d1cbc8d412f82240804db0578316fabf027c6162b200c0c
15
15
 
16
16
  test:
17
- secret_key_base: 4b993246c309a81f7d6e83a710ab5a3a18f29f5db555cfbe12ec9b96af5d6d588e307f4bd39e5355b2bbc9c0f08c331fae57f0830e2583e34548936a2a234c14
17
+ secret_key_base: f5b278f321ccd029f99b8b684f1455360ace8a55870355c79a08dc6357d8222b552c8d99296e762c00e63b51e63c9dfc5229d4ac29e722ea836ca2bdb2f863d4
18
18
 
19
19
  # Do not keep production secrets in the repository,
20
20
  # instead read values from the environment.
Binary file
@@ -11,9 +11,9 @@
11
11
  #
12
12
  # It's strongly recommended that you check this file into your version control system.
13
13
 
14
- ActiveRecord::Schema.define(version: 20140416021234) do
14
+ ActiveRecord::Schema.define(version: 20140417074432) do
15
15
 
16
- create_table "leads_to_highrise_leads", force: true do |t|
16
+ create_table "leads", force: true do |t|
17
17
  t.string "name"
18
18
  t.string "last_name"
19
19
  t.string "email"
@@ -0,0 +1,8 @@
1
+ Description:
2
+ Explain the generator
3
+
4
+ Example:
5
+ rails generate install Thing
6
+
7
+ This will create:
8
+ what/will/it/create
@@ -0,0 +1,3 @@
1
+ class InstallGenerator < Rails::Generators::NamedBase
2
+ source_root File.expand_path('../templates', __FILE__)
3
+ end
@@ -1,3631 +1,75 @@
1
-  (24.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2
-  (0.0ms) select sqlite_version(*)
3
-  (32.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4
- ActiveRecord::SchemaMigration Load (12.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
5
- Migrating to CreateLeadsToHighriseLeads (20140416000345)
6
-  (0.0ms) begin transaction
7
-  (40.0ms) CREATE TABLE "leads_to_highrise_leads" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "last_name" varchar(255), "email" varchar(255), "company" varchar(255), "job_title" varchar(255), "phone" varchar(255), "website" varchar(255), "created_at" datetime, "updated_at" datetime)
8
- SQL (60.0ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140416000345"]]
9
-  (16.0ms) commit transaction
10
- ActiveRecord::SchemaMigration Load (8.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
11
-
12
-
13
- Started GET "/lea" for 10.0.2.2 at 2014-04-16 01:34:24 +0000
14
-
15
- ActionController::RoutingError (No route matches [GET] "/lea"):
16
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
17
- actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
18
- railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
19
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
20
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
21
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
22
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
23
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
24
- actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
25
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
26
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
27
- activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
28
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
29
- actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
30
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
31
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
32
- railties (4.1.0) lib/rails/application.rb:144:in `call'
33
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
34
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
35
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
36
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
37
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
38
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
39
-
40
-
41
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.0ms)
42
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.0ms)
43
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.0ms)
44
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (296.2ms)
45
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (680.4ms)
46
-
47
-
48
- Started GET "/leads_to_highrise/leads" for 10.0.2.2 at 2014-04-16 01:34:47 +0000
49
- Processing by LeadsToHighrise::LeadsController#index as HTML
50
- Completed 500 Internal Server Error in 248ms
51
-
52
- SyntaxError (/vagrant/leads_to_highrise/app/models/leads_to_highrise/lead.rb:3: syntax error, unexpected ':', expecting keyword_end
53
- validate_precense_of: :name, :last_name, :email, :...
54
- ^):
55
- activesupport (4.1.0) lib/active_support/dependencies.rb:443:in `load'
56
- activesupport (4.1.0) lib/active_support/dependencies.rb:443:in `block in load_file'
57
- activesupport (4.1.0) lib/active_support/dependencies.rb:633:in `new_constants_in'
58
- activesupport (4.1.0) lib/active_support/dependencies.rb:442:in `load_file'
59
- activesupport (4.1.0) lib/active_support/dependencies.rb:342:in `require_or_load'
60
- activesupport (4.1.0) lib/active_support/dependencies.rb:480:in `load_missing_constant'
61
- activesupport (4.1.0) lib/active_support/dependencies.rb:180:in `const_missing'
62
- activesupport (4.1.0) lib/active_support/dependencies.rb:512:in `load_missing_constant'
63
- activesupport (4.1.0) lib/active_support/dependencies.rb:180:in `const_missing'
64
- /vagrant/leads_to_highrise/app/controllers/leads_to_highrise/leads_controller.rb:9:in `index'
65
- actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
66
- actionpack (4.1.0) lib/abstract_controller/base.rb:189:in `process_action'
67
- actionpack (4.1.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
68
- actionpack (4.1.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
69
- activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
70
- activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
71
- activesupport (4.1.0) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
72
- activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `call'
73
- activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `run_callbacks'
74
- actionpack (4.1.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
75
- actionpack (4.1.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
76
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
77
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `block in instrument'
78
- activesupport (4.1.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
79
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `instrument'
80
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
81
- actionpack (4.1.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
82
- activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
83
- actionpack (4.1.0) lib/abstract_controller/base.rb:136:in `process'
84
- actionview (4.1.0) lib/action_view/rendering.rb:30:in `process'
85
- actionpack (4.1.0) lib/action_controller/metal.rb:195:in `dispatch'
86
- actionpack (4.1.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
87
- actionpack (4.1.0) lib/action_controller/metal.rb:231:in `block in action'
88
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
89
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
90
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
91
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
92
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
93
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
94
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
95
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
96
- railties (4.1.0) lib/rails/railtie.rb:194:in `public_send'
97
- railties (4.1.0) lib/rails/railtie.rb:194:in `method_missing'
98
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
99
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
100
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
101
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
102
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
103
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
104
- rack (1.5.2) lib/rack/head.rb:11:in `call'
105
- actionpack (4.1.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
106
- actionpack (4.1.0) lib/action_dispatch/middleware/flash.rb:254:in `call'
107
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
108
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
109
- actionpack (4.1.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
110
- activerecord (4.1.0) lib/active_record/query_cache.rb:36:in `call'
111
- activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
112
- activerecord (4.1.0) lib/active_record/migration.rb:380:in `call'
113
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
114
- activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
115
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
116
- actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
117
- actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
118
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
119
- actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
120
- railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
121
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
122
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
123
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
124
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
125
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
126
- actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
127
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
128
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
129
- activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
130
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
131
- actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
132
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
133
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
134
- railties (4.1.0) lib/rails/application.rb:144:in `call'
135
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
136
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
137
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
138
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
139
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
140
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
141
-
142
-
143
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (8.0ms)
144
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.0ms)
145
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (124.1ms)
146
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (244.2ms)
147
-
148
-
149
- Started GET "/leads_to_highrise/leads" for 10.0.2.2 at 2014-04-16 01:35:41 +0000
150
- Processing by LeadsToHighrise::LeadsController#index as HTML
151
- Completed 500 Internal Server Error in 136ms
152
-
153
- SyntaxError (/vagrant/leads_to_highrise/app/models/leads_to_highrise/lead.rb:3: syntax error, unexpected ':', expecting keyword_end
154
- validate_presence_of: :name, :last_name, :email, :...
155
- ^):
156
- activesupport (4.1.0) lib/active_support/dependencies.rb:443:in `load'
157
- activesupport (4.1.0) lib/active_support/dependencies.rb:443:in `block in load_file'
158
- activesupport (4.1.0) lib/active_support/dependencies.rb:633:in `new_constants_in'
159
- activesupport (4.1.0) lib/active_support/dependencies.rb:442:in `load_file'
160
- activesupport (4.1.0) lib/active_support/dependencies.rb:342:in `require_or_load'
161
- activesupport (4.1.0) lib/active_support/dependencies.rb:480:in `load_missing_constant'
162
- activesupport (4.1.0) lib/active_support/dependencies.rb:180:in `const_missing'
163
- activesupport (4.1.0) lib/active_support/dependencies.rb:512:in `load_missing_constant'
164
- activesupport (4.1.0) lib/active_support/dependencies.rb:180:in `const_missing'
165
- /vagrant/leads_to_highrise/app/controllers/leads_to_highrise/leads_controller.rb:9:in `index'
166
- actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
167
- actionpack (4.1.0) lib/abstract_controller/base.rb:189:in `process_action'
168
- actionpack (4.1.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
169
- actionpack (4.1.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
170
- activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
171
- activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
172
- activesupport (4.1.0) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
173
- activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `call'
174
- activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `run_callbacks'
175
- actionpack (4.1.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
176
- actionpack (4.1.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
177
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
178
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `block in instrument'
179
- activesupport (4.1.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
180
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `instrument'
181
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
182
- actionpack (4.1.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
183
- activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
184
- actionpack (4.1.0) lib/abstract_controller/base.rb:136:in `process'
185
- actionview (4.1.0) lib/action_view/rendering.rb:30:in `process'
186
- actionpack (4.1.0) lib/action_controller/metal.rb:195:in `dispatch'
187
- actionpack (4.1.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
188
- actionpack (4.1.0) lib/action_controller/metal.rb:231:in `block in action'
189
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
190
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
191
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
192
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
193
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
194
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
195
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
196
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
197
- railties (4.1.0) lib/rails/railtie.rb:194:in `public_send'
198
- railties (4.1.0) lib/rails/railtie.rb:194:in `method_missing'
199
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
200
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
201
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
202
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
203
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
204
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
205
- rack (1.5.2) lib/rack/head.rb:11:in `call'
206
- actionpack (4.1.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
207
- actionpack (4.1.0) lib/action_dispatch/middleware/flash.rb:254:in `call'
208
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
209
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
210
- actionpack (4.1.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
211
- activerecord (4.1.0) lib/active_record/query_cache.rb:36:in `call'
212
- activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
213
- activerecord (4.1.0) lib/active_record/migration.rb:380:in `call'
214
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
215
- activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
216
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
217
- actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
218
- actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
219
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
220
- actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
221
- railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
222
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
223
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
224
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
225
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
226
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
227
- actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
228
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
229
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
230
- activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
231
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
232
- actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
233
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
234
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
235
- railties (4.1.0) lib/rails/application.rb:144:in `call'
236
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
237
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
238
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
239
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
240
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
241
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
242
-
243
-
244
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.0ms)
245
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms)
246
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.0ms)
247
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (72.0ms)
248
-
249
-
250
- Started GET "/leads_to_highrise/leads" for 10.0.2.2 at 2014-04-16 01:36:55 +0000
251
- Processing by LeadsToHighrise::LeadsController#index as HTML
252
- Completed 500 Internal Server Error in 184ms
253
-
254
- SyntaxError (/vagrant/leads_to_highrise/app/models/leads_to_highrise/lead.rb:3: syntax error, unexpected ':', expecting keyword_end
255
- validate_presence_of: :name, :last_name, :email, :...
256
- ^):
257
- activesupport (4.1.0) lib/active_support/dependencies.rb:443:in `load'
258
- activesupport (4.1.0) lib/active_support/dependencies.rb:443:in `block in load_file'
259
- activesupport (4.1.0) lib/active_support/dependencies.rb:633:in `new_constants_in'
260
- activesupport (4.1.0) lib/active_support/dependencies.rb:442:in `load_file'
261
- activesupport (4.1.0) lib/active_support/dependencies.rb:342:in `require_or_load'
262
- activesupport (4.1.0) lib/active_support/dependencies.rb:480:in `load_missing_constant'
263
- activesupport (4.1.0) lib/active_support/dependencies.rb:180:in `const_missing'
264
- activesupport (4.1.0) lib/active_support/dependencies.rb:512:in `load_missing_constant'
265
- activesupport (4.1.0) lib/active_support/dependencies.rb:180:in `const_missing'
266
- /vagrant/leads_to_highrise/app/controllers/leads_to_highrise/leads_controller.rb:9:in `index'
267
- actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
268
- actionpack (4.1.0) lib/abstract_controller/base.rb:189:in `process_action'
269
- actionpack (4.1.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
270
- actionpack (4.1.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
271
- activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
272
- activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
273
- activesupport (4.1.0) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
274
- activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `call'
275
- activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `run_callbacks'
276
- actionpack (4.1.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
277
- actionpack (4.1.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
278
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
279
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `block in instrument'
280
- activesupport (4.1.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
281
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `instrument'
282
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
283
- actionpack (4.1.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
284
- activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
285
- actionpack (4.1.0) lib/abstract_controller/base.rb:136:in `process'
286
- actionview (4.1.0) lib/action_view/rendering.rb:30:in `process'
287
- actionpack (4.1.0) lib/action_controller/metal.rb:195:in `dispatch'
288
- actionpack (4.1.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
289
- actionpack (4.1.0) lib/action_controller/metal.rb:231:in `block in action'
290
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
291
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
292
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
293
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
294
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
295
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
296
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
297
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
298
- railties (4.1.0) lib/rails/railtie.rb:194:in `public_send'
299
- railties (4.1.0) lib/rails/railtie.rb:194:in `method_missing'
300
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
301
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
302
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
303
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
304
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
305
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
306
- rack (1.5.2) lib/rack/head.rb:11:in `call'
307
- actionpack (4.1.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
308
- actionpack (4.1.0) lib/action_dispatch/middleware/flash.rb:254:in `call'
309
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
310
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
311
- actionpack (4.1.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
312
- activerecord (4.1.0) lib/active_record/query_cache.rb:36:in `call'
313
- activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
314
- activerecord (4.1.0) lib/active_record/migration.rb:380:in `call'
315
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
316
- activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
317
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
318
- actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
319
- actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
320
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
321
- actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
322
- railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
323
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
324
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
325
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
326
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
327
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
328
- actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
329
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
330
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
331
- activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
332
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
333
- actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
334
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
335
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
336
- railties (4.1.0) lib/rails/application.rb:144:in `call'
337
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
338
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
339
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
340
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
341
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
342
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
343
-
344
-
345
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.0ms)
346
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms)
347
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (176.1ms)
348
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (284.2ms)
349
-
350
-
351
- Started GET "/leads_to_highrise/leads" for 10.0.2.2 at 2014-04-16 01:37:53 +0000
352
- Processing by LeadsToHighrise::LeadsController#index as HTML
353
- Completed 500 Internal Server Error in 744ms
354
-
355
- NoMethodError (undefined method `validate_presence_of' for #<Class:0x9dd62ac>):
356
- activerecord (4.1.0) lib/active_record/dynamic_matchers.rb:26:in `method_missing'
357
- /vagrant/leads_to_highrise/app/models/leads_to_highrise/lead.rb:3:in `<class:Lead>'
358
- /vagrant/leads_to_highrise/app/models/leads_to_highrise/lead.rb:2:in `<module:LeadsToHighrise>'
359
- /vagrant/leads_to_highrise/app/models/leads_to_highrise/lead.rb:1:in `<top (required)>'
360
- activesupport (4.1.0) lib/active_support/dependencies.rb:443:in `load'
361
- activesupport (4.1.0) lib/active_support/dependencies.rb:443:in `block in load_file'
362
- activesupport (4.1.0) lib/active_support/dependencies.rb:633:in `new_constants_in'
363
- activesupport (4.1.0) lib/active_support/dependencies.rb:442:in `load_file'
364
- activesupport (4.1.0) lib/active_support/dependencies.rb:342:in `require_or_load'
365
- activesupport (4.1.0) lib/active_support/dependencies.rb:480:in `load_missing_constant'
366
- activesupport (4.1.0) lib/active_support/dependencies.rb:180:in `const_missing'
367
- activesupport (4.1.0) lib/active_support/dependencies.rb:512:in `load_missing_constant'
368
- activesupport (4.1.0) lib/active_support/dependencies.rb:180:in `const_missing'
369
- /vagrant/leads_to_highrise/app/controllers/leads_to_highrise/leads_controller.rb:9:in `index'
370
- actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
371
- actionpack (4.1.0) lib/abstract_controller/base.rb:189:in `process_action'
372
- actionpack (4.1.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
373
- actionpack (4.1.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
374
- activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
375
- activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
376
- activesupport (4.1.0) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
377
- activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `call'
378
- activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `run_callbacks'
379
- actionpack (4.1.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
380
- actionpack (4.1.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
381
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
382
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `block in instrument'
383
- activesupport (4.1.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
384
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `instrument'
385
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
386
- actionpack (4.1.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
387
- activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
388
- actionpack (4.1.0) lib/abstract_controller/base.rb:136:in `process'
389
- actionview (4.1.0) lib/action_view/rendering.rb:30:in `process'
390
- actionpack (4.1.0) lib/action_controller/metal.rb:195:in `dispatch'
391
- actionpack (4.1.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
392
- actionpack (4.1.0) lib/action_controller/metal.rb:231:in `block in action'
393
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
394
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
395
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
396
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
397
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
398
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
399
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
400
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
401
- railties (4.1.0) lib/rails/railtie.rb:194:in `public_send'
402
- railties (4.1.0) lib/rails/railtie.rb:194:in `method_missing'
403
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
404
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
405
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
406
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
407
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
408
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
409
- rack (1.5.2) lib/rack/head.rb:11:in `call'
410
- actionpack (4.1.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
411
- actionpack (4.1.0) lib/action_dispatch/middleware/flash.rb:254:in `call'
412
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
413
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
414
- actionpack (4.1.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
415
- activerecord (4.1.0) lib/active_record/query_cache.rb:36:in `call'
416
- activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
417
- activerecord (4.1.0) lib/active_record/migration.rb:380:in `call'
418
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
419
- activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
420
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
421
- actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
422
- actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
423
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
424
- actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
425
- railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
426
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
427
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
428
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
429
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
430
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
431
- actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
432
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
433
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
434
- activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
435
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
436
- actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
437
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
438
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
439
- railties (4.1.0) lib/rails/application.rb:144:in `call'
440
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
441
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
442
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
443
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
444
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
445
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
446
-
447
-
448
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.0ms)
449
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.0ms)
450
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.0ms)
451
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (84.1ms)
452
-
453
-
454
- Started GET "/leads_to_highrise/leads" for 10.0.2.2 at 2014-04-16 01:38:21 +0000
455
- Processing by LeadsToHighrise::LeadsController#index as HTML
456
- Completed 500 Internal Server Error in 160ms
457
-
458
- NoMethodError (undefined method `validate_presence_of' for #<Class:0x99ac730>):
459
- activerecord (4.1.0) lib/active_record/dynamic_matchers.rb:26:in `method_missing'
460
- /vagrant/leads_to_highrise/app/models/leads_to_highrise/lead.rb:3:in `<class:Lead>'
461
- /vagrant/leads_to_highrise/app/models/leads_to_highrise/lead.rb:2:in `<module:LeadsToHighrise>'
462
- /vagrant/leads_to_highrise/app/models/leads_to_highrise/lead.rb:1:in `<top (required)>'
463
- activesupport (4.1.0) lib/active_support/dependencies.rb:443:in `load'
464
- activesupport (4.1.0) lib/active_support/dependencies.rb:443:in `block in load_file'
465
- activesupport (4.1.0) lib/active_support/dependencies.rb:633:in `new_constants_in'
466
- activesupport (4.1.0) lib/active_support/dependencies.rb:442:in `load_file'
467
- activesupport (4.1.0) lib/active_support/dependencies.rb:342:in `require_or_load'
468
- activesupport (4.1.0) lib/active_support/dependencies.rb:480:in `load_missing_constant'
469
- activesupport (4.1.0) lib/active_support/dependencies.rb:180:in `const_missing'
470
- activesupport (4.1.0) lib/active_support/dependencies.rb:512:in `load_missing_constant'
471
- activesupport (4.1.0) lib/active_support/dependencies.rb:180:in `const_missing'
472
- /vagrant/leads_to_highrise/app/controllers/leads_to_highrise/leads_controller.rb:9:in `index'
473
- actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
474
- actionpack (4.1.0) lib/abstract_controller/base.rb:189:in `process_action'
475
- actionpack (4.1.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
476
- actionpack (4.1.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
477
- activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
478
- activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
479
- activesupport (4.1.0) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
480
- activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `call'
481
- activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `run_callbacks'
482
- actionpack (4.1.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
483
- actionpack (4.1.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
484
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
485
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `block in instrument'
486
- activesupport (4.1.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
487
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `instrument'
488
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
489
- actionpack (4.1.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
490
- activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
491
- actionpack (4.1.0) lib/abstract_controller/base.rb:136:in `process'
492
- actionview (4.1.0) lib/action_view/rendering.rb:30:in `process'
493
- actionpack (4.1.0) lib/action_controller/metal.rb:195:in `dispatch'
494
- actionpack (4.1.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
495
- actionpack (4.1.0) lib/action_controller/metal.rb:231:in `block in action'
496
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
497
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
498
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
499
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
500
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
501
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
502
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
503
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
504
- railties (4.1.0) lib/rails/railtie.rb:194:in `public_send'
505
- railties (4.1.0) lib/rails/railtie.rb:194:in `method_missing'
506
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
507
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
508
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
509
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
510
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
511
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
512
- rack (1.5.2) lib/rack/head.rb:11:in `call'
513
- actionpack (4.1.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
514
- actionpack (4.1.0) lib/action_dispatch/middleware/flash.rb:254:in `call'
515
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
516
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
517
- actionpack (4.1.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
518
- activerecord (4.1.0) lib/active_record/query_cache.rb:36:in `call'
519
- activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
520
- activerecord (4.1.0) lib/active_record/migration.rb:380:in `call'
521
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
522
- activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
523
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
524
- actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
525
- actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
526
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
527
- actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
528
- railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
529
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
530
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
531
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
532
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
533
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
534
- actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
535
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
536
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
537
- activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
538
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
539
- actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
540
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
541
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
542
- railties (4.1.0) lib/rails/application.rb:144:in `call'
543
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
544
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
545
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
546
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
547
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
548
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
549
-
550
-
551
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.0ms)
552
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms)
553
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.0ms)
554
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (52.0ms)
555
-
556
-
557
- Started GET "/leads_to_highrise/leads" for 10.0.2.2 at 2014-04-16 01:38:59 +0000
558
- Processing by LeadsToHighrise::LeadsController#index as HTML
559
- Completed 500 Internal Server Error in 817ms
560
-
561
- NoMethodError (undefined method `validate_presence_of' for #<Class:0xa2df5f0>):
562
- activerecord (4.1.0) lib/active_record/dynamic_matchers.rb:26:in `method_missing'
563
- /vagrant/leads_to_highrise/app/models/leads_to_highrise/lead.rb:3:in `<class:Lead>'
564
- /vagrant/leads_to_highrise/app/models/leads_to_highrise/lead.rb:2:in `<module:LeadsToHighrise>'
565
- /vagrant/leads_to_highrise/app/models/leads_to_highrise/lead.rb:1:in `<top (required)>'
566
- activesupport (4.1.0) lib/active_support/dependencies.rb:443:in `load'
567
- activesupport (4.1.0) lib/active_support/dependencies.rb:443:in `block in load_file'
568
- activesupport (4.1.0) lib/active_support/dependencies.rb:633:in `new_constants_in'
569
- activesupport (4.1.0) lib/active_support/dependencies.rb:442:in `load_file'
570
- activesupport (4.1.0) lib/active_support/dependencies.rb:342:in `require_or_load'
571
- activesupport (4.1.0) lib/active_support/dependencies.rb:480:in `load_missing_constant'
572
- activesupport (4.1.0) lib/active_support/dependencies.rb:180:in `const_missing'
573
- activesupport (4.1.0) lib/active_support/dependencies.rb:512:in `load_missing_constant'
574
- activesupport (4.1.0) lib/active_support/dependencies.rb:180:in `const_missing'
575
- /vagrant/leads_to_highrise/app/controllers/leads_to_highrise/leads_controller.rb:9:in `index'
576
- actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
577
- actionpack (4.1.0) lib/abstract_controller/base.rb:189:in `process_action'
578
- actionpack (4.1.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
579
- actionpack (4.1.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
580
- activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
581
- activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
582
- activesupport (4.1.0) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
583
- activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `call'
584
- activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `run_callbacks'
585
- actionpack (4.1.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
586
- actionpack (4.1.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
587
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
588
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `block in instrument'
589
- activesupport (4.1.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
590
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `instrument'
591
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
592
- actionpack (4.1.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
593
- activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
594
- actionpack (4.1.0) lib/abstract_controller/base.rb:136:in `process'
595
- actionview (4.1.0) lib/action_view/rendering.rb:30:in `process'
596
- actionpack (4.1.0) lib/action_controller/metal.rb:195:in `dispatch'
597
- actionpack (4.1.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
598
- actionpack (4.1.0) lib/action_controller/metal.rb:231:in `block in action'
599
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
600
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
601
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
602
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
603
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
604
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
605
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
606
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
607
- railties (4.1.0) lib/rails/railtie.rb:194:in `public_send'
608
- railties (4.1.0) lib/rails/railtie.rb:194:in `method_missing'
609
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
610
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
611
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
612
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
613
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
614
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
615
- rack (1.5.2) lib/rack/head.rb:11:in `call'
616
- actionpack (4.1.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
617
- actionpack (4.1.0) lib/action_dispatch/middleware/flash.rb:254:in `call'
618
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
619
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
620
- actionpack (4.1.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
621
- activerecord (4.1.0) lib/active_record/query_cache.rb:36:in `call'
622
- activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
623
- activerecord (4.1.0) lib/active_record/migration.rb:380:in `call'
624
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
625
- activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
626
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
627
- actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
628
- actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
629
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
630
- actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
631
- railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
632
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
633
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
634
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
635
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
636
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
637
- actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
638
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
639
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
640
- activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
641
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
642
- actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
643
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
644
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
645
- railties (4.1.0) lib/rails/application.rb:144:in `call'
646
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
647
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
648
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
649
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
650
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
651
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
652
-
653
-
654
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.0ms)
655
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms)
656
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (104.1ms)
657
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (312.2ms)
658
-
659
-
660
- Started GET "/leads_to_highrise/leads" for 10.0.2.2 at 2014-04-16 01:40:19 +0000
661
- Processing by LeadsToHighrise::LeadsController#index as HTML
662
- LeadsToHighrise::Lead Load (12.0ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads"
663
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/index.html.erb within layouts/leads_to_highrise/application (148.1ms)
664
- Completed 200 OK in 2057ms (Views: 1857.2ms | ActiveRecord: 12.0ms)
665
-
666
-
667
- Started GET "/assets/leads_to_highrise/leads.css?body=1" for 10.0.2.2 at 2014-04-16 01:40:22 +0000
668
-
669
-
670
- Started GET "/assets/leads_to_highrise/application.css?body=1" for 10.0.2.2 at 2014-04-16 01:40:22 +0000
671
-
672
-
673
- Started GET "/assets/leads_to_highrise/application.js?body=1" for 10.0.2.2 at 2014-04-16 01:40:23 +0000
674
-
675
-
676
- Started GET "/assets/leads_to_highrise/leads.js?body=1" for 10.0.2.2 at 2014-04-16 01:40:24 +0000
677
-
678
-
679
- Started GET "/leads_to_highrise/leads/new" for 10.0.2.2 at 2014-04-16 01:41:03 +0000
680
- Processing by LeadsToHighrise::LeadsController#new as HTML
681
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/_form.html.erb (484.3ms)
682
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/new.html.erb within layouts/leads_to_highrise/application (780.5ms)
683
- Completed 200 OK in 1485ms (Views: 1473.0ms | ActiveRecord: 8.0ms)
684
-
685
-
686
- Started GET "/assets/leads_to_highrise/leads.css?body=1" for 10.0.2.2 at 2014-04-16 01:41:05 +0000
687
-
688
-
689
- Started GET "/assets/leads_to_highrise/application.css?body=1" for 10.0.2.2 at 2014-04-16 01:41:05 +0000
690
-
691
-
692
- Started GET "/assets/leads_to_highrise/leads.js?body=1" for 10.0.2.2 at 2014-04-16 01:41:05 +0000
693
-
694
-
695
- Started GET "/assets/leads_to_highrise/application.js?body=1" for 10.0.2.2 at 2014-04-16 01:41:06 +0000
696
-
697
-
698
- Started POST "/leads_to_highrise/leads" for 10.0.2.2 at 2014-04-16 01:41:08 +0000
699
- Processing by LeadsToHighrise::LeadsController#create as HTML
700
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"zqsan8TMnnsJrlHuaDLkgYTujyKs4cmr7bNMGIOMBT8=", "lead"=>{"name"=>"", "last_name"=>"", "email"=>"", "company"=>"", "job_title"=>"", "phone"=>"", "website"=>""}, "commit"=>"Create Lead"}
701
-  (0.0ms) begin transaction
702
-  (0.0ms) rollback transaction
703
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/_form.html.erb (48.0ms)
704
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/new.html.erb within layouts/leads_to_highrise/application (168.1ms)
705
- Completed 200 OK in 869ms (Views: 828.5ms | ActiveRecord: 0.0ms)
706
-
707
-
708
- Started GET "/assets/leads_to_highrise/leads.css?body=1" for 10.0.2.2 at 2014-04-16 01:41:09 +0000
709
-
710
-
711
- Started GET "/assets/leads_to_highrise/application.css?body=1" for 10.0.2.2 at 2014-04-16 01:41:09 +0000
712
-
713
-
714
- Started GET "/assets/leads_to_highrise/leads.js?body=1" for 10.0.2.2 at 2014-04-16 01:41:10 +0000
715
-
716
-
717
- Started GET "/assets/leads_to_highrise/application.js?body=1" for 10.0.2.2 at 2014-04-16 01:41:10 +0000
718
-
719
-
720
- Started POST "/leads_to_highrise/leads" for 10.0.2.2 at 2014-04-16 01:42:05 +0000
721
- Processing by LeadsToHighrise::LeadsController#create as HTML
722
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"zqsan8TMnnsJrlHuaDLkgYTujyKs4cmr7bNMGIOMBT8=", "lead"=>{"name"=>"Bruno", "last_name"=>"Tripoloni", "email"=>"bruno.tripoloni@gmail.com", "company"=>"brunolandia", "job_title"=>"empresario", "phone"=>"(18) 3528-5172", "website"=>"site.com.br"}, "commit"=>"Create Lead"}
723
-  (0.0ms) begin transaction
724
- SQL (28.0ms) INSERT INTO "leads_to_highrise_leads" ("company", "created_at", "email", "job_title", "last_name", "name", "phone", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["company", "brunolandia"], ["created_at", "2014-04-16 01:42:06.141230"], ["email", "bruno.tripoloni@gmail.com"], ["job_title", "empresario"], ["last_name", "Tripoloni"], ["name", "Bruno"], ["phone", "(18) 3528-5172"], ["updated_at", "2014-04-16 01:42:06.141230"], ["website", "site.com.br"]]
725
-  (16.0ms) commit transaction
726
- Redirected to http://localhost:3000/leads_to_highrise/leads/1
727
- Completed 302 Found in 184ms (ActiveRecord: 44.0ms)
728
-
729
-
730
- Started GET "/leads_to_highrise/leads/1" for 10.0.2.2 at 2014-04-16 01:42:06 +0000
731
- Processing by LeadsToHighrise::LeadsController#show as HTML
732
- Parameters: {"id"=>"1"}
733
- LeadsToHighrise::Lead Load (12.0ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads" WHERE "leads_to_highrise_leads"."id" = ? LIMIT 1 [["id", 1]]
734
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/show.html.erb within layouts/leads_to_highrise/application (20.0ms)
735
- Completed 200 OK in 636ms (Views: 612.4ms | ActiveRecord: 12.0ms)
736
-
737
-
738
- Started GET "/assets/leads_to_highrise/leads.css?body=1" for 10.0.2.2 at 2014-04-16 01:42:07 +0000
739
-
740
-
741
- Started GET "/assets/leads_to_highrise/application.css?body=1" for 10.0.2.2 at 2014-04-16 01:42:07 +0000
742
-
743
-
744
- Started GET "/assets/leads_to_highrise/leads.js?body=1" for 10.0.2.2 at 2014-04-16 01:42:08 +0000
745
-
746
-
747
- Started GET "/assets/leads_to_highrise/application.js?body=1" for 10.0.2.2 at 2014-04-16 01:42:08 +0000
748
-
749
-
750
- Started GET "/leads_to_highrise/leads" for 10.0.2.2 at 2014-04-16 01:42:12 +0000
751
- Processing by LeadsToHighrise::LeadsController#index as HTML
752
- LeadsToHighrise::Lead Load (12.0ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads"
753
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/index.html.erb within layouts/leads_to_highrise/application (28.0ms)
754
- Completed 200 OK in 656ms (Views: 644.4ms | ActiveRecord: 12.0ms)
755
-
756
-
757
- Started GET "/assets/leads_to_highrise/leads.css?body=1" for 10.0.2.2 at 2014-04-16 01:42:13 +0000
758
-
759
-
760
- Started GET "/assets/leads_to_highrise/application.css?body=1" for 10.0.2.2 at 2014-04-16 01:42:13 +0000
761
-
762
-
763
- Started GET "/assets/leads_to_highrise/leads.js?body=1" for 10.0.2.2 at 2014-04-16 01:42:14 +0000
764
-
765
-
766
- Started GET "/assets/leads_to_highrise/application.js?body=1" for 10.0.2.2 at 2014-04-16 01:42:14 +0000
767
-
768
-
769
- Started GET "/leads_to_highrise/leads/1" for 10.0.2.2 at 2014-04-16 01:42:17 +0000
770
- Processing by LeadsToHighrise::LeadsController#show as HTML
771
- Parameters: {"id"=>"1"}
772
- LeadsToHighrise::Lead Load (4.0ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads" WHERE "leads_to_highrise_leads"."id" = ? LIMIT 1 [["id", 1]]
773
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/show.html.erb within layouts/leads_to_highrise/application (4.0ms)
774
- Completed 200 OK in 608ms (Views: 600.4ms | ActiveRecord: 4.0ms)
775
-
776
-
777
- Started GET "/assets/leads_to_highrise/leads.css?body=1" for 10.0.2.2 at 2014-04-16 01:42:18 +0000
778
-
779
-
780
- Started GET "/assets/leads_to_highrise/application.css?body=1" for 10.0.2.2 at 2014-04-16 01:42:18 +0000
781
-
782
-
783
- Started GET "/assets/leads_to_highrise/leads.js?body=1" for 10.0.2.2 at 2014-04-16 01:42:19 +0000
784
-
785
-
786
- Started GET "/assets/leads_to_highrise/application.js?body=1" for 10.0.2.2 at 2014-04-16 01:42:19 +0000
787
-
788
-
789
- Started GET "/leads_to_highrise/leads" for 10.0.2.2 at 2014-04-16 01:42:26 +0000
790
- Processing by LeadsToHighrise::LeadsController#index as HTML
791
- LeadsToHighrise::Lead Load (4.0ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads"
792
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/index.html.erb within layouts/leads_to_highrise/application (12.0ms)
793
- Completed 200 OK in 596ms (Views: 592.4ms | ActiveRecord: 4.0ms)
794
-
795
-
796
- Started GET "/assets/leads_to_highrise/application.css?body=1" for 10.0.2.2 at 2014-04-16 01:42:27 +0000
797
-
798
-
799
- Started GET "/assets/leads_to_highrise/leads.css?body=1" for 10.0.2.2 at 2014-04-16 01:42:27 +0000
800
-
801
-
802
- Started GET "/assets/leads_to_highrise/application.js?body=1" for 10.0.2.2 at 2014-04-16 01:42:28 +0000
803
-
804
-
805
- Started GET "/assets/leads_to_highrise/leads.js?body=1" for 10.0.2.2 at 2014-04-16 01:42:28 +0000
806
-
807
-
808
- Started GET "/leads_to_highrise/leads/1/edit" for 10.0.2.2 at 2014-04-16 01:42:42 +0000
809
- Processing by LeadsToHighrise::LeadsController#edit as HTML
810
- Parameters: {"id"=>"1"}
811
- LeadsToHighrise::Lead Load (4.0ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads" WHERE "leads_to_highrise_leads"."id" = ? LIMIT 1 [["id", 1]]
812
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/_form.html.erb (16.0ms)
813
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/edit.html.erb within layouts/leads_to_highrise/application (196.1ms)
814
- Completed 200 OK in 732ms (Views: 720.5ms | ActiveRecord: 4.0ms)
815
-
816
-
817
- Started GET "/assets/leads_to_highrise/leads.css?body=1" for 10.0.2.2 at 2014-04-16 01:42:43 +0000
818
-
819
-
820
- Started GET "/assets/leads_to_highrise/application.css?body=1" for 10.0.2.2 at 2014-04-16 01:42:44 +0000
821
-
822
-
823
- Started GET "/assets/leads_to_highrise/leads.js?body=1" for 10.0.2.2 at 2014-04-16 01:42:44 +0000
824
-
825
-
826
- Started GET "/assets/leads_to_highrise/application.js?body=1" for 10.0.2.2 at 2014-04-16 01:42:44 +0000
827
-
828
-
829
- Started GET "/leads_to_highrise/leads" for 10.0.2.2 at 2014-04-16 01:42:48 +0000
830
- Processing by LeadsToHighrise::LeadsController#index as HTML
831
- LeadsToHighrise::Lead Load (4.0ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads"
832
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/index.html.erb within layouts/leads_to_highrise/application (12.0ms)
833
- Completed 200 OK in 740ms (Views: 736.5ms | ActiveRecord: 4.0ms)
834
-
835
-
836
- Started GET "/assets/leads_to_highrise/leads.css?body=1" for 10.0.2.2 at 2014-04-16 01:42:49 +0000
837
-
838
-
839
- Started GET "/assets/leads_to_highrise/application.css?body=1" for 10.0.2.2 at 2014-04-16 01:42:49 +0000
840
-
841
-
842
- Started GET "/assets/leads_to_highrise/leads.js?body=1" for 10.0.2.2 at 2014-04-16 01:42:50 +0000
843
-
844
-
845
- Started GET "/assets/leads_to_highrise/application.js?body=1" for 10.0.2.2 at 2014-04-16 01:42:50 +0000
846
- ActiveRecord::SchemaMigration Load (12.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
847
- Migrating to DeviseCreateUsers (20140416014910)
848
-  (0.0ms) begin transaction
849
-  (24.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0 NOT NULL, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "created_at" datetime, "updated_at" datetime) 
850
-  (0.0ms) select sqlite_version(*)
851
-  (8.0ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
852
-  (0.0ms) SELECT sql
853
- FROM sqlite_master
854
- WHERE name='index_users_on_email' AND type='index'
855
- UNION ALL
856
- SELECT sql
857
- FROM sqlite_temp_master
858
- WHERE name='index_users_on_email' AND type='index'
859
-
860
-  (4.0ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
861
- SQL (192.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140416014910"]]
862
-  (32.0ms) commit transaction
863
- ActiveRecord::SchemaMigration Load (8.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
864
-  (16.0ms)  SELECT sql
865
- FROM sqlite_master
866
- WHERE name='index_users_on_reset_password_token' AND type='index'
867
- UNION ALL
868
- SELECT sql
869
- FROM sqlite_temp_master
870
- WHERE name='index_users_on_reset_password_token' AND type='index'
871
- 
872
-  (24.0ms) SELECT sql
873
- FROM sqlite_master
874
- WHERE name='index_users_on_email' AND type='index'
875
- UNION ALL
876
- SELECT sql
877
- FROM sqlite_temp_master
878
- WHERE name='index_users_on_email' AND type='index'
879
-
880
-
881
-
882
- Started GET "/leads_to_highrise/leads" for 10.0.2.2 at 2014-04-16 01:55:04 +0000
883
- ActiveRecord::SchemaMigration Load (28.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
884
- Processing by LeadsToHighrise::LeadsController#index as HTML
885
- LeadsToHighrise::Lead Load (8.0ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads"
886
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/index.html.erb within layouts/leads_to_highrise/application (232.2ms)
887
- Completed 200 OK in 2582ms (Views: 2225.5ms | ActiveRecord: 12.0ms)
888
-
889
-
890
- Started GET "/assets/leads_to_highrise/leads.css?body=1" for 10.0.2.2 at 2014-04-16 01:55:09 +0000
891
-
892
-
893
- Started GET "/assets/leads_to_highrise/application.css?body=1" for 10.0.2.2 at 2014-04-16 01:55:10 +0000
894
-
895
-
896
- Started GET "/assets/leads_to_highrise/leads.js?body=1" for 10.0.2.2 at 2014-04-16 01:55:10 +0000
897
-
898
-
899
- Started GET "/assets/leads_to_highrise/application.js?body=1" for 10.0.2.2 at 2014-04-16 01:55:11 +0000
900
-
901
-
902
- Started GET "/users/" for 10.0.2.2 at 2014-04-16 01:56:38 +0000
903
-
904
- ActionController::RoutingError (No route matches [GET] "/users"):
905
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
906
- actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
907
- railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
908
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
909
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
910
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
911
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
912
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
913
- actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
914
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
915
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
916
- activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
917
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
918
- actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
919
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
920
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
921
- railties (4.1.0) lib/rails/application.rb:144:in `call'
922
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
923
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
924
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
925
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
926
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
927
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
928
-
929
-
930
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.0ms)
931
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.0ms)
932
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.0ms)
933
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (280.2ms)
934
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (404.3ms)
935
-
936
-
937
- Started GET "/users/sign_up" for 10.0.2.2 at 2014-04-16 01:57:30 +0000
938
- Processing by Devise::RegistrationsController#new as HTML
939
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/devise-3.2.4/app/views/devise/shared/_links.erb (8.0ms)
940
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/devise-3.2.4/app/views/devise/registrations/new.html.erb within layouts/application (608.4ms)
941
- Completed 200 OK in 2041ms (Views: 2005.3ms | ActiveRecord: 12.0ms)
942
-
943
-
944
- Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-04-16 01:57:33 +0000
945
-
946
-
947
- Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-04-16 01:57:34 +0000
948
-
949
-
950
- Started POST "/users" for 10.0.2.2 at 2014-04-16 01:57:50 +0000
951
- Processing by Devise::RegistrationsController#create as HTML
952
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"zqsan8TMnnsJrlHuaDLkgYTujyKs4cmr7bNMGIOMBT8=", "user"=>{"email"=>"bruno.tripoloni@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
953
-  (4.0ms) begin transaction
954
- User Exists (8.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'bruno.tripoloni@gmail.com' LIMIT 1
955
- Binary data inserted for `string` type on column `encrypted_password`
956
- SQL (132.1ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-04-16 01:57:51.346998"], ["email", "bruno.tripoloni@gmail.com"], ["encrypted_password", "$2a$10$nkhE5/R7mWE6kGKDA31noOAEyJ8ybfZ5XLIMVng4OfUiU2G2PnrjO"], ["updated_at", "2014-04-16 01:57:51.346998"]]
957
-  (56.0ms) commit transaction
958
-  (0.0ms) begin transaction
959
- Binary data inserted for `string` type on column `current_sign_in_ip`
960
- Binary data inserted for `string` type on column `last_sign_in_ip`
961
- SQL (56.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "current_sign_in_ip" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-04-16 01:57:52.059468"], ["current_sign_in_ip", "10.0.2.2"], ["last_sign_in_at", "2014-04-16 01:57:52.059468"], ["last_sign_in_ip", "10.0.2.2"], ["sign_in_count", 1], ["updated_at", "2014-04-16 01:57:52.115504"]]
962
-  (32.0ms) commit transaction
963
- Redirected to http://localhost:3000/
964
- Completed 302 Found in 2830ms (ActiveRecord: 288.2ms)
965
-
966
-
967
- Started GET "/" for 10.0.2.2 at 2014-04-16 01:57:53 +0000
968
- Processing by Rails::WelcomeController#index as HTML
969
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/railties-4.1.0/lib/rails/templates/rails/welcome/index.html.erb (8.0ms)
970
- Completed 200 OK in 32ms (Views: 32.0ms | ActiveRecord: 0.0ms)
971
- ActiveRecord::SchemaMigration Load (4.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
972
- Migrating to AddHighriseSiteAndHighriseUserToUser (20140416021234)
973
-  (0.0ms) begin transaction
974
-  (12.0ms) ALTER TABLE "users" ADD "highrise_site" varchar(255)
975
-  (0.0ms) ALTER TABLE "users" ADD "highrise_user" varchar(255)
976
- SQL (124.0ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140416021234"]]
977
-  (28.0ms) commit transaction
978
- ActiveRecord::SchemaMigration Load (4.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
979
-  (4.0ms) SELECT sql
980
- FROM sqlite_master
981
- WHERE name='index_users_on_reset_password_token' AND type='index'
982
- UNION ALL
983
- SELECT sql
984
- FROM sqlite_temp_master
985
- WHERE name='index_users_on_reset_password_token' AND type='index'
986
-
987
-  (8.0ms)  SELECT sql
988
- FROM sqlite_master
989
- WHERE name='index_users_on_email' AND type='index'
990
- UNION ALL
991
- SELECT sql
992
- FROM sqlite_temp_master
993
- WHERE name='index_users_on_email' AND type='index'
994
- 
995
- User Load (8.0ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 1
996
-  (0.0ms) begin transaction
997
- SQL (16.0ms) UPDATE "users" SET "highrise_site" = ?, "highrise_user" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["highrise_site", "https://brunotripoloni.highrisehq.com"], ["highrise_user", "ac3c0c23c6333683a221dc75b70be717"], ["updated_at", "2014-04-16 02:27:17.357603"]]
998
-  (16.0ms) commit transaction
999
-
1000
-
1001
- Started GET "/leads_to_highrise/leads" for 10.0.2.2 at 2014-04-16 02:30:25 +0000
1002
- ActiveRecord::SchemaMigration Load (4.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
1003
- Processing by LeadsToHighrise::LeadsController#index as HTML
1004
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/index.html.erb within layouts/leads_to_highrise/application (4.0ms)
1005
- Completed 500 Internal Server Error in 820ms
1006
-
1007
- SyntaxError (/vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/index.html.erb:30: syntax error, unexpected ')'
1008
- ...rise', to_highrise_path(lead),);@output_buffer.safe_append='...
1009
- ... ^
1010
- /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/index.html.erb:32: syntax error, unexpected keyword_end, expecting ')'
1011
- '.freeze; end
1012
- ^
1013
- /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/index.html.erb:35: syntax error, unexpected keyword_ensure, expecting ')'
1014
- /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/index.html.erb:37: syntax error, unexpected keyword_end, expecting ')'):
1015
- actionview (4.1.0) lib/action_view/template.rb:297:in `module_eval'
1016
- actionview (4.1.0) lib/action_view/template.rb:297:in `compile'
1017
- actionview (4.1.0) lib/action_view/template.rb:245:in `block (2 levels) in compile!'
1018
- activesupport (4.1.0) lib/active_support/notifications.rb:161:in `instrument'
1019
- actionview (4.1.0) lib/action_view/template.rb:339:in `instrument'
1020
- actionview (4.1.0) lib/action_view/template.rb:244:in `block in compile!'
1021
- <internal:prelude>:10:in `synchronize'
1022
- actionview (4.1.0) lib/action_view/template.rb:232:in `compile!'
1023
- actionview (4.1.0) lib/action_view/template.rb:144:in `block in render'
1024
- activesupport (4.1.0) lib/active_support/notifications.rb:161:in `instrument'
1025
- actionview (4.1.0) lib/action_view/template.rb:339:in `instrument'
1026
- actionview (4.1.0) lib/action_view/template.rb:143:in `render'
1027
- actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template'
1028
- actionview (4.1.0) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
1029
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `block in instrument'
1030
- activesupport (4.1.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1031
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `instrument'
1032
- actionview (4.1.0) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
1033
- actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template'
1034
- actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout'
1035
- actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:53:in `render_template'
1036
- actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:17:in `render'
1037
- actionview (4.1.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
1038
- actionview (4.1.0) lib/action_view/renderer/renderer.rb:23:in `render'
1039
- actionview (4.1.0) lib/action_view/rendering.rb:99:in `_render_template'
1040
- actionpack (4.1.0) lib/action_controller/metal/streaming.rb:217:in `_render_template'
1041
- actionview (4.1.0) lib/action_view/rendering.rb:82:in `render_to_body'
1042
- actionpack (4.1.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
1043
- actionpack (4.1.0) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
1044
- actionpack (4.1.0) lib/abstract_controller/rendering.rb:25:in `render'
1045
- actionpack (4.1.0) lib/action_controller/metal/rendering.rb:16:in `render'
1046
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
1047
- activesupport (4.1.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
1048
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
1049
- activesupport (4.1.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
1050
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
1051
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
1052
- activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
1053
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
1054
- actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
1055
- actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
1056
- actionpack (4.1.0) lib/abstract_controller/base.rb:189:in `process_action'
1057
- actionpack (4.1.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
1058
- actionpack (4.1.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
1059
- activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
1060
- activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
1061
- activesupport (4.1.0) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
1062
- activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `call'
1063
- activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `run_callbacks'
1064
- actionpack (4.1.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
1065
- actionpack (4.1.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
1066
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1067
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `block in instrument'
1068
- activesupport (4.1.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1069
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `instrument'
1070
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1071
- actionpack (4.1.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
1072
- activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1073
- actionpack (4.1.0) lib/abstract_controller/base.rb:136:in `process'
1074
- actionview (4.1.0) lib/action_view/rendering.rb:30:in `process'
1075
- actionpack (4.1.0) lib/action_controller/metal.rb:195:in `dispatch'
1076
- actionpack (4.1.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1077
- actionpack (4.1.0) lib/action_controller/metal.rb:231:in `block in action'
1078
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
1079
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1080
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
1081
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
1082
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
1083
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
1084
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
1085
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
1086
- railties (4.1.0) lib/rails/railtie.rb:194:in `public_send'
1087
- railties (4.1.0) lib/rails/railtie.rb:194:in `method_missing'
1088
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
1089
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
1090
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
1091
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
1092
- warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
1093
- warden (1.2.3) lib/warden/manager.rb:34:in `catch'
1094
- warden (1.2.3) lib/warden/manager.rb:34:in `call'
1095
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
1096
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1097
- rack (1.5.2) lib/rack/head.rb:11:in `call'
1098
- actionpack (4.1.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1099
- actionpack (4.1.0) lib/action_dispatch/middleware/flash.rb:254:in `call'
1100
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1101
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1102
- actionpack (4.1.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1103
- activerecord (4.1.0) lib/active_record/query_cache.rb:36:in `call'
1104
- activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
1105
- activerecord (4.1.0) lib/active_record/migration.rb:380:in `call'
1106
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1107
- activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
1108
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1109
- actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1110
- actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1111
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1112
- actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1113
- railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
1114
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
1115
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1116
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
1117
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
1118
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
1119
- actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1120
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1121
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1122
- activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1123
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
1124
- actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
1125
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1126
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
1127
- railties (4.1.0) lib/rails/application.rb:144:in `call'
1128
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
1129
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1130
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1131
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1132
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1133
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1134
-
1135
-
1136
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.0ms)
1137
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (8.0ms)
1138
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (144.0ms)
1139
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (236.0ms)
1140
-
1141
-
1142
- Started GET "/leads_to_highrise/leads" for 10.0.2.2 at 2014-04-16 02:31:08 +0000
1143
- Processing by LeadsToHighrise::LeadsController#index as HTML
1144
- LeadsToHighrise::Lead Load (12.0ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads"
1145
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/index.html.erb within layouts/leads_to_highrise/application (136.0ms)
1146
- Completed 200 OK in 1579ms (Views: 1559.5ms | ActiveRecord: 20.0ms)
1147
-
1148
-
1149
- Started GET "/assets/leads_to_highrise/leads.css?body=1" for 10.0.2.2 at 2014-04-16 02:31:11 +0000
1150
-
1151
-
1152
- Started GET "/assets/leads_to_highrise/application.css?body=1" for 10.0.2.2 at 2014-04-16 02:31:11 +0000
1153
-
1154
-
1155
- Started GET "/assets/leads_to_highrise/leads.js?body=1" for 10.0.2.2 at 2014-04-16 02:31:11 +0000
1156
-
1157
-
1158
- Started GET "/assets/leads_to_highrise/application.js?body=1" for 10.0.2.2 at 2014-04-16 02:31:12 +0000
1159
-
1160
-
1161
- Started GET "/leads_to_highrise/lead/to_highrise/1" for 10.0.2.2 at 2014-04-16 02:31:16 +0000
1162
- Processing by LeadsToHighrise::LeadsController#to_highrise as HTML
1163
- Parameters: {"id"=>"1"}
1164
- LeadsToHighrise::Lead Load (4.0ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads" WHERE "leads_to_highrise_leads"."id" = ? LIMIT 1 [["id", 1]]
1165
- Completed 500 Internal Server Error in 276ms
1166
-
1167
- NameError (uninitialized constant LeadsToHighrise::LeadsController::Highrise):
1168
- /vagrant/leads_to_highrise/app/controllers/leads_to_highrise/leads_controller.rb:59:in `add_person'
1169
- /vagrant/leads_to_highrise/app/controllers/leads_to_highrise/leads_controller.rb:53:in `to_highrise'
1170
- actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1171
- actionpack (4.1.0) lib/abstract_controller/base.rb:189:in `process_action'
1172
- actionpack (4.1.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
1173
- actionpack (4.1.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
1174
- activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
1175
- activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
1176
- activesupport (4.1.0) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
1177
- activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `call'
1178
- activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `run_callbacks'
1179
- actionpack (4.1.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
1180
- actionpack (4.1.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
1181
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1182
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `block in instrument'
1183
- activesupport (4.1.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1184
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `instrument'
1185
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1186
- actionpack (4.1.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
1187
- activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1188
- actionpack (4.1.0) lib/abstract_controller/base.rb:136:in `process'
1189
- actionview (4.1.0) lib/action_view/rendering.rb:30:in `process'
1190
- actionpack (4.1.0) lib/action_controller/metal.rb:195:in `dispatch'
1191
- actionpack (4.1.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1192
- actionpack (4.1.0) lib/action_controller/metal.rb:231:in `block in action'
1193
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
1194
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1195
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
1196
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
1197
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
1198
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
1199
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
1200
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
1201
- railties (4.1.0) lib/rails/railtie.rb:194:in `public_send'
1202
- railties (4.1.0) lib/rails/railtie.rb:194:in `method_missing'
1203
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
1204
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
1205
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
1206
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
1207
- warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
1208
- warden (1.2.3) lib/warden/manager.rb:34:in `catch'
1209
- warden (1.2.3) lib/warden/manager.rb:34:in `call'
1210
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
1211
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1212
- rack (1.5.2) lib/rack/head.rb:11:in `call'
1213
- actionpack (4.1.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1214
- actionpack (4.1.0) lib/action_dispatch/middleware/flash.rb:254:in `call'
1215
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1216
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1217
- actionpack (4.1.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1218
- activerecord (4.1.0) lib/active_record/query_cache.rb:36:in `call'
1219
- activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
1220
- activerecord (4.1.0) lib/active_record/migration.rb:380:in `call'
1221
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1222
- activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
1223
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1224
- actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1225
- actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1226
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1227
- actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1228
- railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
1229
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
1230
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1231
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
1232
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
1233
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
1234
- actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1235
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1236
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1237
- activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1238
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
1239
- actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
1240
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1241
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
1242
- railties (4.1.0) lib/rails/application.rb:144:in `call'
1243
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
1244
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1245
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1246
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1247
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1248
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1249
-
1250
-
1251
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.0ms)
1252
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.0ms)
1253
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.0ms)
1254
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (72.0ms)
1255
-
1256
-
1257
- Started GET "/leads_to_highrise/lead/to_highrise/1" for 10.0.2.2 at 2014-04-16 02:32:32 +0000
1258
-
1259
- LoadError (cannot load such file -- Highrise):
1260
- activesupport (4.1.0) lib/active_support/dependencies.rb:247:in `require'
1261
- activesupport (4.1.0) lib/active_support/dependencies.rb:247:in `block in require'
1262
- activesupport (4.1.0) lib/active_support/dependencies.rb:230:in `block in load_dependency'
1263
- activesupport (4.1.0) lib/active_support/dependencies.rb:633:in `new_constants_in'
1264
- activesupport (4.1.0) lib/active_support/dependencies.rb:230:in `load_dependency'
1265
- activesupport (4.1.0) lib/active_support/dependencies.rb:247:in `require'
1266
- /vagrant/leads_to_highrise/app/controllers/leads_to_highrise/leads_controller.rb:2:in `<top (required)>'
1267
- activesupport (4.1.0) lib/active_support/dependencies.rb:443:in `load'
1268
- activesupport (4.1.0) lib/active_support/dependencies.rb:443:in `block in load_file'
1269
- activesupport (4.1.0) lib/active_support/dependencies.rb:633:in `new_constants_in'
1270
- activesupport (4.1.0) lib/active_support/dependencies.rb:442:in `load_file'
1271
- activesupport (4.1.0) lib/active_support/dependencies.rb:342:in `require_or_load'
1272
- activesupport (4.1.0) lib/active_support/dependencies.rb:480:in `load_missing_constant'
1273
- activesupport (4.1.0) lib/active_support/dependencies.rb:180:in `const_missing'
1274
- activesupport (4.1.0) lib/active_support/inflector/methods.rb:240:in `const_get'
1275
- activesupport (4.1.0) lib/active_support/inflector/methods.rb:240:in `block in constantize'
1276
- activesupport (4.1.0) lib/active_support/inflector/methods.rb:236:in `each'
1277
- activesupport (4.1.0) lib/active_support/inflector/methods.rb:236:in `inject'
1278
- activesupport (4.1.0) lib/active_support/inflector/methods.rb:236:in `constantize'
1279
- activesupport (4.1.0) lib/active_support/dependencies.rb:552:in `get'
1280
- activesupport (4.1.0) lib/active_support/dependencies.rb:583:in `constantize'
1281
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
1282
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:66:in `controller'
1283
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:44:in `call'
1284
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
1285
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
1286
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
1287
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
1288
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
1289
- railties (4.1.0) lib/rails/railtie.rb:194:in `public_send'
1290
- railties (4.1.0) lib/rails/railtie.rb:194:in `method_missing'
1291
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
1292
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
1293
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
1294
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
1295
- warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
1296
- warden (1.2.3) lib/warden/manager.rb:34:in `catch'
1297
- warden (1.2.3) lib/warden/manager.rb:34:in `call'
1298
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
1299
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1300
- rack (1.5.2) lib/rack/head.rb:11:in `call'
1301
- actionpack (4.1.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1302
- actionpack (4.1.0) lib/action_dispatch/middleware/flash.rb:254:in `call'
1303
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1304
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1305
- actionpack (4.1.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1306
- activerecord (4.1.0) lib/active_record/query_cache.rb:36:in `call'
1307
- activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
1308
- activerecord (4.1.0) lib/active_record/migration.rb:380:in `call'
1309
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1310
- activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
1311
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1312
- actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1313
- actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1314
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1315
- actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1316
- railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
1317
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
1318
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1319
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
1320
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
1321
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
1322
- actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1323
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1324
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1325
- activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1326
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
1327
- actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
1328
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1329
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
1330
- railties (4.1.0) lib/rails/application.rb:144:in `call'
1331
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
1332
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1333
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1334
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1335
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1336
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1337
-
1338
-
1339
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.0ms)
1340
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms)
1341
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.0ms)
1342
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (64.0ms)
1343
-
1344
-
1345
- Started GET "/leads_to_highrise/lead/to_highrise/1" for 10.0.2.2 at 2014-04-16 02:32:41 +0000
1346
- Processing by LeadsToHighrise::LeadsController#to_highrise as HTML
1347
- Parameters: {"id"=>"1"}
1348
- LeadsToHighrise::Lead Load (4.0ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads" WHERE "leads_to_highrise_leads"."id" = ? LIMIT 1 [["id", 1]]
1349
- User Load (4.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
1350
- Completed 500 Internal Server Error in 6682ms
1351
-
1352
- ActionView::MissingTemplate (Missing template leads_to_highrise/leads/to_highrise, leads_to_highrise/application/to_highrise with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
1353
- * "/vagrant/leads_to_highrise/test/dummy/app/views"
1354
- * "/vagrant/leads_to_highrise/app/views"
1355
- * "/home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/devise-3.2.4/app/views"
1356
- ):
1357
- actionview (4.1.0) lib/action_view/path_set.rb:46:in `find'
1358
- actionview (4.1.0) lib/action_view/lookup_context.rb:124:in `find'
1359
- actionview (4.1.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
1360
- actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:41:in `determine_template'
1361
- actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:8:in `render'
1362
- actionview (4.1.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
1363
- actionview (4.1.0) lib/action_view/renderer/renderer.rb:23:in `render'
1364
- actionview (4.1.0) lib/action_view/rendering.rb:99:in `_render_template'
1365
- actionpack (4.1.0) lib/action_controller/metal/streaming.rb:217:in `_render_template'
1366
- actionview (4.1.0) lib/action_view/rendering.rb:82:in `render_to_body'
1367
- actionpack (4.1.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
1368
- actionpack (4.1.0) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
1369
- actionpack (4.1.0) lib/abstract_controller/rendering.rb:25:in `render'
1370
- actionpack (4.1.0) lib/action_controller/metal/rendering.rb:16:in `render'
1371
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
1372
- activesupport (4.1.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
1373
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
1374
- activesupport (4.1.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
1375
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
1376
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
1377
- activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
1378
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
1379
- actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
1380
- actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
1381
- actionpack (4.1.0) lib/abstract_controller/base.rb:189:in `process_action'
1382
- actionpack (4.1.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
1383
- actionpack (4.1.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
1384
- activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
1385
- activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
1386
- activesupport (4.1.0) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
1387
- activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `call'
1388
- activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `run_callbacks'
1389
- actionpack (4.1.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
1390
- actionpack (4.1.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
1391
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1392
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `block in instrument'
1393
- activesupport (4.1.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1394
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `instrument'
1395
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1396
- actionpack (4.1.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
1397
- activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1398
- actionpack (4.1.0) lib/abstract_controller/base.rb:136:in `process'
1399
- actionview (4.1.0) lib/action_view/rendering.rb:30:in `process'
1400
- actionpack (4.1.0) lib/action_controller/metal.rb:195:in `dispatch'
1401
- actionpack (4.1.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1402
- actionpack (4.1.0) lib/action_controller/metal.rb:231:in `block in action'
1403
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
1404
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1405
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
1406
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
1407
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
1408
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
1409
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
1410
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
1411
- railties (4.1.0) lib/rails/railtie.rb:194:in `public_send'
1412
- railties (4.1.0) lib/rails/railtie.rb:194:in `method_missing'
1413
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
1414
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
1415
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
1416
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
1417
- warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
1418
- warden (1.2.3) lib/warden/manager.rb:34:in `catch'
1419
- warden (1.2.3) lib/warden/manager.rb:34:in `call'
1420
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
1421
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1422
- rack (1.5.2) lib/rack/head.rb:11:in `call'
1423
- actionpack (4.1.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1424
- actionpack (4.1.0) lib/action_dispatch/middleware/flash.rb:254:in `call'
1425
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1426
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1427
- actionpack (4.1.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1428
- activerecord (4.1.0) lib/active_record/query_cache.rb:36:in `call'
1429
- activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
1430
- activerecord (4.1.0) lib/active_record/migration.rb:380:in `call'
1431
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1432
- activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
1433
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1434
- actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1435
- actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1436
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1437
- actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1438
- railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
1439
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
1440
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1441
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
1442
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
1443
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
1444
- actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1445
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1446
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1447
- activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1448
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
1449
- actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
1450
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1451
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
1452
- railties (4.1.0) lib/rails/application.rb:144:in `call'
1453
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
1454
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1455
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1456
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1457
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1458
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1459
-
1460
-
1461
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (0.0ms)
1462
-
1463
-
1464
- Started GET "/leads_to_highrise/lead/to_highrise/1" for 10.0.2.2 at 2014-04-16 02:35:31 +0000
1465
- Processing by LeadsToHighrise::LeadsController#to_highrise as HTML
1466
- Parameters: {"id"=>"1"}
1467
- LeadsToHighrise::Lead Load (12.0ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads" WHERE "leads_to_highrise_leads"."id" = ? LIMIT 1 [["id", 1]]
1468
- User Load (8.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
1469
- Completed 500 Internal Server Error in 2143ms
1470
-
1471
- NameError (undefined local variable or method `root_path' for #<LeadsToHighrise::LeadsController:0x99cc38c>):
1472
- /vagrant/leads_to_highrise/app/controllers/leads_to_highrise/leads_controller.rb:72:in `add_person'
1473
- /vagrant/leads_to_highrise/app/controllers/leads_to_highrise/leads_controller.rb:53:in `to_highrise'
1474
- actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1475
- actionpack (4.1.0) lib/abstract_controller/base.rb:189:in `process_action'
1476
- actionpack (4.1.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
1477
- actionpack (4.1.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
1478
- activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
1479
- activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
1480
- activesupport (4.1.0) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
1481
- activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `call'
1482
- activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `run_callbacks'
1483
- actionpack (4.1.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
1484
- actionpack (4.1.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
1485
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1486
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `block in instrument'
1487
- activesupport (4.1.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1488
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `instrument'
1489
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1490
- actionpack (4.1.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
1491
- activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1492
- actionpack (4.1.0) lib/abstract_controller/base.rb:136:in `process'
1493
- actionview (4.1.0) lib/action_view/rendering.rb:30:in `process'
1494
- actionpack (4.1.0) lib/action_controller/metal.rb:195:in `dispatch'
1495
- actionpack (4.1.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1496
- actionpack (4.1.0) lib/action_controller/metal.rb:231:in `block in action'
1497
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
1498
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1499
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
1500
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
1501
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
1502
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
1503
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
1504
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
1505
- railties (4.1.0) lib/rails/railtie.rb:194:in `public_send'
1506
- railties (4.1.0) lib/rails/railtie.rb:194:in `method_missing'
1507
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
1508
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
1509
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
1510
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
1511
- warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
1512
- warden (1.2.3) lib/warden/manager.rb:34:in `catch'
1513
- warden (1.2.3) lib/warden/manager.rb:34:in `call'
1514
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
1515
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1516
- rack (1.5.2) lib/rack/head.rb:11:in `call'
1517
- actionpack (4.1.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1518
- actionpack (4.1.0) lib/action_dispatch/middleware/flash.rb:254:in `call'
1519
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1520
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1521
- actionpack (4.1.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1522
- activerecord (4.1.0) lib/active_record/query_cache.rb:36:in `call'
1523
- activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
1524
- activerecord (4.1.0) lib/active_record/migration.rb:380:in `call'
1525
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1526
- activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
1527
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1528
- actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1529
- actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1530
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1531
- actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1532
- railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
1533
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
1534
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1535
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
1536
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
1537
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
1538
- actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1539
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1540
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1541
- activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1542
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
1543
- actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
1544
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1545
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
1546
- railties (4.1.0) lib/rails/application.rb:144:in `call'
1547
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
1548
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1549
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1550
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1551
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1552
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1553
-
1554
-
1555
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.0ms)
1556
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms)
1557
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.0ms)
1558
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (108.0ms)
1559
-
1560
-
1561
- Started GET "/leads_to_highrise/lead/to_highrise/1" for 10.0.2.2 at 2014-04-16 02:37:27 +0000
1562
- Processing by LeadsToHighrise::LeadsController#to_highrise as HTML
1563
- Parameters: {"id"=>"1"}
1564
- LeadsToHighrise::Lead Load (12.0ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads" WHERE "leads_to_highrise_leads"."id" = ? LIMIT 1 [["id", 1]]
1565
- User Load (8.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
1566
- Redirected to http://localhost:3000/leads_to_highrise/leads
1567
- Completed 302 Found in 10992ms (ActiveRecord: 56.0ms)
1568
-
1569
-
1570
- Started GET "/leads_to_highrise/leads" for 10.0.2.2 at 2014-04-16 02:37:39 +0000
1571
- Processing by LeadsToHighrise::LeadsController#index as HTML
1572
- LeadsToHighrise::Lead Load (8.0ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads"
1573
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/index.html.erb within layouts/leads_to_highrise/application (56.0ms)
1574
- Completed 200 OK in 700ms (Views: 691.8ms | ActiveRecord: 8.0ms)
1575
-
1576
-
1577
- Started GET "/assets/leads_to_highrise/leads.css?body=1" for 10.0.2.2 at 2014-04-16 02:37:40 +0000
1578
-
1579
-
1580
- Started GET "/assets/leads_to_highrise/application.css?body=1" for 10.0.2.2 at 2014-04-16 02:37:41 +0000
1581
-
1582
-
1583
- Started GET "/assets/leads_to_highrise/leads.js?body=1" for 10.0.2.2 at 2014-04-16 02:37:41 +0000
1584
-
1585
-
1586
- Started GET "/assets/leads_to_highrise/application.js?body=1" for 10.0.2.2 at 2014-04-16 02:37:41 +0000
1587
-
1588
-
1589
- Started GET "/leads_to_highrise/leads" for 10.0.2.2 at 2014-04-16 02:43:55 +0000
1590
- ActiveRecord::SchemaMigration Load (16.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
1591
- Processing by LeadsToHighrise::LeadsController#index as HTML
1592
- LeadsToHighrise::Lead Load (8.0ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads"
1593
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/index.html.erb within layouts/leads_to_highrise/application (187.9ms)
1594
- Completed 200 OK in 1420ms (Views: 1279.6ms | ActiveRecord: 16.0ms)
1595
-
1596
-
1597
- Started GET "/assets/leads_to_highrise/leads.css?body=1" for 10.0.2.2 at 2014-04-16 02:43:59 +0000
1598
-
1599
-
1600
- Started GET "/assets/leads_to_highrise/application.css?body=1" for 10.0.2.2 at 2014-04-16 02:44:00 +0000
1601
-
1602
-
1603
- Started GET "/assets/leads_to_highrise/application.js?body=1" for 10.0.2.2 at 2014-04-16 02:44:00 +0000
1604
-
1605
-
1606
- Started GET "/assets/leads_to_highrise/leads.js?body=1" for 10.0.2.2 at 2014-04-16 02:44:01 +0000
1607
-
1608
-
1609
- Started GET "/leads_to_highrise/lead/to_highrise/1" for 10.0.2.2 at 2014-04-16 02:44:03 +0000
1610
- Processing by LeadsToHighrise::LeadsController#to_highrise as HTML
1611
- Parameters: {"id"=>"1"}
1612
- LeadsToHighrise::Lead Load (8.0ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads" WHERE "leads_to_highrise_leads"."id" = ? LIMIT 1 [["id", 1]]
1613
- User Load (8.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
1614
- Completed 500 Internal Server Error in 4578ms
1615
-
1616
- NameError (undefined local variable or method `root_path' for #<LeadsToHighrise::LeadsController:0xb4aed6c>):
1617
- /vagrant/leads_to_highrise/app/controllers/leads_to_highrise/leads_controller.rb:72:in `add_person'
1618
- /vagrant/leads_to_highrise/app/controllers/leads_to_highrise/leads_controller.rb:53:in `to_highrise'
1619
- actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1620
- actionpack (4.1.0) lib/abstract_controller/base.rb:189:in `process_action'
1621
- actionpack (4.1.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
1622
- actionpack (4.1.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
1623
- activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
1624
- activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
1625
- activesupport (4.1.0) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
1626
- activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `call'
1627
- activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `run_callbacks'
1628
- actionpack (4.1.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
1629
- actionpack (4.1.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
1630
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1631
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `block in instrument'
1632
- activesupport (4.1.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1633
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `instrument'
1634
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1635
- actionpack (4.1.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
1636
- activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1637
- actionpack (4.1.0) lib/abstract_controller/base.rb:136:in `process'
1638
- actionview (4.1.0) lib/action_view/rendering.rb:30:in `process'
1639
- actionpack (4.1.0) lib/action_controller/metal.rb:195:in `dispatch'
1640
- actionpack (4.1.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1641
- actionpack (4.1.0) lib/action_controller/metal.rb:231:in `block in action'
1642
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
1643
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1644
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
1645
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
1646
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
1647
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
1648
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
1649
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
1650
- railties (4.1.0) lib/rails/railtie.rb:194:in `public_send'
1651
- railties (4.1.0) lib/rails/railtie.rb:194:in `method_missing'
1652
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
1653
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
1654
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
1655
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
1656
- warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
1657
- warden (1.2.3) lib/warden/manager.rb:34:in `catch'
1658
- warden (1.2.3) lib/warden/manager.rb:34:in `call'
1659
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
1660
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1661
- rack (1.5.2) lib/rack/head.rb:11:in `call'
1662
- actionpack (4.1.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1663
- actionpack (4.1.0) lib/action_dispatch/middleware/flash.rb:254:in `call'
1664
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1665
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1666
- actionpack (4.1.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1667
- activerecord (4.1.0) lib/active_record/query_cache.rb:36:in `call'
1668
- activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
1669
- activerecord (4.1.0) lib/active_record/migration.rb:380:in `call'
1670
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1671
- activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
1672
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1673
- actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1674
- actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1675
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1676
- actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1677
- railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
1678
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
1679
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1680
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
1681
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
1682
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
1683
- actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1684
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1685
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1686
- activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1687
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
1688
- actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
1689
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1690
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
1691
- railties (4.1.0) lib/rails/application.rb:144:in `call'
1692
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
1693
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1694
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1695
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1696
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1697
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1698
-
1699
-
1700
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.0ms)
1701
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms)
1702
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.0ms)
1703
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (76.0ms)
1704
-
1705
-
1706
- Started GET "/leads_to_highrise/lead/to_highrise/1" for 10.0.2.2 at 2014-04-16 02:45:45 +0000
1707
- Processing by LeadsToHighrise::LeadsController#to_highrise as HTML
1708
- Parameters: {"id"=>"1"}
1709
- LeadsToHighrise::Lead Load (4.0ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads" WHERE "leads_to_highrise_leads"."id" = ? LIMIT 1 [["id", 1]]
1710
- User Load (8.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
1711
- Redirected to http://localhost:3000/
1712
- Completed 302 Found in 2135ms (ActiveRecord: 48.0ms)
1713
-
1714
-
1715
- Started GET "/" for 10.0.2.2 at 2014-04-16 02:45:48 +0000
1716
-
1717
- ActionController::RoutingError (uninitialized constant LeadsController):
1718
- activesupport (4.1.0) lib/active_support/inflector/methods.rb:238:in `const_get'
1719
- activesupport (4.1.0) lib/active_support/inflector/methods.rb:238:in `block in constantize'
1720
- activesupport (4.1.0) lib/active_support/inflector/methods.rb:236:in `each'
1721
- activesupport (4.1.0) lib/active_support/inflector/methods.rb:236:in `inject'
1722
- activesupport (4.1.0) lib/active_support/inflector/methods.rb:236:in `constantize'
1723
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
1724
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:66:in `controller'
1725
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:44:in `call'
1726
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
1727
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
1728
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
1729
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
1730
- warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
1731
- warden (1.2.3) lib/warden/manager.rb:34:in `catch'
1732
- warden (1.2.3) lib/warden/manager.rb:34:in `call'
1733
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
1734
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1735
- rack (1.5.2) lib/rack/head.rb:11:in `call'
1736
- actionpack (4.1.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1737
- actionpack (4.1.0) lib/action_dispatch/middleware/flash.rb:254:in `call'
1738
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1739
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1740
- actionpack (4.1.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1741
- activerecord (4.1.0) lib/active_record/query_cache.rb:36:in `call'
1742
- activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
1743
- activerecord (4.1.0) lib/active_record/migration.rb:380:in `call'
1744
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1745
- activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
1746
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1747
- actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1748
- actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1749
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1750
- actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1751
- railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
1752
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
1753
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1754
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
1755
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
1756
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
1757
- actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1758
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1759
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1760
- activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1761
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
1762
- actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
1763
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1764
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
1765
- railties (4.1.0) lib/rails/application.rb:144:in `call'
1766
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
1767
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1768
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1769
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1770
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1771
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1772
-
1773
-
1774
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms)
1775
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.0ms)
1776
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.0ms)
1777
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (235.9ms)
1778
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (711.8ms)
1779
-
1780
-
1781
- Started GET "/leads_to_highrise/lead/to_highrise/1" for 10.0.2.2 at 2014-04-16 02:46:19 +0000
1782
- Processing by LeadsToHighrise::LeadsController#to_highrise as HTML
1783
- Parameters: {"id"=>"1"}
1784
- LeadsToHighrise::Lead Load (4.0ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads" WHERE "leads_to_highrise_leads"."id" = ? LIMIT 1 [["id", 1]]
1785
- User Load (8.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
1786
- Completed 500 Internal Server Error in 2099ms
1787
-
1788
- NoMethodError (undefined method `root_path' for #<LeadsToHighrise::LeadsController:0xa0cd668>):
1789
- /vagrant/leads_to_highrise/app/controllers/leads_to_highrise/leads_controller.rb:72:in `add_person'
1790
- /vagrant/leads_to_highrise/app/controllers/leads_to_highrise/leads_controller.rb:53:in `to_highrise'
1791
- actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1792
- actionpack (4.1.0) lib/abstract_controller/base.rb:189:in `process_action'
1793
- actionpack (4.1.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
1794
- actionpack (4.1.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
1795
- activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
1796
- activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
1797
- activesupport (4.1.0) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
1798
- activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `call'
1799
- activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `run_callbacks'
1800
- actionpack (4.1.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
1801
- actionpack (4.1.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
1802
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1803
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `block in instrument'
1804
- activesupport (4.1.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1805
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `instrument'
1806
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1807
- actionpack (4.1.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
1808
- activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1809
- actionpack (4.1.0) lib/abstract_controller/base.rb:136:in `process'
1810
- actionview (4.1.0) lib/action_view/rendering.rb:30:in `process'
1811
- actionpack (4.1.0) lib/action_controller/metal.rb:195:in `dispatch'
1812
- actionpack (4.1.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1813
- actionpack (4.1.0) lib/action_controller/metal.rb:231:in `block in action'
1814
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
1815
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1816
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
1817
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
1818
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
1819
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
1820
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
1821
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
1822
- railties (4.1.0) lib/rails/railtie.rb:194:in `public_send'
1823
- railties (4.1.0) lib/rails/railtie.rb:194:in `method_missing'
1824
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
1825
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
1826
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
1827
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
1828
- warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
1829
- warden (1.2.3) lib/warden/manager.rb:34:in `catch'
1830
- warden (1.2.3) lib/warden/manager.rb:34:in `call'
1831
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
1832
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1833
- rack (1.5.2) lib/rack/head.rb:11:in `call'
1834
- actionpack (4.1.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1835
- actionpack (4.1.0) lib/action_dispatch/middleware/flash.rb:254:in `call'
1836
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1837
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1838
- actionpack (4.1.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1839
- activerecord (4.1.0) lib/active_record/query_cache.rb:36:in `call'
1840
- activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
1841
- activerecord (4.1.0) lib/active_record/migration.rb:380:in `call'
1842
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1843
- activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
1844
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1845
- actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1846
- actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1847
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1848
- actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1849
- railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
1850
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
1851
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1852
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
1853
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
1854
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
1855
- actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1856
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1857
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1858
- activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1859
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
1860
- actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
1861
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1862
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
1863
- railties (4.1.0) lib/rails/application.rb:144:in `call'
1864
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
1865
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1866
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1867
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1868
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1869
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1870
-
1871
-
1872
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.0ms)
1873
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms)
1874
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.0ms)
1875
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (64.0ms)
1876
-
1877
-
1878
- Started GET "/leads_to_highrise/lead/to_highrise/1" for 10.0.2.2 at 2014-04-16 02:46:47 +0000
1879
- Processing by LeadsToHighrise::LeadsController#to_highrise as HTML
1880
- Parameters: {"id"=>"1"}
1881
- LeadsToHighrise::Lead Load (4.0ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads" WHERE "leads_to_highrise_leads"."id" = ? LIMIT 1 [["id", 1]]
1882
- User Load (8.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
1883
- Redirected to http://localhost:3000/
1884
- Completed 302 Found in 2479ms (ActiveRecord: 32.0ms)
1885
-
1886
-
1887
- Started GET "/" for 10.0.2.2 at 2014-04-16 02:46:51 +0000
1888
-
1889
- ActionController::RoutingError (uninitialized constant LeadsController):
1890
- activesupport (4.1.0) lib/active_support/inflector/methods.rb:238:in `const_get'
1891
- activesupport (4.1.0) lib/active_support/inflector/methods.rb:238:in `block in constantize'
1892
- activesupport (4.1.0) lib/active_support/inflector/methods.rb:236:in `each'
1893
- activesupport (4.1.0) lib/active_support/inflector/methods.rb:236:in `inject'
1894
- activesupport (4.1.0) lib/active_support/inflector/methods.rb:236:in `constantize'
1895
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
1896
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:66:in `controller'
1897
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:44:in `call'
1898
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
1899
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
1900
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
1901
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
1902
- warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
1903
- warden (1.2.3) lib/warden/manager.rb:34:in `catch'
1904
- warden (1.2.3) lib/warden/manager.rb:34:in `call'
1905
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
1906
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1907
- rack (1.5.2) lib/rack/head.rb:11:in `call'
1908
- actionpack (4.1.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1909
- actionpack (4.1.0) lib/action_dispatch/middleware/flash.rb:254:in `call'
1910
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1911
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1912
- actionpack (4.1.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1913
- activerecord (4.1.0) lib/active_record/query_cache.rb:36:in `call'
1914
- activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
1915
- activerecord (4.1.0) lib/active_record/migration.rb:380:in `call'
1916
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1917
- activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
1918
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1919
- actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1920
- actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1921
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1922
- actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1923
- railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
1924
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
1925
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1926
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
1927
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
1928
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
1929
- actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1930
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1931
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1932
- activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1933
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
1934
- actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
1935
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1936
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
1937
- railties (4.1.0) lib/rails/application.rb:144:in `call'
1938
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
1939
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1940
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1941
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1942
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1943
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1944
-
1945
-
1946
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms)
1947
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.0ms)
1948
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.0ms)
1949
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.0ms)
1950
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (167.9ms)
1951
-
1952
-
1953
- Started GET "/" for 10.0.2.2 at 2014-04-16 02:49:45 +0000
1954
-
1955
- ActionController::RoutingError (uninitialized constant Leadstohighrise):
1956
- activesupport (4.1.0) lib/active_support/inflector/methods.rb:238:in `const_get'
1957
- activesupport (4.1.0) lib/active_support/inflector/methods.rb:238:in `block in constantize'
1958
- activesupport (4.1.0) lib/active_support/inflector/methods.rb:236:in `each'
1959
- activesupport (4.1.0) lib/active_support/inflector/methods.rb:236:in `inject'
1960
- activesupport (4.1.0) lib/active_support/inflector/methods.rb:236:in `constantize'
1961
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
1962
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:66:in `controller'
1963
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:44:in `call'
1964
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
1965
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
1966
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
1967
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
1968
- warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
1969
- warden (1.2.3) lib/warden/manager.rb:34:in `catch'
1970
- warden (1.2.3) lib/warden/manager.rb:34:in `call'
1971
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
1972
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1973
- rack (1.5.2) lib/rack/head.rb:11:in `call'
1974
- actionpack (4.1.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1975
- actionpack (4.1.0) lib/action_dispatch/middleware/flash.rb:254:in `call'
1976
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1977
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1978
- actionpack (4.1.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1979
- activerecord (4.1.0) lib/active_record/query_cache.rb:36:in `call'
1980
- activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
1981
- activerecord (4.1.0) lib/active_record/migration.rb:380:in `call'
1982
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1983
- activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
1984
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1985
- actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1986
- actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1987
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1988
- actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1989
- railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
1990
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
1991
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1992
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
1993
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
1994
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
1995
- actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1996
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1997
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1998
- activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1999
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
2000
- actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
2001
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2002
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
2003
- railties (4.1.0) lib/rails/application.rb:144:in `call'
2004
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
2005
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2006
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2007
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2008
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2009
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2010
-
2011
-
2012
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.0ms)
2013
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.0ms)
2014
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.0ms)
2015
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.0ms)
2016
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (128.0ms)
2017
-
2018
-
2019
- Started GET "/" for 10.0.2.2 at 2014-04-16 02:50:04 +0000
2020
-
2021
- ArgumentError ('LeadsToHighrise/leads' is not a supported controller name. This can lead to potential routing problems. See http://guides.rubyonrails.org/routing.html#specifying-a-controller-to-use):
2022
- config/routes.rb:4:in `block in <top (required)>'
2023
- config/routes.rb:1:in `<top (required)>'
2024
-
2025
-
2026
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.0ms)
2027
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms)
2028
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.0ms)
2029
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (68.0ms)
2030
-
2031
-
2032
- Started GET "/" for 10.0.2.2 at 2014-04-16 02:51:25 +0000
2033
-
2034
- SyntaxError (/vagrant/leads_to_highrise/test/dummy/config/routes.rb:3: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '('
2035
- mount LeadsToHighrise::Engine => "/leads_to_highrise", as 'leads'
2036
- ^):
2037
- activesupport (4.1.0) lib/active_support/dependencies.rb:241:in `load'
2038
- activesupport (4.1.0) lib/active_support/dependencies.rb:241:in `block in load'
2039
- activesupport (4.1.0) lib/active_support/dependencies.rb:232:in `load_dependency'
2040
- activesupport (4.1.0) lib/active_support/dependencies.rb:241:in `load'
2041
- railties (4.1.0) lib/rails/application/routes_reloader.rb:40:in `block in load_paths'
2042
- railties (4.1.0) lib/rails/application/routes_reloader.rb:40:in `each'
2043
- railties (4.1.0) lib/rails/application/routes_reloader.rb:40:in `load_paths'
2044
- railties (4.1.0) lib/rails/application/routes_reloader.rb:16:in `reload!'
2045
- railties (4.1.0) lib/rails/application/routes_reloader.rb:26:in `block in updater'
2046
- activesupport (4.1.0) lib/active_support/file_update_checker.rb:75:in `call'
2047
- activesupport (4.1.0) lib/active_support/file_update_checker.rb:75:in `execute'
2048
- railties (4.1.0) lib/rails/application/routes_reloader.rb:7:in `execute'
2049
- railties (4.1.0) lib/rails/application/finisher.rb:83:in `block (2 levels) in <module:Finisher>'
2050
- activesupport (4.1.0) lib/active_support/callbacks.rb:438:in `instance_exec'
2051
- activesupport (4.1.0) lib/active_support/callbacks.rb:438:in `block in make_lambda'
2052
- activesupport (4.1.0) lib/active_support/callbacks.rb:184:in `call'
2053
- activesupport (4.1.0) lib/active_support/callbacks.rb:184:in `block in simple'
2054
- activesupport (4.1.0) lib/active_support/callbacks.rb:185:in `call'
2055
- activesupport (4.1.0) lib/active_support/callbacks.rb:185:in `block in simple'
2056
- activesupport (4.1.0) lib/active_support/callbacks.rb:185:in `call'
2057
- activesupport (4.1.0) lib/active_support/callbacks.rb:185:in `block in simple'
2058
- activesupport (4.1.0) lib/active_support/callbacks.rb:185:in `call'
2059
- activesupport (4.1.0) lib/active_support/callbacks.rb:185:in `block in simple'
2060
- activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `call'
2061
- activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `run_callbacks'
2062
- actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:83:in `prepare!'
2063
- actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:71:in `call'
2064
- actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
2065
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2066
- actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2067
- railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
2068
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
2069
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2070
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
2071
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
2072
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
2073
- actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2074
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2075
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2076
- activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
2077
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
2078
- actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
2079
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2080
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
2081
- railties (4.1.0) lib/rails/application.rb:144:in `call'
2082
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
2083
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2084
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2085
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2086
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2087
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2088
-
2089
-
2090
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (8.0ms)
2091
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (12.0ms)
2092
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.0ms)
2093
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (108.0ms)
2094
-
2095
-
2096
- Started GET "/" for 10.0.2.2 at 2014-04-16 02:51:57 +0000
2097
-
2098
- SyntaxError (/vagrant/leads_to_highrise/test/dummy/config/routes.rb:3: syntax error, unexpected tSTRING_BEG, expecting tASSOC
2099
- mount LeadsToHighrise::Engine => "/leads_to_highrise", :as 'leads'
2100
- ^):
2101
- activesupport (4.1.0) lib/active_support/dependencies.rb:241:in `load'
2102
- activesupport (4.1.0) lib/active_support/dependencies.rb:241:in `block in load'
2103
- activesupport (4.1.0) lib/active_support/dependencies.rb:232:in `load_dependency'
2104
- activesupport (4.1.0) lib/active_support/dependencies.rb:241:in `load'
2105
- railties (4.1.0) lib/rails/application/routes_reloader.rb:40:in `block in load_paths'
2106
- railties (4.1.0) lib/rails/application/routes_reloader.rb:40:in `each'
2107
- railties (4.1.0) lib/rails/application/routes_reloader.rb:40:in `load_paths'
2108
- railties (4.1.0) lib/rails/application/routes_reloader.rb:16:in `reload!'
2109
- railties (4.1.0) lib/rails/application/routes_reloader.rb:26:in `block in updater'
2110
- activesupport (4.1.0) lib/active_support/file_update_checker.rb:75:in `call'
2111
- activesupport (4.1.0) lib/active_support/file_update_checker.rb:75:in `execute'
2112
- railties (4.1.0) lib/rails/application/routes_reloader.rb:7:in `execute'
2113
- railties (4.1.0) lib/rails/application/finisher.rb:83:in `block (2 levels) in <module:Finisher>'
2114
- activesupport (4.1.0) lib/active_support/callbacks.rb:438:in `instance_exec'
2115
- activesupport (4.1.0) lib/active_support/callbacks.rb:438:in `block in make_lambda'
2116
- activesupport (4.1.0) lib/active_support/callbacks.rb:184:in `call'
2117
- activesupport (4.1.0) lib/active_support/callbacks.rb:184:in `block in simple'
2118
- activesupport (4.1.0) lib/active_support/callbacks.rb:185:in `call'
2119
- activesupport (4.1.0) lib/active_support/callbacks.rb:185:in `block in simple'
2120
- activesupport (4.1.0) lib/active_support/callbacks.rb:185:in `call'
2121
- activesupport (4.1.0) lib/active_support/callbacks.rb:185:in `block in simple'
2122
- activesupport (4.1.0) lib/active_support/callbacks.rb:185:in `call'
2123
- activesupport (4.1.0) lib/active_support/callbacks.rb:185:in `block in simple'
2124
- activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `call'
2125
- activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `run_callbacks'
2126
- actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:83:in `prepare!'
2127
- actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:71:in `call'
2128
- actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
2129
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2130
- actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2131
- railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
2132
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
2133
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2134
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
2135
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
2136
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
2137
- actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2138
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2139
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2140
- activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
2141
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
2142
- actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
2143
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2144
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
2145
- railties (4.1.0) lib/rails/application.rb:144:in `call'
2146
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
2147
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2148
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2149
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2150
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2151
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2152
-
2153
-
2154
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.0ms)
2155
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms)
2156
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.0ms)
2157
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (68.0ms)
2158
-
2159
-
2160
- Started GET "/" for 10.0.2.2 at 2014-04-16 02:52:07 +0000
2161
-
2162
- ActionController::RoutingError (uninitialized constant Leads):
2163
- activesupport (4.1.0) lib/active_support/inflector/methods.rb:238:in `const_get'
2164
- activesupport (4.1.0) lib/active_support/inflector/methods.rb:238:in `block in constantize'
2165
- activesupport (4.1.0) lib/active_support/inflector/methods.rb:236:in `each'
2166
- activesupport (4.1.0) lib/active_support/inflector/methods.rb:236:in `inject'
2167
- activesupport (4.1.0) lib/active_support/inflector/methods.rb:236:in `constantize'
2168
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
2169
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:66:in `controller'
2170
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:44:in `call'
2171
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
2172
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
2173
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
2174
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
2175
- warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
2176
- warden (1.2.3) lib/warden/manager.rb:34:in `catch'
2177
- warden (1.2.3) lib/warden/manager.rb:34:in `call'
2178
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
2179
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
2180
- rack (1.5.2) lib/rack/head.rb:11:in `call'
2181
- actionpack (4.1.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
2182
- actionpack (4.1.0) lib/action_dispatch/middleware/flash.rb:254:in `call'
2183
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
2184
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
2185
- actionpack (4.1.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
2186
- activerecord (4.1.0) lib/active_record/query_cache.rb:36:in `call'
2187
- activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
2188
- activerecord (4.1.0) lib/active_record/migration.rb:380:in `call'
2189
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
2190
- activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
2191
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2192
- actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
2193
- actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
2194
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2195
- actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2196
- railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
2197
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
2198
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2199
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
2200
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
2201
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
2202
- actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2203
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2204
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2205
- activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
2206
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
2207
- actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
2208
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2209
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
2210
- railties (4.1.0) lib/rails/application.rb:144:in `call'
2211
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
2212
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2213
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2214
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2215
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2216
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2217
-
2218
-
2219
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (8.0ms)
2220
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.0ms)
2221
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.0ms)
2222
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.0ms)
2223
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (159.9ms)
2224
-
2225
-
2226
- Started GET "/" for 10.0.2.2 at 2014-04-16 02:52:39 +0000
2227
- Processing by LeadsToHighrise::LeadsController#index as HTML
2228
- LeadsToHighrise::Lead Load (20.0ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads"
2229
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/index.html.erb within layouts/leads_to_highrise/application (136.0ms)
2230
- Completed 200 OK in 916ms (Views: 715.8ms | ActiveRecord: 28.0ms)
2231
-
2232
-
2233
- Started GET "/assets/leads_to_highrise/leads.css?body=1" for 10.0.2.2 at 2014-04-16 02:52:41 +0000
2234
-
2235
-
2236
- Started GET "/assets/leads_to_highrise/application.js?body=1" for 10.0.2.2 at 2014-04-16 02:52:41 +0000
2237
-
2238
-
2239
- Started GET "/assets/leads_to_highrise/leads.js?body=1" for 10.0.2.2 at 2014-04-16 02:52:42 +0000
2240
-
2241
-
2242
- Started GET "/assets/leads_to_highrise/application.css?body=1" for 10.0.2.2 at 2014-04-16 02:52:42 +0000
2243
-
2244
-
2245
- Started GET "/" for 10.0.2.2 at 2014-04-16 04:05:07 +0000
2246
- Processing by LeadsToHighrise::LeadsController#index as HTML
2247
- LeadsToHighrise::Lead Load (16.0ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads"
2248
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/index.html.erb within layouts/leads_to_highrise/application (64.0ms)
2249
- Completed 200 OK in 1312ms (Views: 1292.1ms | ActiveRecord: 16.0ms)
2250
-
2251
-
2252
- Started GET "/assets/leads_to_highrise/leads.css?body=1" for 10.0.2.2 at 2014-04-16 04:05:09 +0000
2253
-
2254
-
2255
- Started GET "/assets/leads_to_highrise/application.css?body=1" for 10.0.2.2 at 2014-04-16 04:05:10 +0000
2256
-
2257
-
2258
- Started GET "/assets/leads_to_highrise/leads.js?body=1" for 10.0.2.2 at 2014-04-16 04:05:11 +0000
2259
-
2260
-
2261
- Started GET "/assets/leads_to_highrise/application.js?body=1" for 10.0.2.2 at 2014-04-16 04:05:11 +0000
2262
-
2263
-
2264
- Started GET "/leads_to_highrise/leads/new" for 10.0.2.2 at 2014-04-16 04:05:14 +0000
2265
- Processing by LeadsToHighrise::LeadsController#new as HTML
2266
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/_form.html.erb (228.0ms)
2267
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/new.html.erb within layouts/leads_to_highrise/application (472.0ms)
2268
- Completed 200 OK in 1248ms (Views: 1248.1ms | ActiveRecord: 0.0ms)
2269
-
2270
-
2271
- Started GET "/assets/leads_to_highrise/leads.css?body=1" for 10.0.2.2 at 2014-04-16 04:05:16 +0000
2272
-
2273
-
2274
- Started GET "/assets/leads_to_highrise/application.css?body=1" for 10.0.2.2 at 2014-04-16 04:05:16 +0000
2275
-
2276
-
2277
- Started GET "/assets/leads_to_highrise/leads.js?body=1" for 10.0.2.2 at 2014-04-16 04:05:17 +0000
2278
-
2279
-
2280
- Started GET "/assets/leads_to_highrise/application.js?body=1" for 10.0.2.2 at 2014-04-16 04:05:17 +0000
2281
-
2282
-
2283
- Started POST "/leads_to_highrise/leads" for 10.0.2.2 at 2014-04-16 04:06:23 +0000
2284
- Processing by LeadsToHighrise::LeadsController#create as HTML
2285
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"zqsan8TMnnsJrlHuaDLkgYTujyKs4cmr7bNMGIOMBT8=", "lead"=>{"name"=>"Bruna", "last_name"=>"Tripoloni", "email"=>"joakinaa@gmail.com", "company"=>"opasd", "job_title"=>"empresaria", "phone"=>"(18) 3528-51721", "website"=>"site.com.br"}, "commit"=>"Create Lead"}
2286
-  (0.0ms) begin transaction
2287
- SQL (40.0ms) INSERT INTO "leads_to_highrise_leads" ("company", "created_at", "email", "job_title", "last_name", "name", "phone", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["company", "opasd"], ["created_at", "2014-04-16 04:06:23.944270"], ["email", "joakinaa@gmail.com"], ["job_title", "empresaria"], ["last_name", "Tripoloni"], ["name", "Bruna"], ["phone", "(18) 3528-51721"], ["updated_at", "2014-04-16 04:06:23.944270"], ["website", "site.com.br"]]
2288
-  (24.0ms) commit transaction
2289
- Redirected to http://localhost:3000/leads_to_highrise/leads/2
2290
- Completed 302 Found in 292ms (ActiveRecord: 64.0ms)
2291
-
2292
-
2293
- Started GET "/leads_to_highrise/leads/2" for 10.0.2.2 at 2014-04-16 04:06:24 +0000
2294
- Processing by LeadsToHighrise::LeadsController#show as HTML
2295
- Parameters: {"id"=>"2"}
2296
- LeadsToHighrise::Lead Load (44.0ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads" WHERE "leads_to_highrise_leads"."id" = ? LIMIT 1 [["id", 2]]
2297
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/show.html.erb within layouts/leads_to_highrise/application (8.0ms)
2298
- Completed 200 OK in 1048ms (Views: 964.0ms | ActiveRecord: 44.0ms)
2299
-
2300
-
2301
- Started GET "/assets/leads_to_highrise/leads.css?body=1" for 10.0.2.2 at 2014-04-16 04:06:26 +0000
2302
-
2303
-
2304
- Started GET "/assets/leads_to_highrise/application.css?body=1" for 10.0.2.2 at 2014-04-16 04:06:26 +0000
2305
-
2306
-
2307
- Started GET "/assets/leads_to_highrise/leads.js?body=1" for 10.0.2.2 at 2014-04-16 04:06:27 +0000
2308
-
2309
-
2310
- Started GET "/assets/leads_to_highrise/application.js?body=1" for 10.0.2.2 at 2014-04-16 04:06:28 +0000
2311
-
2312
-
2313
- Started GET "/leads_to_highrise/leads/2" for 10.0.2.2 at 2014-04-16 13:15:59 +0000
2314
- ActiveRecord::SchemaMigration Load (6.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
2315
- Processing by LeadsToHighrise::LeadsController#show as HTML
2316
- Parameters: {"id"=>"2"}
2317
- LeadsToHighrise::Lead Load (7.9ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads" WHERE "leads_to_highrise_leads"."id" = ? LIMIT 1 [["id", 2]]
2318
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/show.html.erb within layouts/leads_to_highrise/application (358.7ms)
2319
- Completed 200 OK in 1944ms (Views: 1763.7ms | ActiveRecord: 14.4ms)
2320
-
2321
-
2322
- Started GET "/assets/leads_to_highrise/leads.css?body=1" for 10.0.2.2 at 2014-04-16 13:16:05 +0000
2323
-
2324
-
2325
- Started GET "/assets/leads_to_highrise/leads.js?body=1" for 10.0.2.2 at 2014-04-16 13:16:06 +0000
2326
-
2327
-
2328
- Started GET "/assets/leads_to_highrise/application.js?body=1" for 10.0.2.2 at 2014-04-16 13:16:06 +0000
2329
-
2330
-
2331
- Started GET "/assets/leads_to_highrise/application.css?body=1" for 10.0.2.2 at 2014-04-16 13:16:06 +0000
2332
-
2333
-
2334
- Started GET "/leads_to_highrise/leads" for 10.0.2.2 at 2014-04-16 13:16:10 +0000
2335
- Processing by LeadsToHighrise::LeadsController#index as HTML
2336
- LeadsToHighrise::Lead Load (8.5ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads"
2337
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/index.html.erb within layouts/leads_to_highrise/application (32.8ms)
2338
- Completed 200 OK in 687ms (Views: 675.1ms | ActiveRecord: 8.5ms)
2339
-
2340
-
2341
- Started GET "/assets/leads_to_highrise/leads.css?body=1" for 10.0.2.2 at 2014-04-16 13:16:11 +0000
2342
-
2343
-
2344
- Started GET "/assets/leads_to_highrise/application.js?body=1" for 10.0.2.2 at 2014-04-16 13:16:12 +0000
2345
-
2346
-
2347
- Started GET "/assets/leads_to_highrise/leads.js?body=1" for 10.0.2.2 at 2014-04-16 13:16:12 +0000
2348
-
2349
-
2350
- Started GET "/assets/leads_to_highrise/application.css?body=1" for 10.0.2.2 at 2014-04-16 13:16:13 +0000
2351
-
2352
-
2353
- Started GET "/leads_to_highrise/leads/new" for 10.0.2.2 at 2014-04-16 13:16:46 +0000
2354
- Processing by LeadsToHighrise::LeadsController#new as HTML
2355
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/_form.html.erb (445.8ms)
2356
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/new.html.erb within layouts/leads_to_highrise/application (672.8ms)
2357
- Completed 200 OK in 1250ms (Views: 1248.5ms | ActiveRecord: 0.0ms)
2358
-
2359
-
2360
- Started GET "/assets/leads_to_highrise/leads.css?body=1" for 10.0.2.2 at 2014-04-16 13:16:48 +0000
2361
-
2362
-
2363
- Started GET "/assets/leads_to_highrise/application.js?body=1" for 10.0.2.2 at 2014-04-16 13:16:48 +0000
2364
-
2365
-
2366
- Started GET "/assets/leads_to_highrise/leads.js?body=1" for 10.0.2.2 at 2014-04-16 13:16:49 +0000
2367
-
2368
-
2369
- Started GET "/assets/leads_to_highrise/application.css?body=1" for 10.0.2.2 at 2014-04-16 13:16:49 +0000
2370
-
2371
-
2372
- Started POST "/leads_to_highrise/leads" for 10.0.2.2 at 2014-04-16 13:17:20 +0000
2373
- Processing by LeadsToHighrise::LeadsController#create as HTML
2374
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"zqsan8TMnnsJrlHuaDLkgYTujyKs4cmr7bNMGIOMBT8=", "lead"=>{"name"=>"joakina", "last_name"=>"pereira", "email"=>"joakinaa@gmail.com", "company"=>"joakineira", "job_title"=>"empresaria", "phone"=>"(18) 3528-5172", "website"=>"site.com.br"}, "commit"=>"Create Lead"}
2375
-  (0.4ms) begin transaction
2376
- SQL (18.7ms) INSERT INTO "leads_to_highrise_leads" ("company", "created_at", "email", "job_title", "last_name", "name", "phone", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["company", "joakineira"], ["created_at", "2014-04-16 13:17:20.572959"], ["email", "joakinaa@gmail.com"], ["job_title", "empresaria"], ["last_name", "pereira"], ["name", "joakina"], ["phone", "(18) 3528-5172"], ["updated_at", "2014-04-16 13:17:20.572959"], ["website", "site.com.br"]]
2377
- Redirected to http://localhost:3000/leads_to_highrise/leads/3
2378
-  (22.0ms) commit transaction
2379
- Completed 302 Found in 265ms (ActiveRecord: 41.1ms)
2380
-
2381
-
2382
- Started GET "/leads_to_highrise/leads/3" for 10.0.2.2 at 2014-04-16 13:17:20 +0000
2383
- Processing by LeadsToHighrise::LeadsController#show as HTML
2384
- Parameters: {"id"=>"3"}
2385
- LeadsToHighrise::Lead Load (37.5ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads" WHERE "leads_to_highrise_leads"."id" = ? LIMIT 1 [["id", 3]]
2386
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/show.html.erb within layouts/leads_to_highrise/application (3.6ms)
2387
- Completed 200 OK in 621ms (Views: 572.7ms | ActiveRecord: 37.5ms)
2388
-
2389
-
2390
- Started GET "/assets/leads_to_highrise/leads.css?body=1" for 10.0.2.2 at 2014-04-16 13:17:22 +0000
2391
-
2392
-
2393
- Started GET "/assets/leads_to_highrise/application.js?body=1" for 10.0.2.2 at 2014-04-16 13:17:22 +0000
2394
-
2395
-
2396
- Started GET "/assets/leads_to_highrise/leads.js?body=1" for 10.0.2.2 at 2014-04-16 13:17:22 +0000
2397
-
2398
-
2399
- Started GET "/assets/leads_to_highrise/application.css?body=1" for 10.0.2.2 at 2014-04-16 13:17:23 +0000
2400
-
2401
-
2402
- Started GET "/leads_to_highrise/leads" for 10.0.2.2 at 2014-04-16 13:17:26 +0000
2403
- Processing by LeadsToHighrise::LeadsController#index as HTML
2404
- LeadsToHighrise::Lead Load (5.0ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads"
2405
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/index.html.erb within layouts/leads_to_highrise/application (19.0ms)
2406
- Completed 200 OK in 560ms (Views: 554.3ms | ActiveRecord: 5.0ms)
2407
-
2408
-
2409
- Started GET "/assets/leads_to_highrise/leads.css?body=1" for 10.0.2.2 at 2014-04-16 13:17:27 +0000
2410
-
2411
-
2412
- Started GET "/assets/leads_to_highrise/application.js?body=1" for 10.0.2.2 at 2014-04-16 13:17:27 +0000
2413
-
2414
-
2415
- Started GET "/assets/leads_to_highrise/application.css?body=1" for 10.0.2.2 at 2014-04-16 13:17:28 +0000
2416
-
2417
-
2418
- Started GET "/assets/leads_to_highrise/leads.js?body=1" for 10.0.2.2 at 2014-04-16 13:17:28 +0000
2419
-
2420
-
2421
- Started GET "/" for 10.0.2.2 at 2014-04-16 17:53:39 +0000
2422
- ActiveRecord::SchemaMigration Load (8.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2423
- Processing by LeadsToHighrise::LeadsController#index as HTML
2424
- LeadsToHighrise::Lead Load (7.8ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads"
2425
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/index.html.erb within layouts/leads_to_highrise/application (262.3ms)
2426
- Completed 200 OK in 2075ms (Views: 1892.1ms | ActiveRecord: 48.4ms)
2427
-
2428
-
2429
- Started GET "/assets/leads_to_highrise/leads.css?body=1" for 10.0.2.2 at 2014-04-16 17:53:45 +0000
2430
-
2431
-
2432
- Started GET "/assets/leads_to_highrise/application.js?body=1" for 10.0.2.2 at 2014-04-16 17:53:46 +0000
2433
-
2434
-
2435
- Started GET "/assets/leads_to_highrise/leads.js?body=1" for 10.0.2.2 at 2014-04-16 17:53:47 +0000
2436
-
2437
-
2438
- Started GET "/assets/leads_to_highrise/application.css?body=1" for 10.0.2.2 at 2014-04-16 17:53:47 +0000
2439
-
2440
-
2441
- Started GET "/leads_to_highrise/leads/3" for 10.0.2.2 at 2014-04-16 17:55:47 +0000
2442
- Processing by LeadsToHighrise::LeadsController#show as HTML
2443
- Parameters: {"id"=>"3"}
2444
- LeadsToHighrise::Lead Load (7.2ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads" WHERE "leads_to_highrise_leads"."id" = ? LIMIT 1 [["id", 3]]
2445
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/show.html.erb within layouts/leads_to_highrise/application (47.3ms)
2446
- Completed 200 OK in 1100ms (Views: 836.9ms | ActiveRecord: 28.2ms)
2447
-
2448
-
2449
- Started GET "/assets/leads_to_highrise/leads.css?body=1" for 10.0.2.2 at 2014-04-16 17:55:50 +0000
2450
-
2451
-
2452
- Started GET "/assets/leads_to_highrise/application.js?body=1" for 10.0.2.2 at 2014-04-16 17:55:50 +0000
2453
-
2454
-
2455
- Started GET "/assets/leads_to_highrise/leads.js?body=1" for 10.0.2.2 at 2014-04-16 17:55:51 +0000
2456
-
2457
-
2458
- Started GET "/assets/leads_to_highrise/application.css?body=1" for 10.0.2.2 at 2014-04-16 17:55:51 +0000
2459
-
2460
-
2461
- Started GET "/as" for 10.0.2.2 at 2014-04-16 18:04:37 +0000
2462
-
2463
- ActionController::RoutingError (No route matches [GET] "/as"):
2464
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2465
- actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2466
- railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
2467
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
2468
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2469
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
2470
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
2471
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
2472
- actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2473
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2474
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2475
- activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
2476
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
2477
- actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
2478
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2479
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
2480
- railties (4.1.0) lib/rails/application.rb:144:in `call'
2481
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
2482
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2483
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2484
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2485
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2486
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2487
-
2488
-
2489
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.3ms)
2490
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.1ms)
2491
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms)
2492
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (289.3ms)
2493
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (584.0ms)
2494
-
2495
-
2496
- Started GET "/" for 10.0.2.2 at 2014-04-16 18:53:21 +0000
2497
- ActiveRecord::SchemaMigration Load (32.8ms) SELECT "schema_migrations".* FROM "schema_migrations"
2498
- Processing by LeadsToHighrise::LeadsController#index as */*
2499
- LeadsToHighrise::Lead Load (7.7ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads"
2500
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/index.html.erb within layouts/leads_to_highrise/application (477.5ms)
2501
- Completed 200 OK in 3906ms (Views: 3670.8ms | ActiveRecord: 16.7ms)
2502
-
2503
-
2504
- Started GET "/" for 10.0.2.2 at 2014-04-16 18:53:43 +0000
2505
- Processing by LeadsToHighrise::LeadsController#index as HTML
2506
- LeadsToHighrise::Lead Load (23.4ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads"
2507
- User Load (6.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
2508
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/index.html.erb within layouts/leads_to_highrise/application (432.0ms)
2509
- Completed 200 OK in 1241ms (Views: 1205.2ms | ActiveRecord: 34.8ms)
2510
-
2511
-
2512
- Started GET "/assets/leads_to_highrise/leads.css?body=1" for 10.0.2.2 at 2014-04-16 18:53:46 +0000
2513
-
2514
-
2515
- Started GET "/assets/leads_to_highrise/application.css?body=1" for 10.0.2.2 at 2014-04-16 18:53:46 +0000
2516
-
2517
-
2518
- Started GET "/assets/leads_to_highrise/leads.js?body=1" for 10.0.2.2 at 2014-04-16 18:53:47 +0000
2519
-
2520
-
2521
- Started GET "/assets/leads_to_highrise/application.js?body=1" for 10.0.2.2 at 2014-04-16 18:53:47 +0000
2522
-
2523
-
2524
- Started DELETE "/leads/3" for 10.0.2.2 at 2014-04-16 18:54:34 +0000
2525
-
2526
- ActionController::RoutingError (No route matches [DELETE] "/leads/3"):
2527
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2528
- actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2529
- railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
2530
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
2531
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2532
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
2533
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
2534
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
2535
- actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2536
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2537
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2538
- activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
2539
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
2540
- actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
2541
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2542
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
2543
- railties (4.1.0) lib/rails/application.rb:144:in `call'
2544
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
2545
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2546
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2547
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2548
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2549
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2550
-
2551
-
2552
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms)
2553
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.8ms)
2554
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms)
2555
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (407.7ms)
2556
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (613.1ms)
2557
-
2558
-
2559
- Started GET "/" for 10.0.2.2 at 2014-04-16 18:55:02 +0000
2560
- Processing by LeadsToHighrise::LeadsController#index as HTML
2561
- LeadsToHighrise::Lead Load (23.9ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads"
2562
- User Load (8.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
2563
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/index.html.erb within layouts/leads_to_highrise/application (76.1ms)
2564
- Completed 200 OK in 787ms (Views: 753.5ms | ActiveRecord: 32.8ms)
2565
-
2566
-
2567
- Started GET "/assets/leads_to_highrise/leads.css?body=1" for 10.0.2.2 at 2014-04-16 18:55:04 +0000
2568
-
2569
-
2570
- Started GET "/assets/leads_to_highrise/leads.js?body=1" for 10.0.2.2 at 2014-04-16 18:55:04 +0000
2571
-
2572
-
2573
- Started GET "/assets/leads_to_highrise/application.css?body=1" for 10.0.2.2 at 2014-04-16 18:55:05 +0000
2574
-
2575
-
2576
- Started GET "/assets/leads_to_highrise/application.js?body=1" for 10.0.2.2 at 2014-04-16 18:55:05 +0000
2577
-
2578
-
2579
- Started GET "/leads_to_highrise/leads/3" for 10.0.2.2 at 2014-04-16 18:55:10 +0000
2580
- Processing by LeadsToHighrise::LeadsController#show as HTML
2581
- Parameters: {"id"=>"3"}
2582
- LeadsToHighrise::Lead Load (47.9ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads" WHERE "leads_to_highrise_leads"."id" = ? LIMIT 1 [["id", 3]]
2583
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/show.html.erb within layouts/leads_to_highrise/application (6.5ms)
2584
- Completed 200 OK in 841ms (Views: 782.0ms | ActiveRecord: 47.9ms)
2585
-
2586
-
2587
- Started GET "/assets/leads_to_highrise/leads.css?body=1" for 10.0.2.2 at 2014-04-16 18:55:12 +0000
2588
-
2589
-
2590
- Started GET "/assets/leads_to_highrise/application.js?body=1" for 10.0.2.2 at 2014-04-16 18:55:12 +0000
2591
-
2592
-
2593
- Started GET "/assets/leads_to_highrise/leads.js?body=1" for 10.0.2.2 at 2014-04-16 18:55:13 +0000
2594
-
2595
-
2596
- Started GET "/assets/leads_to_highrise/application.css?body=1" for 10.0.2.2 at 2014-04-16 18:55:13 +0000
2597
-
2598
-
2599
- Started GET "/leads_to_highrise/leads" for 10.0.2.2 at 2014-04-16 19:02:19 +0000
2600
- ActiveRecord::SchemaMigration Load (22.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
2601
- Processing by LeadsToHighrise::LeadsController#index as HTML
2602
- LeadsToHighrise::Lead Load (18.7ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads"
2603
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/index.html.erb within layouts/leads_to_highrise/application (515.7ms)
2604
- Completed 500 Internal Server Error in 1559ms
2605
-
2606
- ActionView::Template::Error (undefined local variable or method `new_lead_path' for #<#<Class:0xa0bbfe4>:0xa2f0e90>):
2607
- 1: <%= link_to 'New Lead', new_lead_path %>
2608
- 2: <br>
2609
- 3: <table>
2610
- 4: <thead>
2611
- /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/index.html.erb:1:in `__vagrant_leads_to_highrise_app_views_leads_to_highrise_leads_index_html_erb__709792083_88435490'
2612
- actionview (4.1.0) lib/action_view/template.rb:145:in `block in render'
2613
- activesupport (4.1.0) lib/active_support/notifications.rb:161:in `instrument'
2614
- actionview (4.1.0) lib/action_view/template.rb:339:in `instrument'
2615
- actionview (4.1.0) lib/action_view/template.rb:143:in `render'
2616
- actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template'
2617
- actionview (4.1.0) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
2618
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `block in instrument'
2619
- activesupport (4.1.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2620
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `instrument'
2621
- actionview (4.1.0) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
2622
- actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template'
2623
- actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout'
2624
- actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:53:in `render_template'
2625
- actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:17:in `render'
2626
- actionview (4.1.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
2627
- actionview (4.1.0) lib/action_view/renderer/renderer.rb:23:in `render'
2628
- actionview (4.1.0) lib/action_view/rendering.rb:99:in `_render_template'
2629
- actionpack (4.1.0) lib/action_controller/metal/streaming.rb:217:in `_render_template'
2630
- actionview (4.1.0) lib/action_view/rendering.rb:82:in `render_to_body'
2631
- actionpack (4.1.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
2632
- actionpack (4.1.0) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
2633
- actionpack (4.1.0) lib/abstract_controller/rendering.rb:25:in `render'
2634
- actionpack (4.1.0) lib/action_controller/metal/rendering.rb:16:in `render'
2635
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
2636
- activesupport (4.1.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
2637
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
2638
- activesupport (4.1.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
2639
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
2640
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
2641
- activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
2642
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
2643
- actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
2644
- actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
2645
- actionpack (4.1.0) lib/abstract_controller/base.rb:189:in `process_action'
2646
- actionpack (4.1.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
2647
- actionpack (4.1.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
2648
- activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
2649
- activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
2650
- activesupport (4.1.0) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
2651
- activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `call'
2652
- activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `run_callbacks'
2653
- actionpack (4.1.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
2654
- actionpack (4.1.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
2655
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
2656
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `block in instrument'
2657
- activesupport (4.1.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2658
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `instrument'
2659
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
2660
- actionpack (4.1.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
2661
- activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2662
- actionpack (4.1.0) lib/abstract_controller/base.rb:136:in `process'
2663
- actionview (4.1.0) lib/action_view/rendering.rb:30:in `process'
2664
- actionpack (4.1.0) lib/action_controller/metal.rb:195:in `dispatch'
2665
- actionpack (4.1.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
2666
- actionpack (4.1.0) lib/action_controller/metal.rb:231:in `block in action'
2667
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
2668
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
2669
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
2670
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
2671
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
2672
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
2673
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
2674
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
2675
- railties (4.1.0) lib/rails/railtie.rb:194:in `public_send'
2676
- railties (4.1.0) lib/rails/railtie.rb:194:in `method_missing'
2677
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
2678
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
2679
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
2680
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
2681
- warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
2682
- warden (1.2.3) lib/warden/manager.rb:34:in `catch'
2683
- warden (1.2.3) lib/warden/manager.rb:34:in `call'
2684
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
2685
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
2686
- rack (1.5.2) lib/rack/head.rb:11:in `call'
2687
- actionpack (4.1.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
2688
- actionpack (4.1.0) lib/action_dispatch/middleware/flash.rb:254:in `call'
2689
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
2690
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
2691
- actionpack (4.1.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
2692
- activerecord (4.1.0) lib/active_record/query_cache.rb:36:in `call'
2693
- activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
2694
- activerecord (4.1.0) lib/active_record/migration.rb:380:in `call'
2695
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
2696
- activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
2697
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2698
- actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
2699
- actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
2700
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2701
- actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2702
- railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
2703
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
2704
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2705
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
2706
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
2707
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
2708
- actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2709
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2710
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2711
- activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
2712
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
2713
- actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
2714
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2715
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
2716
- railties (4.1.0) lib/rails/application.rb:144:in `call'
2717
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
2718
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2719
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2720
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2721
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2722
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2723
-
2724
-
2725
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms)
2726
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (126.2ms)
2727
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (191.6ms)
2728
-
2729
-
2730
- Started GET "/leads_to_highrise/leads" for 10.0.2.2 at 2014-04-16 19:03:37 +0000
2731
- Processing by LeadsToHighrise::LeadsController#index as HTML
2732
- LeadsToHighrise::Lead Load (50.3ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads"
2733
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/index.html.erb within layouts/leads_to_highrise/application (279.4ms)
2734
- Completed 500 Internal Server Error in 968ms
2735
-
2736
- ActionView::Template::Error (undefined local variable or method `new_lead_path' for #<#<Class:0xa053d2c>:0xa0535c0>):
2737
- 1: <%= link_to 'New Lead', new_lead_path %>
2738
- 2: <br>
2739
- 3: <table>
2740
- 4: <thead>
2741
- /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/index.html.erb:1:in `__vagrant_leads_to_highrise_app_views_leads_to_highrise_leads_index_html_erb__709792083_88435490'
2742
- actionview (4.1.0) lib/action_view/template.rb:145:in `block in render'
2743
- activesupport (4.1.0) lib/active_support/notifications.rb:161:in `instrument'
2744
- actionview (4.1.0) lib/action_view/template.rb:339:in `instrument'
2745
- actionview (4.1.0) lib/action_view/template.rb:143:in `render'
2746
- actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template'
2747
- actionview (4.1.0) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
2748
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `block in instrument'
2749
- activesupport (4.1.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2750
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `instrument'
2751
- actionview (4.1.0) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
2752
- actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template'
2753
- actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout'
2754
- actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:53:in `render_template'
2755
- actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:17:in `render'
2756
- actionview (4.1.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
2757
- actionview (4.1.0) lib/action_view/renderer/renderer.rb:23:in `render'
2758
- actionview (4.1.0) lib/action_view/rendering.rb:99:in `_render_template'
2759
- actionpack (4.1.0) lib/action_controller/metal/streaming.rb:217:in `_render_template'
2760
- actionview (4.1.0) lib/action_view/rendering.rb:82:in `render_to_body'
2761
- actionpack (4.1.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
2762
- actionpack (4.1.0) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
2763
- actionpack (4.1.0) lib/abstract_controller/rendering.rb:25:in `render'
2764
- actionpack (4.1.0) lib/action_controller/metal/rendering.rb:16:in `render'
2765
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
2766
- activesupport (4.1.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
2767
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
2768
- activesupport (4.1.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
2769
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
2770
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
2771
- activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
2772
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
2773
- actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
2774
- actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
2775
- actionpack (4.1.0) lib/abstract_controller/base.rb:189:in `process_action'
2776
- actionpack (4.1.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
2777
- actionpack (4.1.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
2778
- activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
2779
- activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
2780
- activesupport (4.1.0) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
2781
- activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `call'
2782
- activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `run_callbacks'
2783
- actionpack (4.1.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
2784
- actionpack (4.1.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
2785
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
2786
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `block in instrument'
2787
- activesupport (4.1.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2788
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `instrument'
2789
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
2790
- actionpack (4.1.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
2791
- activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2792
- actionpack (4.1.0) lib/abstract_controller/base.rb:136:in `process'
2793
- actionview (4.1.0) lib/action_view/rendering.rb:30:in `process'
2794
- actionpack (4.1.0) lib/action_controller/metal.rb:195:in `dispatch'
2795
- actionpack (4.1.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
2796
- actionpack (4.1.0) lib/action_controller/metal.rb:231:in `block in action'
2797
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
2798
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
2799
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
2800
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
2801
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
2802
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
2803
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
2804
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
2805
- railties (4.1.0) lib/rails/railtie.rb:194:in `public_send'
2806
- railties (4.1.0) lib/rails/railtie.rb:194:in `method_missing'
2807
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
2808
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
2809
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
2810
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
2811
- warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
2812
- warden (1.2.3) lib/warden/manager.rb:34:in `catch'
2813
- warden (1.2.3) lib/warden/manager.rb:34:in `call'
2814
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
2815
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
2816
- rack (1.5.2) lib/rack/head.rb:11:in `call'
2817
- actionpack (4.1.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
2818
- actionpack (4.1.0) lib/action_dispatch/middleware/flash.rb:254:in `call'
2819
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
2820
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
2821
- actionpack (4.1.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
2822
- activerecord (4.1.0) lib/active_record/query_cache.rb:36:in `call'
2823
- activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
2824
- activerecord (4.1.0) lib/active_record/migration.rb:380:in `call'
2825
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
2826
- activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
2827
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2828
- actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
2829
- actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
2830
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2831
- actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2832
- railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
2833
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
2834
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2835
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
2836
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
2837
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
2838
- actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2839
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2840
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2841
- activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
2842
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
2843
- actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
2844
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2845
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
2846
- railties (4.1.0) lib/rails/application.rb:144:in `call'
2847
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
2848
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2849
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2850
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2851
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2852
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2853
-
2854
-
2855
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.3ms)
2856
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (37.0ms)
2857
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (91.0ms)
2858
-
2859
-
2860
- Started GET "/leads_to_highrise/leads" for 10.0.2.2 at 2014-04-16 19:03:56 +0000
2861
- Processing by LeadsToHighrise::LeadsController#index as HTML
2862
- LeadsToHighrise::Lead Load (26.4ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads"
2863
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/index.html.erb within layouts/leads_to_highrise/application (230.1ms)
2864
- Completed 500 Internal Server Error in 944ms
2865
-
2866
- ActionView::Template::Error (undefined local variable or method `new_lead_path' for #<#<Class:0xb6c95200>:0xb6c94d28>):
2867
- 1: <%= link_to 'New Lead', new_lead_path %>
2868
- 2: <br>
2869
- 3: <table>
2870
- 4: <thead>
2871
- /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/index.html.erb:1:in `__vagrant_leads_to_highrise_app_views_leads_to_highrise_leads_index_html_erb__709792083_88435490'
2872
- actionview (4.1.0) lib/action_view/template.rb:145:in `block in render'
2873
- activesupport (4.1.0) lib/active_support/notifications.rb:161:in `instrument'
2874
- actionview (4.1.0) lib/action_view/template.rb:339:in `instrument'
2875
- actionview (4.1.0) lib/action_view/template.rb:143:in `render'
2876
- actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template'
2877
- actionview (4.1.0) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
2878
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `block in instrument'
2879
- activesupport (4.1.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2880
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `instrument'
2881
- actionview (4.1.0) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
2882
- actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template'
2883
- actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout'
2884
- actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:53:in `render_template'
2885
- actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:17:in `render'
2886
- actionview (4.1.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
2887
- actionview (4.1.0) lib/action_view/renderer/renderer.rb:23:in `render'
2888
- actionview (4.1.0) lib/action_view/rendering.rb:99:in `_render_template'
2889
- actionpack (4.1.0) lib/action_controller/metal/streaming.rb:217:in `_render_template'
2890
- actionview (4.1.0) lib/action_view/rendering.rb:82:in `render_to_body'
2891
- actionpack (4.1.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
2892
- actionpack (4.1.0) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
2893
- actionpack (4.1.0) lib/abstract_controller/rendering.rb:25:in `render'
2894
- actionpack (4.1.0) lib/action_controller/metal/rendering.rb:16:in `render'
2895
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
2896
- activesupport (4.1.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
2897
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
2898
- activesupport (4.1.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
2899
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
2900
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
2901
- activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
2902
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
2903
- actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
2904
- actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
2905
- actionpack (4.1.0) lib/abstract_controller/base.rb:189:in `process_action'
2906
- actionpack (4.1.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
2907
- actionpack (4.1.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
2908
- activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
2909
- activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
2910
- activesupport (4.1.0) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
2911
- activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `call'
2912
- activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `run_callbacks'
2913
- actionpack (4.1.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
2914
- actionpack (4.1.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
2915
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
2916
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `block in instrument'
2917
- activesupport (4.1.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2918
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `instrument'
2919
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
2920
- actionpack (4.1.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
2921
- activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2922
- actionpack (4.1.0) lib/abstract_controller/base.rb:136:in `process'
2923
- actionview (4.1.0) lib/action_view/rendering.rb:30:in `process'
2924
- actionpack (4.1.0) lib/action_controller/metal.rb:195:in `dispatch'
2925
- actionpack (4.1.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
2926
- actionpack (4.1.0) lib/action_controller/metal.rb:231:in `block in action'
2927
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
2928
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
2929
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
2930
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
2931
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
2932
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
2933
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
2934
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
2935
- railties (4.1.0) lib/rails/railtie.rb:194:in `public_send'
2936
- railties (4.1.0) lib/rails/railtie.rb:194:in `method_missing'
2937
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
2938
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
2939
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
2940
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
2941
- warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
2942
- warden (1.2.3) lib/warden/manager.rb:34:in `catch'
2943
- warden (1.2.3) lib/warden/manager.rb:34:in `call'
2944
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
2945
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
2946
- rack (1.5.2) lib/rack/head.rb:11:in `call'
2947
- actionpack (4.1.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
2948
- actionpack (4.1.0) lib/action_dispatch/middleware/flash.rb:254:in `call'
2949
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
2950
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
2951
- actionpack (4.1.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
2952
- activerecord (4.1.0) lib/active_record/query_cache.rb:36:in `call'
2953
- activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
2954
- activerecord (4.1.0) lib/active_record/migration.rb:380:in `call'
2955
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
2956
- activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
2957
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2958
- actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
2959
- actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
2960
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2961
- actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2962
- railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
2963
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
2964
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2965
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
2966
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
2967
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
2968
- actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2969
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2970
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2971
- activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
2972
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
2973
- actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
2974
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2975
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
2976
- railties (4.1.0) lib/rails/application.rb:144:in `call'
2977
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
2978
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2979
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2980
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2981
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2982
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2983
-
2984
-
2985
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.5ms)
2986
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (26.8ms)
2987
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (70.1ms)
2988
-
2989
-
2990
- Started GET "/leads_to_highrise/leads" for 10.0.2.2 at 2014-04-16 19:04:28 +0000
2991
- Processing by LeadsToHighrise::LeadsController#index as HTML
2992
- LeadsToHighrise::Lead Load (13.1ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads"
2993
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/index.html.erb within layouts/leads_to_highrise/application (261.1ms)
2994
- Completed 500 Internal Server Error in 918ms
2995
-
2996
- ActionView::Template::Error (undefined method `lead_path' for #<#<Class:0xa8c9204>:0xa8b9458>):
2997
- 24: <td><%= lead.job_title %></td>
2998
- 25: <td><%= lead.phone %></td>
2999
- 26: <td><%= lead.website %></td>
3000
- 27: <td><%= link_to 'Show', lead %></td>
3001
- 28: <td><%= link_to 'Edit', edit_lead_path(lead) %></td>
3002
- 29: <td><%= link_to 'Destroy', lead, method: :delete, data: { confirm: 'Are you sure?' } %></td>
3003
- 30: <td><%= link_to 'Send To Highrise', to_highrise_path(lead) if user_signed_in? %></td>
3004
- actionpack (4.1.0) lib/action_dispatch/routing/polymorphic_routes.rb:142:in `polymorphic_url'
3005
- actionpack (4.1.0) lib/action_dispatch/routing/polymorphic_routes.rb:148:in `polymorphic_path'
3006
- actionview (4.1.0) lib/action_view/routing_url_for.rb:89:in `url_for'
3007
- actionview (4.1.0) lib/action_view/helpers/url_helper.rb:181:in `link_to'
3008
- /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/index.html.erb:27:in `block in __vagrant_leads_to_highrise_app_views_leads_to_highrise_leads_index_html_erb__709792083_88435490'
3009
- activerecord (4.1.0) lib/active_record/relation/delegation.rb:46:in `each'
3010
- activerecord (4.1.0) lib/active_record/relation/delegation.rb:46:in `each'
3011
- /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/index.html.erb:18:in `__vagrant_leads_to_highrise_app_views_leads_to_highrise_leads_index_html_erb__709792083_88435490'
3012
- actionview (4.1.0) lib/action_view/template.rb:145:in `block in render'
3013
- activesupport (4.1.0) lib/active_support/notifications.rb:161:in `instrument'
3014
- actionview (4.1.0) lib/action_view/template.rb:339:in `instrument'
3015
- actionview (4.1.0) lib/action_view/template.rb:143:in `render'
3016
- actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:55:in `block (2 levels) in render_template'
3017
- actionview (4.1.0) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
3018
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `block in instrument'
3019
- activesupport (4.1.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3020
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `instrument'
3021
- actionview (4.1.0) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
3022
- actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:54:in `block in render_template'
3023
- actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:62:in `render_with_layout'
3024
- actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:53:in `render_template'
3025
- actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:17:in `render'
3026
- actionview (4.1.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
3027
- actionview (4.1.0) lib/action_view/renderer/renderer.rb:23:in `render'
3028
- actionview (4.1.0) lib/action_view/rendering.rb:99:in `_render_template'
3029
- actionpack (4.1.0) lib/action_controller/metal/streaming.rb:217:in `_render_template'
3030
- actionview (4.1.0) lib/action_view/rendering.rb:82:in `render_to_body'
3031
- actionpack (4.1.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
3032
- actionpack (4.1.0) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
3033
- actionpack (4.1.0) lib/abstract_controller/rendering.rb:25:in `render'
3034
- actionpack (4.1.0) lib/action_controller/metal/rendering.rb:16:in `render'
3035
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
3036
- activesupport (4.1.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
3037
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
3038
- activesupport (4.1.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
3039
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
3040
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
3041
- activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
3042
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
3043
- actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
3044
- actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
3045
- actionpack (4.1.0) lib/abstract_controller/base.rb:189:in `process_action'
3046
- actionpack (4.1.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
3047
- actionpack (4.1.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
3048
- activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
3049
- activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
3050
- activesupport (4.1.0) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
3051
- activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `call'
3052
- activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `run_callbacks'
3053
- actionpack (4.1.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
3054
- actionpack (4.1.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
3055
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
3056
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `block in instrument'
3057
- activesupport (4.1.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3058
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `instrument'
3059
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
3060
- actionpack (4.1.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
3061
- activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
3062
- actionpack (4.1.0) lib/abstract_controller/base.rb:136:in `process'
3063
- actionview (4.1.0) lib/action_view/rendering.rb:30:in `process'
3064
- actionpack (4.1.0) lib/action_controller/metal.rb:195:in `dispatch'
3065
- actionpack (4.1.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
3066
- actionpack (4.1.0) lib/action_controller/metal.rb:231:in `block in action'
3067
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
3068
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
3069
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
3070
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
3071
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
3072
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
3073
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
3074
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
3075
- railties (4.1.0) lib/rails/railtie.rb:194:in `public_send'
3076
- railties (4.1.0) lib/rails/railtie.rb:194:in `method_missing'
3077
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
3078
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
3079
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
3080
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
3081
- warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
3082
- warden (1.2.3) lib/warden/manager.rb:34:in `catch'
3083
- warden (1.2.3) lib/warden/manager.rb:34:in `call'
3084
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
3085
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
3086
- rack (1.5.2) lib/rack/head.rb:11:in `call'
3087
- actionpack (4.1.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
3088
- actionpack (4.1.0) lib/action_dispatch/middleware/flash.rb:254:in `call'
3089
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
3090
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
3091
- actionpack (4.1.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
3092
- activerecord (4.1.0) lib/active_record/query_cache.rb:36:in `call'
3093
- activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
3094
- activerecord (4.1.0) lib/active_record/migration.rb:380:in `call'
3095
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
3096
- activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
3097
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3098
- actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
3099
- actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
3100
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
3101
- actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3102
- railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
3103
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
3104
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
3105
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
3106
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
3107
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
3108
- actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3109
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3110
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3111
- activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
3112
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
3113
- actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
3114
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3115
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
3116
- railties (4.1.0) lib/rails/application.rb:144:in `call'
3117
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
3118
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3119
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3120
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
3121
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
3122
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
3123
-
3124
-
3125
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.5ms)
3126
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.7ms)
3127
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (95.2ms)
3128
-
3129
-
3130
- Started GET "/leads_to_highrise/leads" for 10.0.2.2 at 2014-04-16 19:06:00 +0000
3131
- Processing by LeadsToHighrise::LeadsController#index as HTML
3132
- LeadsToHighrise::Lead Load (15.3ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads"
3133
- User Load (5.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
3134
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/index.html.erb within layouts/leads_to_highrise/application (540.7ms)
3135
- Completed 200 OK in 1908ms (Views: 1698.5ms | ActiveRecord: 35.2ms)
3136
-
3137
-
3138
- Started GET "/assets/leads_to_highrise/leads.css?body=1" for 10.0.2.2 at 2014-04-16 19:06:04 +0000
3139
-
3140
-
3141
- Started GET "/assets/leads_to_highrise/leads.js?body=1" for 10.0.2.2 at 2014-04-16 19:06:04 +0000
3142
-
3143
-
3144
- Started GET "/assets/leads_to_highrise/application.js?body=1" for 10.0.2.2 at 2014-04-16 19:06:05 +0000
3145
-
3146
-
3147
- Started GET "/assets/leads_to_highrise/application.css?body=1" for 10.0.2.2 at 2014-04-16 19:06:05 +0000
3148
-
3149
-
3150
- Started GET "/leads_to_highrise/leads/3/show" for 10.0.2.2 at 2014-04-16 19:06:15 +0000
3151
- Processing by LeadsToHighrise::LeadsController#show as HTML
3152
- Parameters: {"id"=>"3"}
3153
- LeadsToHighrise::Lead Load (12.8ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads" WHERE "leads_to_highrise_leads"."id" = ? LIMIT 1 [["id", 3]]
3154
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/show.html.erb within layouts/leads_to_highrise/application (3.5ms)
3155
- Completed 200 OK in 1007ms (Views: 976.6ms | ActiveRecord: 12.8ms)
3156
-
3157
-
3158
- Started GET "/assets/leads_to_highrise/leads.css?body=1" for 10.0.2.2 at 2014-04-16 19:06:17 +0000
3159
-
3160
-
3161
- Started GET "/assets/leads_to_highrise/application.css?body=1" for 10.0.2.2 at 2014-04-16 19:06:17 +0000
3162
-
3163
-
3164
- Started GET "/assets/leads_to_highrise/application.js?body=1" for 10.0.2.2 at 2014-04-16 19:06:17 +0000
3165
-
3166
-
3167
- Started GET "/assets/leads_to_highrise/leads.js?body=1" for 10.0.2.2 at 2014-04-16 19:06:18 +0000
3168
-
3169
-
3170
- Started GET "/leads_to_highrise/leads" for 10.0.2.2 at 2014-04-16 19:07:05 +0000
3171
- Processing by LeadsToHighrise::LeadsController#index as HTML
3172
- LeadsToHighrise::Lead Load (9.7ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads"
3173
- User Load (8.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
3174
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/index.html.erb within layouts/leads_to_highrise/application (72.2ms)
3175
- Completed 500 Internal Server Error in 1393ms
3176
-
3177
- ActionView::Template::Error (couldn't find file 'jquery'
3178
- (in /vagrant/leads_to_highrise/app/assets/javascripts/leads_to_highrise/application.js:14)):
3179
- 3: <head>
3180
- 4: <title>LeadsToHighrise</title>
3181
- 5: <%= stylesheet_link_tag "leads_to_highrise/application", media: "all" %>
3182
- 6: <%= javascript_include_tag "leads_to_highrise/application" %>
3183
- 7: <%= csrf_meta_tags %>
3184
- 8: </head>
3185
- 9: <body>
3186
- sprockets (2.12.0) lib/sprockets/context.rb:106:in `resolve'
3187
- sprockets (2.12.0) lib/sprockets/context.rb:146:in `require_asset'
3188
- sprockets (2.12.0) lib/sprockets/directive_processor.rb:217:in `process_require_directive'
3189
- sprockets (2.12.0) lib/sprockets/directive_processor.rb:167:in `block in process_directives'
3190
- sprockets (2.12.0) lib/sprockets/directive_processor.rb:165:in `each'
3191
- sprockets (2.12.0) lib/sprockets/directive_processor.rb:165:in `process_directives'
3192
- sprockets (2.12.0) lib/sprockets/directive_processor.rb:99:in `evaluate'
3193
- tilt (1.4.1) lib/tilt/template.rb:103:in `render'
3194
- sprockets (2.12.0) lib/sprockets/context.rb:197:in `block in evaluate'
3195
- sprockets (2.12.0) lib/sprockets/context.rb:194:in `each'
3196
- sprockets (2.12.0) lib/sprockets/context.rb:194:in `evaluate'
3197
- sprockets (2.12.0) lib/sprockets/processed_asset.rb:12:in `initialize'
3198
- sprockets (2.12.0) lib/sprockets/base.rb:374:in `new'
3199
- sprockets (2.12.0) lib/sprockets/base.rb:374:in `block in build_asset'
3200
- sprockets (2.12.0) lib/sprockets/base.rb:395:in `circular_call_protection'
3201
- sprockets (2.12.0) lib/sprockets/base.rb:373:in `build_asset'
3202
- sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset'
3203
- sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset'
3204
- sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset'
3205
- sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset'
3206
- sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset'
3207
- sprockets (2.12.0) lib/sprockets/bundled_asset.rb:37:in `init_with'
3208
- sprockets (2.12.0) lib/sprockets/asset.rb:24:in `from_hash'
3209
- sprockets (2.12.0) lib/sprockets/caching.rb:54:in `cache_asset'
3210
- sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset'
3211
- sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset'
3212
- sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset'
3213
- sprockets (2.12.0) lib/sprockets/environment.rb:75:in `find_asset'
3214
- sprockets (2.12.0) lib/sprockets/base.rb:295:in `[]'
3215
- sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:214:in `lookup_asset_for_path'
3216
- sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:182:in `check_errors_for'
3217
- sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:134:in `block in javascript_include_tag'
3218
- sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:133:in `map'
3219
- sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:133:in `javascript_include_tag'
3220
- /vagrant/leads_to_highrise/app/views/layouts/leads_to_highrise/application.html.erb:6:in `__vagrant_leads_to_highrise_app_views_layouts_leads_to_highrise_application_html_erb___982983826_87620060'
3221
- actionview (4.1.0) lib/action_view/template.rb:145:in `block in render'
3222
- activesupport (4.1.0) lib/active_support/notifications.rb:161:in `instrument'
3223
- actionview (4.1.0) lib/action_view/template.rb:339:in `instrument'
3224
- actionview (4.1.0) lib/action_view/template.rb:143:in `render'
3225
- actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:67:in `render_with_layout'
3226
- actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:53:in `render_template'
3227
- actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:17:in `render'
3228
- actionview (4.1.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
3229
- actionview (4.1.0) lib/action_view/renderer/renderer.rb:23:in `render'
3230
- actionview (4.1.0) lib/action_view/rendering.rb:99:in `_render_template'
3231
- actionpack (4.1.0) lib/action_controller/metal/streaming.rb:217:in `_render_template'
3232
- actionview (4.1.0) lib/action_view/rendering.rb:82:in `render_to_body'
3233
- actionpack (4.1.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
3234
- actionpack (4.1.0) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
3235
- actionpack (4.1.0) lib/abstract_controller/rendering.rb:25:in `render'
3236
- actionpack (4.1.0) lib/action_controller/metal/rendering.rb:16:in `render'
3237
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
3238
- activesupport (4.1.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
3239
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
3240
- activesupport (4.1.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
3241
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
3242
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
3243
- activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
3244
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
3245
- actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
3246
- actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
3247
- actionpack (4.1.0) lib/abstract_controller/base.rb:189:in `process_action'
3248
- actionpack (4.1.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
3249
- actionpack (4.1.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
3250
- activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
3251
- activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
3252
- activesupport (4.1.0) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
3253
- activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `call'
3254
- activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `run_callbacks'
3255
- actionpack (4.1.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
3256
- actionpack (4.1.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
3257
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
3258
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `block in instrument'
3259
- activesupport (4.1.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3260
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `instrument'
3261
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
3262
- actionpack (4.1.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
3263
- activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
3264
- actionpack (4.1.0) lib/abstract_controller/base.rb:136:in `process'
3265
- actionview (4.1.0) lib/action_view/rendering.rb:30:in `process'
3266
- actionpack (4.1.0) lib/action_controller/metal.rb:195:in `dispatch'
3267
- actionpack (4.1.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
3268
- actionpack (4.1.0) lib/action_controller/metal.rb:231:in `block in action'
3269
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
3270
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
3271
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
3272
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
3273
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
3274
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
3275
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
3276
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
3277
- railties (4.1.0) lib/rails/railtie.rb:194:in `public_send'
3278
- railties (4.1.0) lib/rails/railtie.rb:194:in `method_missing'
3279
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
3280
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
3281
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
3282
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
3283
- warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
3284
- warden (1.2.3) lib/warden/manager.rb:34:in `catch'
3285
- warden (1.2.3) lib/warden/manager.rb:34:in `call'
3286
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
3287
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
3288
- rack (1.5.2) lib/rack/head.rb:11:in `call'
3289
- actionpack (4.1.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
3290
- actionpack (4.1.0) lib/action_dispatch/middleware/flash.rb:254:in `call'
3291
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
3292
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
3293
- actionpack (4.1.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
3294
- activerecord (4.1.0) lib/active_record/query_cache.rb:36:in `call'
3295
- activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
3296
- activerecord (4.1.0) lib/active_record/migration.rb:380:in `call'
3297
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
3298
- activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
3299
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3300
- actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
3301
- actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
3302
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
3303
- actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3304
- railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
3305
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
3306
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
3307
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
3308
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
3309
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
3310
- actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3311
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3312
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3313
- activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
3314
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
3315
- actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
3316
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3317
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
3318
- railties (4.1.0) lib/rails/application.rb:144:in `call'
3319
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
3320
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3321
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3322
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
3323
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
3324
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
3325
-
3326
-
3327
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms)
3328
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms)
3329
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (51.0ms)
3330
-
3331
-
3332
- Started GET "/leads_to_highrise/leads" for 10.0.2.2 at 2014-04-16 19:13:30 +0000
3333
- ActiveRecord::SchemaMigration Load (13.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
3334
- Processing by LeadsToHighrise::LeadsController#index as HTML
3335
- LeadsToHighrise::Lead Load (5.9ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads"
3336
- User Load (6.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
3337
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/index.html.erb within layouts/leads_to_highrise/application (602.3ms)
3338
- Completed 500 Internal Server Error in 2466ms
3339
-
3340
- ActionView::Template::Error (couldn't find file 'jquery'
3341
- (in /vagrant/leads_to_highrise/app/assets/javascripts/leads_to_highrise/application.js:14)):
3342
- 3: <head>
3343
- 4: <title>LeadsToHighrise</title>
3344
- 5: <%= stylesheet_link_tag "leads_to_highrise/application", media: "all" %>
3345
- 6: <%= javascript_include_tag "leads_to_highrise/application" %>
3346
- 7: <%= csrf_meta_tags %>
3347
- 8: </head>
3348
- 9: <body>
3349
- sprockets (2.12.0) lib/sprockets/context.rb:106:in `resolve'
3350
- sprockets (2.12.0) lib/sprockets/context.rb:146:in `require_asset'
3351
- sprockets (2.12.0) lib/sprockets/directive_processor.rb:217:in `process_require_directive'
3352
- sprockets (2.12.0) lib/sprockets/directive_processor.rb:167:in `block in process_directives'
3353
- sprockets (2.12.0) lib/sprockets/directive_processor.rb:165:in `each'
3354
- sprockets (2.12.0) lib/sprockets/directive_processor.rb:165:in `process_directives'
3355
- sprockets (2.12.0) lib/sprockets/directive_processor.rb:99:in `evaluate'
3356
- tilt (1.4.1) lib/tilt/template.rb:103:in `render'
3357
- sprockets (2.12.0) lib/sprockets/context.rb:197:in `block in evaluate'
3358
- sprockets (2.12.0) lib/sprockets/context.rb:194:in `each'
3359
- sprockets (2.12.0) lib/sprockets/context.rb:194:in `evaluate'
3360
- sprockets (2.12.0) lib/sprockets/processed_asset.rb:12:in `initialize'
3361
- sprockets (2.12.0) lib/sprockets/base.rb:374:in `new'
3362
- sprockets (2.12.0) lib/sprockets/base.rb:374:in `block in build_asset'
3363
- sprockets (2.12.0) lib/sprockets/base.rb:395:in `circular_call_protection'
3364
- sprockets (2.12.0) lib/sprockets/base.rb:373:in `build_asset'
3365
- sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset'
3366
- sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset'
3367
- sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset'
3368
- sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset'
3369
- sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset'
3370
- sprockets (2.12.0) lib/sprockets/bundled_asset.rb:37:in `init_with'
3371
- sprockets (2.12.0) lib/sprockets/asset.rb:24:in `from_hash'
3372
- sprockets (2.12.0) lib/sprockets/caching.rb:54:in `cache_asset'
3373
- sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset'
3374
- sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset'
3375
- sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset'
3376
- sprockets (2.12.0) lib/sprockets/environment.rb:75:in `find_asset'
3377
- sprockets (2.12.0) lib/sprockets/base.rb:295:in `[]'
3378
- sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:214:in `lookup_asset_for_path'
3379
- sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:182:in `check_errors_for'
3380
- sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:134:in `block in javascript_include_tag'
3381
- sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:133:in `map'
3382
- sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:133:in `javascript_include_tag'
3383
- /vagrant/leads_to_highrise/app/views/layouts/leads_to_highrise/application.html.erb:6:in `__vagrant_leads_to_highrise_app_views_layouts_leads_to_highrise_application_html_erb___683427021_90167930'
3384
- actionview (4.1.0) lib/action_view/template.rb:145:in `block in render'
3385
- activesupport (4.1.0) lib/active_support/notifications.rb:161:in `instrument'
3386
- actionview (4.1.0) lib/action_view/template.rb:339:in `instrument'
3387
- actionview (4.1.0) lib/action_view/template.rb:143:in `render'
3388
- actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:67:in `render_with_layout'
3389
- actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:53:in `render_template'
3390
- actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:17:in `render'
3391
- actionview (4.1.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
3392
- actionview (4.1.0) lib/action_view/renderer/renderer.rb:23:in `render'
3393
- actionview (4.1.0) lib/action_view/rendering.rb:99:in `_render_template'
3394
- actionpack (4.1.0) lib/action_controller/metal/streaming.rb:217:in `_render_template'
3395
- actionview (4.1.0) lib/action_view/rendering.rb:82:in `render_to_body'
3396
- actionpack (4.1.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
3397
- actionpack (4.1.0) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
3398
- actionpack (4.1.0) lib/abstract_controller/rendering.rb:25:in `render'
3399
- actionpack (4.1.0) lib/action_controller/metal/rendering.rb:16:in `render'
3400
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
3401
- activesupport (4.1.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
3402
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
3403
- activesupport (4.1.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
3404
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
3405
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
3406
- activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
3407
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
3408
- actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
3409
- actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
3410
- actionpack (4.1.0) lib/abstract_controller/base.rb:189:in `process_action'
3411
- actionpack (4.1.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
3412
- actionpack (4.1.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
3413
- activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
3414
- activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
3415
- activesupport (4.1.0) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
3416
- activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `call'
3417
- activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `run_callbacks'
3418
- actionpack (4.1.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
3419
- actionpack (4.1.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
3420
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
3421
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `block in instrument'
3422
- activesupport (4.1.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3423
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `instrument'
3424
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
3425
- actionpack (4.1.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
3426
- activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
3427
- actionpack (4.1.0) lib/abstract_controller/base.rb:136:in `process'
3428
- actionview (4.1.0) lib/action_view/rendering.rb:30:in `process'
3429
- actionpack (4.1.0) lib/action_controller/metal.rb:195:in `dispatch'
3430
- actionpack (4.1.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
3431
- actionpack (4.1.0) lib/action_controller/metal.rb:231:in `block in action'
3432
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
3433
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
3434
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
3435
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
3436
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
3437
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
3438
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
3439
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
3440
- railties (4.1.0) lib/rails/railtie.rb:194:in `public_send'
3441
- railties (4.1.0) lib/rails/railtie.rb:194:in `method_missing'
3442
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
3443
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
3444
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
3445
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
3446
- warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
3447
- warden (1.2.3) lib/warden/manager.rb:34:in `catch'
3448
- warden (1.2.3) lib/warden/manager.rb:34:in `call'
3449
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
3450
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
3451
- rack (1.5.2) lib/rack/head.rb:11:in `call'
3452
- actionpack (4.1.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
3453
- actionpack (4.1.0) lib/action_dispatch/middleware/flash.rb:254:in `call'
3454
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
3455
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
3456
- actionpack (4.1.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
3457
- activerecord (4.1.0) lib/active_record/query_cache.rb:36:in `call'
3458
- activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
3459
- activerecord (4.1.0) lib/active_record/migration.rb:380:in `call'
3460
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
3461
- activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
3462
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3463
- actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
3464
- actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
3465
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
3466
- actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3467
- railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
3468
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
3469
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
3470
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
3471
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
3472
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
3473
- actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3474
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3475
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3476
- activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
3477
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
3478
- actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
3479
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3480
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
3481
- railties (4.1.0) lib/rails/application.rb:144:in `call'
3482
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
3483
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3484
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3485
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
3486
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
3487
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
3488
-
3489
-
3490
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (68.3ms)
3491
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms)
3492
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (116.9ms)
3493
-
3494
-
3495
- Started GET "/leads_to_highrise/leads" for 10.0.2.2 at 2014-04-16 19:15:19 +0000
3496
- ActiveRecord::SchemaMigration Load (5.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
3497
- Processing by LeadsToHighrise::LeadsController#index as HTML
3498
- LeadsToHighrise::Lead Load (8.7ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads"
3499
- User Load (6.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
3500
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/index.html.erb within layouts/leads_to_highrise/application (849.8ms)
3501
- Completed 500 Internal Server Error in 2851ms
3502
-
3503
- ActionView::Template::Error (couldn't find file 'jquery'
3504
- (in /vagrant/leads_to_highrise/app/assets/javascripts/leads_to_highrise/application.js:14)):
3505
- 3: <head>
3506
- 4: <title>LeadsToHighrise</title>
3507
- 5: <%= stylesheet_link_tag "leads_to_highrise/application", media: "all" %>
3508
- 6: <%= javascript_include_tag "leads_to_highrise/application" %>
3509
- 7: <%= csrf_meta_tags %>
3510
- 8: </head>
3511
- 9: <body>
3512
- sprockets (2.12.0) lib/sprockets/context.rb:106:in `resolve'
3513
- sprockets (2.12.0) lib/sprockets/context.rb:146:in `require_asset'
3514
- sprockets (2.12.0) lib/sprockets/directive_processor.rb:217:in `process_require_directive'
3515
- sprockets (2.12.0) lib/sprockets/directive_processor.rb:167:in `block in process_directives'
3516
- sprockets (2.12.0) lib/sprockets/directive_processor.rb:165:in `each'
3517
- sprockets (2.12.0) lib/sprockets/directive_processor.rb:165:in `process_directives'
3518
- sprockets (2.12.0) lib/sprockets/directive_processor.rb:99:in `evaluate'
3519
- tilt (1.4.1) lib/tilt/template.rb:103:in `render'
3520
- sprockets (2.12.0) lib/sprockets/context.rb:197:in `block in evaluate'
3521
- sprockets (2.12.0) lib/sprockets/context.rb:194:in `each'
3522
- sprockets (2.12.0) lib/sprockets/context.rb:194:in `evaluate'
3523
- sprockets (2.12.0) lib/sprockets/processed_asset.rb:12:in `initialize'
3524
- sprockets (2.12.0) lib/sprockets/base.rb:374:in `new'
3525
- sprockets (2.12.0) lib/sprockets/base.rb:374:in `block in build_asset'
3526
- sprockets (2.12.0) lib/sprockets/base.rb:395:in `circular_call_protection'
3527
- sprockets (2.12.0) lib/sprockets/base.rb:373:in `build_asset'
3528
- sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset'
3529
- sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset'
3530
- sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset'
3531
- sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset'
3532
- sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset'
3533
- sprockets (2.12.0) lib/sprockets/bundled_asset.rb:37:in `init_with'
3534
- sprockets (2.12.0) lib/sprockets/asset.rb:24:in `from_hash'
3535
- sprockets (2.12.0) lib/sprockets/caching.rb:54:in `cache_asset'
3536
- sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset'
3537
- sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset'
3538
- sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset'
3539
- sprockets (2.12.0) lib/sprockets/environment.rb:75:in `find_asset'
3540
- sprockets (2.12.0) lib/sprockets/base.rb:295:in `[]'
3541
- sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:214:in `lookup_asset_for_path'
3542
- sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:182:in `check_errors_for'
3543
- sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:134:in `block in javascript_include_tag'
3544
- sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:133:in `map'
3545
- sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:133:in `javascript_include_tag'
3546
- /vagrant/leads_to_highrise/app/views/layouts/leads_to_highrise/application.html.erb:6:in `__vagrant_leads_to_highrise_app_views_layouts_leads_to_highrise_application_html_erb__160115273_88589210'
3547
- actionview (4.1.0) lib/action_view/template.rb:145:in `block in render'
3548
- activesupport (4.1.0) lib/active_support/notifications.rb:161:in `instrument'
3549
- actionview (4.1.0) lib/action_view/template.rb:339:in `instrument'
3550
- actionview (4.1.0) lib/action_view/template.rb:143:in `render'
3551
- actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:67:in `render_with_layout'
3552
- actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:53:in `render_template'
3553
- actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:17:in `render'
3554
- actionview (4.1.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
3555
- actionview (4.1.0) lib/action_view/renderer/renderer.rb:23:in `render'
3556
- actionview (4.1.0) lib/action_view/rendering.rb:99:in `_render_template'
3557
- actionpack (4.1.0) lib/action_controller/metal/streaming.rb:217:in `_render_template'
3558
- actionview (4.1.0) lib/action_view/rendering.rb:82:in `render_to_body'
3559
- actionpack (4.1.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
3560
- actionpack (4.1.0) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
3561
- actionpack (4.1.0) lib/abstract_controller/rendering.rb:25:in `render'
3562
- actionpack (4.1.0) lib/action_controller/metal/rendering.rb:16:in `render'
3563
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
3564
- activesupport (4.1.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
3565
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
3566
- activesupport (4.1.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
3567
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
3568
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
3569
- activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
3570
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
3571
- actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
3572
- actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
3573
- actionpack (4.1.0) lib/abstract_controller/base.rb:189:in `process_action'
3574
- actionpack (4.1.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
3575
- actionpack (4.1.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
3576
- activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
3577
- activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
3578
- activesupport (4.1.0) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
3579
- activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `call'
3580
- activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `run_callbacks'
3581
- actionpack (4.1.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
3582
- actionpack (4.1.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
3583
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
3584
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `block in instrument'
3585
- activesupport (4.1.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3586
- activesupport (4.1.0) lib/active_support/notifications.rb:159:in `instrument'
3587
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
3588
- actionpack (4.1.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
3589
- activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
3590
- actionpack (4.1.0) lib/abstract_controller/base.rb:136:in `process'
3591
- actionview (4.1.0) lib/action_view/rendering.rb:30:in `process'
3592
- actionpack (4.1.0) lib/action_controller/metal.rb:195:in `dispatch'
3593
- actionpack (4.1.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
3594
- actionpack (4.1.0) lib/action_controller/metal.rb:231:in `block in action'
3595
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
3596
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
3597
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
3598
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
3599
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
3600
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
3601
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
3602
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
3603
- railties (4.1.0) lib/rails/railtie.rb:194:in `public_send'
3604
- railties (4.1.0) lib/rails/railtie.rb:194:in `method_missing'
3605
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
3606
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
3607
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
3608
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
3609
- warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
3610
- warden (1.2.3) lib/warden/manager.rb:34:in `catch'
3611
- warden (1.2.3) lib/warden/manager.rb:34:in `call'
3612
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
3613
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
3614
- rack (1.5.2) lib/rack/head.rb:11:in `call'
3615
- actionpack (4.1.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
3616
- actionpack (4.1.0) lib/action_dispatch/middleware/flash.rb:254:in `call'
3617
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
3618
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
3619
- actionpack (4.1.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
3620
- activerecord (4.1.0) lib/active_record/query_cache.rb:36:in `call'
3621
- activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
3622
- activerecord (4.1.0) lib/active_record/migration.rb:380:in `call'
3623
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
3624
- activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
3625
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3626
- actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
3627
- actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
3628
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1
+  (62.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2
+  (0.9ms) select sqlite_version(*)
3
+  (34.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4
+ ActiveRecord::SchemaMigration Load (8.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
5
+ Migrating to DeviseCreateUsers (20140417074003)
6
+  (0.3ms) begin transaction
7
+  (17.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0 NOT NULL, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "created_at" datetime, "updated_at" datetime)
8
+  (1.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
9
+  (0.2ms) SELECT sql
10
+ FROM sqlite_master
11
+ WHERE name='index_users_on_email' AND type='index'
12
+ UNION ALL
13
+ SELECT sql
14
+ FROM sqlite_temp_master
15
+ WHERE name='index_users_on_email' AND type='index'
16
+
17
+  (0.1ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
18
+ SQL (109.5ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140417074003"]]
19
+  (25.5ms) commit transaction
20
+ ActiveRecord::SchemaMigration Load (15.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
21
+  (4.0ms)  SELECT sql
22
+ FROM sqlite_master
23
+ WHERE name='index_users_on_reset_password_token' AND type='index'
24
+ UNION ALL
25
+ SELECT sql
26
+ FROM sqlite_temp_master
27
+ WHERE name='index_users_on_reset_password_token' AND type='index'
28
+ 
29
+  (6.6ms) SELECT sql
30
+ FROM sqlite_master
31
+ WHERE name='index_users_on_email' AND type='index'
32
+ UNION ALL
33
+ SELECT sql
34
+ FROM sqlite_temp_master
35
+ WHERE name='index_users_on_email' AND type='index'
36
+
37
+ ActiveRecord::SchemaMigration Load (6.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
38
+ Migrating to CreateLeads (20140417073703)
39
+  (0.2ms) begin transaction
40
+  (54.3ms) CREATE TABLE "leads" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "last_name" varchar(255), "email" varchar(255), "company" varchar(255), "job_title" varchar(255), "phone" varchar(255), "website" varchar(255), "created_at" datetime, "updated_at" datetime) 
41
+ SQL (111.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140417073703"]]
42
+  (31.8ms) commit transaction
43
+ Migrating to AddHighriseSiteAndHighriseUserToUser (20140417074432)
44
+  (0.2ms) begin transaction
45
+  (46.7ms) ALTER TABLE "users" ADD "highrise_site" varchar(255)
46
+  (0.4ms) ALTER TABLE "users" ADD "highrise_user" varchar(255)
47
+ SQL (4.0ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140417074432"]]
48
+  (13.5ms) commit transaction
49
+ ActiveRecord::SchemaMigration Load (5.8ms) SELECT "schema_migrations".* FROM "schema_migrations"
50
+  (6.0ms) SELECT sql
51
+ FROM sqlite_master
52
+ WHERE name='index_users_on_reset_password_token' AND type='index'
53
+ UNION ALL
54
+ SELECT sql
55
+ FROM sqlite_temp_master
56
+ WHERE name='index_users_on_reset_password_token' AND type='index'
57
+
58
+  (6.5ms)  SELECT sql
59
+ FROM sqlite_master
60
+ WHERE name='index_users_on_email' AND type='index'
61
+ UNION ALL
62
+ SELECT sql
63
+ FROM sqlite_temp_master
64
+ WHERE name='index_users_on_email' AND type='index'
65
+ 
66
+
67
+
68
+ Started GET "/leads_to_highrise/leads" for 10.0.2.2 at 2014-04-17 07:49:38 +0000
69
+ ActiveRecord::SchemaMigration Load (7.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
70
+
71
+ ActionController::RoutingError (No route matches [GET] "/leads_to_highrise/leads"):
72
+ actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
3629
73
  actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3630
74
  railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
3631
75
  railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
@@ -3650,94 +94,176 @@ ActionView::Template::Error (couldn't find file 'jquery'
3650
94
  /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
3651
95
 
3652
96
 
3653
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (85.1ms)
3654
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.7ms)
3655
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (122.3ms)
97
+ Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms)
98
+ Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.3ms)
99
+ Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (350.9ms)
100
+ Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (932.0ms)
101
+
102
+
103
+ Started GET "/leads" for 10.0.2.2 at 2014-04-17 07:50:02 +0000
104
+ Processing by LeadsController#index as HTML
105
+ Lead Load (9.6ms) SELECT "leads".* FROM "leads"
106
+ Rendered /vagrant/engine/leads_to_highrise/app/views/leads/index.html.erb within layouts/application (17.6ms)
107
+ Completed 200 OK in 1893ms (Views: 1611.6ms | ActiveRecord: 9.6ms)
108
+
109
+
110
+ Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-04-17 07:50:05 +0000
111
+
112
+
113
+ Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-04-17 07:50:05 +0000
114
+
115
+
116
+ Started GET "/leads/new" for 10.0.2.2 at 2014-04-17 07:50:09 +0000
117
+ Processing by LeadsController#new as HTML
118
+ Rendered /vagrant/engine/leads_to_highrise/app/views/leads/_form.html.erb (352.7ms)
119
+ Rendered /vagrant/engine/leads_to_highrise/app/views/leads/new.html.erb within layouts/application (601.0ms)
120
+ Completed 200 OK in 1412ms (Views: 1399.5ms | ActiveRecord: 6.5ms)
121
+
122
+
123
+ Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-04-17 07:50:11 +0000
124
+
125
+
126
+ Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-04-17 07:50:11 +0000
127
+
128
+
129
+ Started POST "/leads" for 10.0.2.2 at 2014-04-17 07:50:32 +0000
130
+ Processing by LeadsController#create as HTML
131
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"h7Hg4BJhz4hBTU1oDxw7PGmnVkKc9VDDskwoZAPV/xs=", "lead"=>{"name"=>"Bruno", "last_name"=>"Tripoloni", "email"=>"bruno.tripoloni@gmail.com", "company"=>"brunolandia", "job_title"=>"empresaria", "phone"=>"(18) 3528-5172", "website"=>"site.com.br"}, "commit"=>"Create Lead"}
132
+  (1.2ms) begin transaction
133
+ SQL (18.5ms) INSERT INTO "leads" ("company", "created_at", "email", "job_title", "last_name", "name", "phone", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["company", "brunolandia"], ["created_at", "2014-04-17 07:50:32.614099"], ["email", "bruno.tripoloni@gmail.com"], ["job_title", "empresaria"], ["last_name", "Tripoloni"], ["name", "Bruno"], ["phone", "(18) 3528-5172"], ["updated_at", "2014-04-17 07:50:32.614099"], ["website", "site.com.br"]]
134
+  (19.8ms) commit transaction
135
+ Redirected to http://localhost:3000/leads/1
136
+ Completed 302 Found in 233ms (ActiveRecord: 39.5ms)
137
+
138
+
139
+ Started GET "/leads/1" for 10.0.2.2 at 2014-04-17 07:50:32 +0000
140
+ Processing by LeadsController#show as HTML
141
+ Parameters: {"id"=>"1"}
142
+ Lead Load (57.7ms) SELECT "leads".* FROM "leads" WHERE "leads"."id" = ? LIMIT 1 [["id", 1]]
143
+ Rendered /vagrant/engine/leads_to_highrise/app/views/leads/show.html.erb within layouts/application (6.2ms)
144
+ Completed 200 OK in 833ms (Views: 759.6ms | ActiveRecord: 57.7ms)
145
+
146
+
147
+ Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-04-17 07:50:34 +0000
3656
148
 
3657
149
 
3658
- Started GET "/leads_to_highrise/leads" for 10.0.2.2 at 2014-04-16 19:15:36 +0000
3659
- Processing by LeadsToHighrise::LeadsController#index as HTML
3660
- LeadsToHighrise::Lead Load (18.2ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads"
3661
- User Load (57.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
3662
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/index.html.erb within layouts/leads_to_highrise/application (110.8ms)
3663
- Completed 500 Internal Server Error in 1237ms
150
+ Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-04-17 07:50:34 +0000
3664
151
 
3665
- ActionView::Template::Error (couldn't find file 'jquery_ujs'
3666
- (in /vagrant/leads_to_highrise/app/assets/javascripts/leads_to_highrise/application.js:15)):
3667
- 3: <head>
3668
- 4: <title>LeadsToHighrise</title>
3669
- 5: <%= stylesheet_link_tag "leads_to_highrise/application", media: "all" %>
3670
- 6: <%= javascript_include_tag "leads_to_highrise/application" %>
3671
- 7: <%= csrf_meta_tags %>
3672
- 8: </head>
3673
- 9: <body>
3674
- sprockets (2.12.0) lib/sprockets/context.rb:106:in `resolve'
3675
- sprockets (2.12.0) lib/sprockets/context.rb:146:in `require_asset'
3676
- sprockets (2.12.0) lib/sprockets/directive_processor.rb:217:in `process_require_directive'
3677
- sprockets (2.12.0) lib/sprockets/directive_processor.rb:167:in `block in process_directives'
3678
- sprockets (2.12.0) lib/sprockets/directive_processor.rb:165:in `each'
3679
- sprockets (2.12.0) lib/sprockets/directive_processor.rb:165:in `process_directives'
3680
- sprockets (2.12.0) lib/sprockets/directive_processor.rb:99:in `evaluate'
3681
- tilt (1.4.1) lib/tilt/template.rb:103:in `render'
3682
- sprockets (2.12.0) lib/sprockets/context.rb:197:in `block in evaluate'
3683
- sprockets (2.12.0) lib/sprockets/context.rb:194:in `each'
3684
- sprockets (2.12.0) lib/sprockets/context.rb:194:in `evaluate'
3685
- sprockets (2.12.0) lib/sprockets/processed_asset.rb:12:in `initialize'
3686
- sprockets (2.12.0) lib/sprockets/base.rb:374:in `new'
3687
- sprockets (2.12.0) lib/sprockets/base.rb:374:in `block in build_asset'
3688
- sprockets (2.12.0) lib/sprockets/base.rb:395:in `circular_call_protection'
3689
- sprockets (2.12.0) lib/sprockets/base.rb:373:in `build_asset'
3690
- sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset'
3691
- sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset'
3692
- sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset'
3693
- sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset'
3694
- sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset'
3695
- sprockets (2.12.0) lib/sprockets/bundled_asset.rb:37:in `init_with'
3696
- sprockets (2.12.0) lib/sprockets/asset.rb:24:in `from_hash'
3697
- sprockets (2.12.0) lib/sprockets/caching.rb:54:in `cache_asset'
3698
- sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset'
3699
- sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset'
3700
- sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset'
3701
- sprockets (2.12.0) lib/sprockets/environment.rb:75:in `find_asset'
3702
- sprockets (2.12.0) lib/sprockets/base.rb:295:in `[]'
3703
- sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:214:in `lookup_asset_for_path'
3704
- sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:182:in `check_errors_for'
3705
- sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:134:in `block in javascript_include_tag'
3706
- sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:133:in `map'
3707
- sprockets-rails (2.1.3) lib/sprockets/rails/helper.rb:133:in `javascript_include_tag'
3708
- /vagrant/leads_to_highrise/app/views/layouts/leads_to_highrise/application.html.erb:6:in `__vagrant_leads_to_highrise_app_views_layouts_leads_to_highrise_application_html_erb__160115273_88589210'
3709
- actionview (4.1.0) lib/action_view/template.rb:145:in `block in render'
3710
- activesupport (4.1.0) lib/active_support/notifications.rb:161:in `instrument'
3711
- actionview (4.1.0) lib/action_view/template.rb:339:in `instrument'
3712
- actionview (4.1.0) lib/action_view/template.rb:143:in `render'
3713
- actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:67:in `render_with_layout'
3714
- actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:53:in `render_template'
3715
- actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:17:in `render'
3716
- actionview (4.1.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
3717
- actionview (4.1.0) lib/action_view/renderer/renderer.rb:23:in `render'
3718
- actionview (4.1.0) lib/action_view/rendering.rb:99:in `_render_template'
3719
- actionpack (4.1.0) lib/action_controller/metal/streaming.rb:217:in `_render_template'
3720
- actionview (4.1.0) lib/action_view/rendering.rb:82:in `render_to_body'
3721
- actionpack (4.1.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
3722
- actionpack (4.1.0) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
3723
- actionpack (4.1.0) lib/abstract_controller/rendering.rb:25:in `render'
3724
- actionpack (4.1.0) lib/action_controller/metal/rendering.rb:16:in `render'
3725
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
3726
- activesupport (4.1.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
3727
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
3728
- activesupport (4.1.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
3729
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
3730
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
3731
- activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
3732
- actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
3733
- actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
3734
- actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
152
+
153
+ Started GET "/leads" for 10.0.2.2 at 2014-04-17 07:50:37 +0000
154
+ Processing by LeadsController#index as HTML
155
+ Lead Load (8.4ms) SELECT "leads".* FROM "leads"
156
+ Rendered /vagrant/engine/leads_to_highrise/app/views/leads/index.html.erb within layouts/application (24.8ms)
157
+ Completed 200 OK in 874ms (Views: 861.5ms | ActiveRecord: 8.4ms)
158
+
159
+
160
+ Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-04-17 07:50:38 +0000
161
+
162
+
163
+ Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-04-17 07:50:39 +0000
164
+
165
+
166
+ Started GET "/leads" for 10.0.2.2 at 2014-04-17 07:53:20 +0000
167
+ Processing by LeadsController#index as HTML
168
+ Lead Load (30.3ms) SELECT "leads".* FROM "leads"
169
+ Rendered /vagrant/engine/leads_to_highrise/app/views/leads/index.html.erb within layouts/application (191.3ms)
170
+ Completed 200 OK in 1312ms (Views: 1026.9ms | ActiveRecord: 40.6ms)
171
+
172
+
173
+ Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-04-17 07:53:24 +0000
174
+
175
+
176
+ Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-04-17 07:53:25 +0000
177
+
178
+
179
+ Started GET "/users/sign_up" for 10.0.2.2 at 2014-04-17 07:55:30 +0000
180
+ Processing by Devise::RegistrationsController#new as HTML
181
+ Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/devise-3.2.4/app/views/devise/shared/_links.erb (2.6ms)
182
+ Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/devise-3.2.4/app/views/devise/registrations/new.html.erb within layouts/application (544.1ms)
183
+ Completed 200 OK in 1415ms (Views: 1383.8ms | ActiveRecord: 19.4ms)
184
+
185
+
186
+ Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-04-17 07:55:33 +0000
187
+
188
+
189
+ Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-04-17 07:55:33 +0000
190
+
191
+
192
+ Started POST "/users" for 10.0.2.2 at 2014-04-17 07:55:42 +0000
193
+ Processing by Devise::RegistrationsController#create as HTML
194
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"h7Hg4BJhz4hBTU1oDxw7PGmnVkKc9VDDskwoZAPV/xs=", "user"=>{"email"=>"bruno.tripoloni@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
195
+  (0.4ms) begin transaction
196
+ User Exists (6.9ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'bruno.tripoloni@gmail.com' LIMIT 1
197
+ Binary data inserted for `string` type on column `encrypted_password`
198
+ SQL (40.5ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-04-17 07:55:44.397954"], ["email", "bruno.tripoloni@gmail.com"], ["encrypted_password", "$2a$10$sk7u/sunhTWBliO2CsRSquG0qCsCTW.SDF6z3sUYsEJT/pYyqrql6"], ["updated_at", "2014-04-17 07:55:44.397954"]]
199
+  (51.5ms) commit transaction
200
+  (0.2ms) begin transaction
201
+ Binary data inserted for `string` type on column `current_sign_in_ip`
202
+ Binary data inserted for `string` type on column `last_sign_in_ip`
203
+ SQL (82.7ms) UPDATE "users" SET "current_sign_in_at" = ?, "current_sign_in_ip" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-04-17 07:55:44.502309"], ["current_sign_in_ip", "10.0.2.2"], ["last_sign_in_at", "2014-04-17 07:55:44.502309"], ["last_sign_in_ip", "10.0.2.2"], ["sign_in_count", 1], ["updated_at", "2014-04-17 07:55:44.556125"]]
204
+  (40.8ms) commit transaction
205
+ Redirected to http://localhost:3000/
206
+ Completed 302 Found in 2234ms (ActiveRecord: 222.9ms)
207
+
208
+
209
+ Started GET "/" for 10.0.2.2 at 2014-04-17 07:55:45 +0000
210
+ Processing by Rails::WelcomeController#index as HTML
211
+ Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/railties-4.1.0/lib/rails/templates/rails/welcome/index.html.erb (6.1ms)
212
+ Completed 200 OK in 121ms (Views: 119.7ms | ActiveRecord: 0.0ms)
213
+
214
+
215
+ Started GET "/" for 10.0.2.2 at 2014-04-17 07:57:04 +0000
216
+ Processing by LeadsController#index as HTML
217
+ Lead Load (17.3ms) SELECT "leads".* FROM "leads"
218
+ User Load (8.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
219
+ Rendered /vagrant/engine/leads_to_highrise/app/views/leads/index.html.erb within layouts/application (619.4ms)
220
+ Completed 200 OK in 1547ms (Views: 1258.6ms | ActiveRecord: 71.4ms)
221
+
222
+
223
+ Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-04-17 07:57:08 +0000
224
+
225
+
226
+ Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-04-17 07:57:08 +0000
227
+ User Load (7.5ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 1
228
+  (0.5ms) begin transaction
229
+ SQL (15.2ms) UPDATE "users" SET "highrise_site" = ?, "highrise_user" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["highrise_site", "https://brunotripoloni.highrisehq.com"], ["highrise_user", "ac3c0c23c6333683a221dc75b70be717"], ["updated_at", "2014-04-17 07:59:53.614049"]]
230
+  (13.8ms) commit transaction
231
+
232
+
233
+ Started GET "/" for 10.0.2.2 at 2014-04-17 08:01:05 +0000
234
+ Processing by LeadsController#index as HTML
235
+ Lead Load (15.9ms) SELECT "leads".* FROM "leads"
236
+ User Load (6.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
237
+ Rendered /vagrant/engine/leads_to_highrise/app/views/leads/index.html.erb within layouts/application (33.2ms)
238
+ Completed 200 OK in 901ms (Views: 865.6ms | ActiveRecord: 22.6ms)
239
+
240
+
241
+ Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-04-17 08:01:07 +0000
242
+
243
+
244
+ Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-04-17 08:01:07 +0000
245
+
246
+
247
+ Started GET "/leads/1/to_highrise" for 10.0.2.2 at 2014-04-17 08:01:09 +0000
248
+ Processing by LeadsController#to_highrise as HTML
249
+ Parameters: {"id"=>"1"}
250
+ Lead Load (4.5ms) SELECT "leads".* FROM "leads" WHERE "leads"."id" = ? LIMIT 1 [["id", 1]]
251
+ Completed 500 Internal Server Error in 365ms
252
+
253
+ NameError (uninitialized constant LeadsController::Highrise):
254
+ /vagrant/engine/leads_to_highrise/app/controllers/leads_controller.rb:56:in `add_person'
255
+ /vagrant/engine/leads_to_highrise/app/controllers/leads_controller.rb:50:in `to_highrise'
256
+ actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
3735
257
  actionpack (4.1.0) lib/abstract_controller/base.rb:189:in `process_action'
3736
258
  actionpack (4.1.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
3737
259
  actionpack (4.1.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
3738
260
  activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
3739
261
  activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
3740
262
  activesupport (4.1.0) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
263
+ activesupport (4.1.0) lib/active_support/callbacks.rb:229:in `call'
264
+ activesupport (4.1.0) lib/active_support/callbacks.rb:229:in `block in halting'
265
+ activesupport (4.1.0) lib/active_support/callbacks.rb:166:in `call'
266
+ activesupport (4.1.0) lib/active_support/callbacks.rb:166:in `block in halting'
3741
267
  activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `call'
3742
268
  activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `run_callbacks'
3743
269
  actionpack (4.1.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
@@ -3761,85 +287,6 @@ ActionView::Template::Error (couldn't find file 'jquery_ujs'
3761
287
  actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
3762
288
  actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
3763
289
  actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
3764
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
3765
- railties (4.1.0) lib/rails/railtie.rb:194:in `public_send'
3766
- railties (4.1.0) lib/rails/railtie.rb:194:in `method_missing'
3767
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
3768
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
3769
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
3770
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
3771
- warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
3772
- warden (1.2.3) lib/warden/manager.rb:34:in `catch'
3773
- warden (1.2.3) lib/warden/manager.rb:34:in `call'
3774
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
3775
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
3776
- rack (1.5.2) lib/rack/head.rb:11:in `call'
3777
- actionpack (4.1.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
3778
- actionpack (4.1.0) lib/action_dispatch/middleware/flash.rb:254:in `call'
3779
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
3780
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
3781
- actionpack (4.1.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
3782
- activerecord (4.1.0) lib/active_record/query_cache.rb:36:in `call'
3783
- activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
3784
- activerecord (4.1.0) lib/active_record/migration.rb:380:in `call'
3785
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
3786
- activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
3787
- actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3788
- actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
3789
- actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
3790
- actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
3791
- actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3792
- railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
3793
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
3794
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
3795
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
3796
- activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
3797
- railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
3798
- actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3799
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3800
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3801
- activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
3802
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
3803
- actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
3804
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3805
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
3806
- railties (4.1.0) lib/rails/application.rb:144:in `call'
3807
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
3808
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3809
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3810
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
3811
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
3812
- /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
3813
-
3814
-
3815
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms)
3816
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms)
3817
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (49.7ms)
3818
-
3819
-
3820
- Started GET "/leads_to_highrise/leads" for 10.0.2.2 at 2014-04-16 19:42:55 +0000
3821
- ActiveRecord::SchemaMigration Load (24.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
3822
-
3823
- ActionController::RoutingError (uninitialized constant LeadsToHighrise::LeadsToHighrise):
3824
- activesupport (4.1.0) lib/active_support/inflector/methods.rb:253:in `const_get'
3825
- activesupport (4.1.0) lib/active_support/inflector/methods.rb:253:in `block in constantize'
3826
- activesupport (4.1.0) lib/active_support/inflector/methods.rb:236:in `each'
3827
- activesupport (4.1.0) lib/active_support/inflector/methods.rb:236:in `inject'
3828
- activesupport (4.1.0) lib/active_support/inflector/methods.rb:236:in `constantize'
3829
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
3830
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:66:in `controller'
3831
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:44:in `call'
3832
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
3833
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
3834
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
3835
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
3836
- railties (4.1.0) lib/rails/engine.rb:514:in `call'
3837
- railties (4.1.0) lib/rails/railtie.rb:194:in `public_send'
3838
- railties (4.1.0) lib/rails/railtie.rb:194:in `method_missing'
3839
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
3840
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
3841
- actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
3842
- actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
3843
290
  warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
3844
291
  warden (1.2.3) lib/warden/manager.rb:34:in `catch'
3845
292
  warden (1.2.3) lib/warden/manager.rb:34:in `call'
@@ -3884,156 +331,66 @@ ActionController::RoutingError (uninitialized constant LeadsToHighrise::LeadsToH
3884
331
  /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
3885
332
 
3886
333
 
3887
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.3ms)
3888
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.3ms)
3889
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms)
3890
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (349.1ms)
3891
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (786.1ms)
3892
-
3893
-
3894
- Started GET "/leads_to_highrise/leads" for 10.0.2.2 at 2014-04-16 19:44:03 +0000
3895
- Processing by LeadsToHighrise::LeadsController#index as HTML
3896
- LeadsToHighrise::Lead Load (41.3ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads"
3897
- User Load (7.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
3898
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/index.html.erb within layouts/leads_to_highrise/application (656.0ms)
3899
- Completed 200 OK in 2109ms (Views: 1825.1ms | ActiveRecord: 67.4ms)
3900
-
3901
-
3902
- Started GET "/assets/leads_to_highrise/leads.css?body=1" for 10.0.2.2 at 2014-04-16 19:44:10 +0000
3903
-
3904
-
3905
- Started GET "/assets/leads_to_highrise/leads.js?body=1" for 10.0.2.2 at 2014-04-16 19:44:10 +0000
3906
-
3907
-
3908
- Started GET "/assets/leads_to_highrise/application.css?body=1" for 10.0.2.2 at 2014-04-16 19:44:11 +0000
3909
-
3910
-
3911
- Started GET "/assets/leads_to_highrise/application.js?body=1" for 10.0.2.2 at 2014-04-16 19:44:12 +0000
3912
-
3913
-
3914
- Started GET "/leads_to_highrise/leads/3" for 10.0.2.2 at 2014-04-16 19:44:15 +0000
3915
- Processing by LeadsToHighrise::LeadsController#show as HTML
3916
- Parameters: {"id"=>"3"}
3917
- LeadsToHighrise::Lead Load (13.4ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads" WHERE "leads_to_highrise_leads"."id" = ? LIMIT 1 [["id", 3]]
3918
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/show.html.erb within layouts/leads_to_highrise/application (22.9ms)
3919
- Completed 200 OK in 798ms (Views: 775.0ms | ActiveRecord: 13.4ms)
3920
-
3921
-
3922
- Started GET "/assets/leads_to_highrise/leads.css?body=1" for 10.0.2.2 at 2014-04-16 19:44:17 +0000
3923
-
3924
-
3925
- Started GET "/assets/leads_to_highrise/application.css?body=1" for 10.0.2.2 at 2014-04-16 19:44:17 +0000
3926
-
3927
-
3928
- Started GET "/assets/leads_to_highrise/leads.js?body=1" for 10.0.2.2 at 2014-04-16 19:44:18 +0000
3929
-
334
+ Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.1ms)
335
+ Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (15.9ms)
336
+ Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (20.3ms)
337
+ Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (277.1ms)
3930
338
 
3931
- Started GET "/assets/leads_to_highrise/application.js?body=1" for 10.0.2.2 at 2014-04-16 19:44:18 +0000
3932
339
 
3933
-
3934
- Started GET "/leads_to_highrise/leads" for 10.0.2.2 at 2014-04-16 19:45:13 +0000
3935
- Processing by LeadsToHighrise::LeadsController#index as HTML
3936
- LeadsToHighrise::Lead Load (39.4ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads"
3937
- User Load (38.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
3938
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/index.html.erb within layouts/leads_to_highrise/application (150.1ms)
3939
- Completed 200 OK in 1242ms (Views: 1162.3ms | ActiveRecord: 78.2ms)
3940
-
3941
-
3942
- Started GET "/assets/leads_to_highrise/leads.css?body=1" for 10.0.2.2 at 2014-04-16 19:45:14 +0000
3943
-
3944
-
3945
- Started GET "/assets/leads_to_highrise/application.js?body=1" for 10.0.2.2 at 2014-04-16 19:45:15 +0000
3946
-
3947
-
3948
- Started GET "/assets/leads_to_highrise/leads.js?body=1" for 10.0.2.2 at 2014-04-16 19:45:15 +0000
3949
-
3950
-
3951
- Started GET "/assets/leads_to_highrise/application.css?body=1" for 10.0.2.2 at 2014-04-16 19:45:16 +0000
3952
-
3953
-
3954
- Started GET "/leads_to_highrise/leads/3" for 10.0.2.2 at 2014-04-16 19:45:34 +0000
3955
- Processing by LeadsToHighrise::LeadsController#show as HTML
3956
- Parameters: {"id"=>"3"}
3957
- LeadsToHighrise::Lead Load (6.2ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads" WHERE "leads_to_highrise_leads"."id" = ? LIMIT 1 [["id", 3]]
3958
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/show.html.erb within layouts/leads_to_highrise/application (3.7ms)
3959
- Completed 200 OK in 794ms (Views: 772.9ms | ActiveRecord: 6.2ms)
3960
-
3961
-
3962
- Started GET "/assets/leads_to_highrise/leads.css?body=1" for 10.0.2.2 at 2014-04-16 19:45:35 +0000
3963
-
3964
-
3965
- Started GET "/assets/leads_to_highrise/leads.js?body=1" for 10.0.2.2 at 2014-04-16 19:45:35 +0000
3966
-
3967
-
3968
- Started GET "/assets/leads_to_highrise/application.css?body=1" for 10.0.2.2 at 2014-04-16 19:45:36 +0000
3969
-
3970
-
3971
- Started GET "/assets/leads_to_highrise/application.js?body=1" for 10.0.2.2 at 2014-04-16 19:45:36 +0000
3972
-
3973
-
3974
- Started GET "/leads_to_highrise/leads" for 10.0.2.2 at 2014-04-16 19:47:18 +0000
3975
- Processing by LeadsToHighrise::LeadsController#index as HTML
3976
- LeadsToHighrise::Lead Load (112.0ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads"
3977
- User Load (10.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
3978
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/index.html.erb within layouts/leads_to_highrise/application (284.0ms)
3979
- Completed 200 OK in 1340ms (Views: 980.8ms | ActiveRecord: 133.2ms)
3980
-
3981
-
3982
- Started GET "/assets/leads_to_highrise/leads.css?body=1" for 10.0.2.2 at 2014-04-16 19:47:21 +0000
3983
-
3984
-
3985
- Started GET "/assets/leads_to_highrise/leads.js?body=1" for 10.0.2.2 at 2014-04-16 19:47:22 +0000
3986
-
3987
-
3988
- Started GET "/assets/leads_to_highrise/application.css?body=1" for 10.0.2.2 at 2014-04-16 19:47:22 +0000
3989
-
3990
-
3991
- Started GET "/assets/leads_to_highrise/application.js?body=1" for 10.0.2.2 at 2014-04-16 19:47:23 +0000
3992
-
3993
-
3994
- Started GET "/leads_to_highrise/leads/3" for 10.0.2.2 at 2014-04-16 19:47:28 +0000
3995
- Processing by LeadsToHighrise::LeadsController#show as HTML
3996
- Parameters: {"id"=>"3"}
3997
- LeadsToHighrise::Lead Load (13.2ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads" WHERE "leads_to_highrise_leads"."id" = ? LIMIT 1 [["id", 3]]
3998
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/show.html.erb within layouts/leads_to_highrise/application (8.7ms)
3999
- Completed 200 OK in 865ms (Views: 845.1ms | ActiveRecord: 13.2ms)
340
+ Started GET "/leads/1/to_highrise" for 10.0.2.2 at 2014-04-17 08:01:36 +0000
341
+ Processing by LeadsController#to_highrise as HTML
342
+ Parameters: {"id"=>"1"}
343
+ Lead Load (6.7ms) SELECT "leads".* FROM "leads" WHERE "leads"."id" = ? LIMIT 1 [["id", 1]]
344
+ User Load (19.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
345
+ Redirected to http://localhost:3000/
346
+ Completed 302 Found in 6068ms (ActiveRecord: 72.7ms)
4000
347
 
4001
348
 
4002
- Started GET "/assets/leads_to_highrise/leads.css?body=1" for 10.0.2.2 at 2014-04-16 19:47:29 +0000
349
+ Started GET "/" for 10.0.2.2 at 2014-04-17 08:01:48 +0000
350
+ Processing by LeadsController#index as HTML
351
+ Lead Load (40.8ms) SELECT "leads".* FROM "leads"
352
+ User Load (5.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
353
+ Rendered /vagrant/engine/leads_to_highrise/app/views/leads/index.html.erb within layouts/application (221.4ms)
354
+ Completed 200 OK in 835ms (Views: 787.7ms | ActiveRecord: 46.6ms)
4003
355
 
4004
356
 
4005
- Started GET "/assets/leads_to_highrise/application.js?body=1" for 10.0.2.2 at 2014-04-16 19:47:30 +0000
357
+ Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-04-17 08:01:49 +0000
4006
358
 
4007
359
 
4008
- Started GET "/assets/leads_to_highrise/leads.js?body=1" for 10.0.2.2 at 2014-04-16 19:47:30 +0000
360
+ Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-04-17 08:01:49 +0000
4009
361
 
4010
362
 
4011
- Started GET "/assets/leads_to_highrise/application.css?body=1" for 10.0.2.2 at 2014-04-16 19:47:31 +0000
363
+ Started GET "/leads/1" for 10.0.2.2 at 2014-04-17 08:02:46 +0000
364
+ Processing by LeadsController#show as HTML
365
+ Parameters: {"id"=>"1"}
366
+ Lead Load (20.3ms) SELECT "leads".* FROM "leads" WHERE "leads"."id" = ? LIMIT 1 [["id", 1]]
367
+ Rendered /vagrant/engine/leads_to_highrise/app/views/leads/show.html.erb within layouts/application (6.2ms)
368
+ Completed 200 OK in 847ms (Views: 795.2ms | ActiveRecord: 20.3ms)
4012
369
 
4013
370
 
4014
- Started GET "/leads_to_highrise/leads" for 10.0.2.2 at 2014-04-16 19:48:04 +0000
4015
- Processing by LeadsToHighrise::LeadsController#index as HTML
4016
- LeadsToHighrise::Lead Load (18.6ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads"
4017
- User Load (5.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
4018
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/index.html.erb within layouts/leads_to_highrise/application (172.2ms)
4019
- Completed 200 OK in 1382ms (Views: 1129.2ms | ActiveRecord: 40.0ms)
371
+ Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-04-17 08:02:47 +0000
4020
372
 
4021
373
 
4022
- Started GET "/assets/leads_to_highrise/leads.css?body=1" for 10.0.2.2 at 2014-04-16 19:48:08 +0000
374
+ Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-04-17 08:02:48 +0000
4023
375
 
4024
376
 
4025
- Started GET "/assets/leads_to_highrise/leads.js?body=1" for 10.0.2.2 at 2014-04-16 19:48:08 +0000
377
+ Started GET "/" for 10.0.2.2 at 2014-04-17 08:18:56 +0000
378
+ Processing by LeadsController#index as HTML
379
+ Lead Load (13.3ms) SELECT "leads".* FROM "leads"
380
+ User Load (21.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
381
+ Rendered /vagrant/engine/leads_to_highrise/app/views/leads/index.html.erb within layouts/application (82.8ms)
382
+ Completed 200 OK in 861ms (Views: 825.3ms | ActiveRecord: 35.1ms)
4026
383
 
4027
384
 
4028
- Started GET "/assets/leads_to_highrise/application.css?body=1" for 10.0.2.2 at 2014-04-16 19:48:09 +0000
385
+ Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-04-17 08:18:58 +0000
4029
386
 
4030
387
 
4031
- Started GET "/assets/leads_to_highrise/application.js?body=1" for 10.0.2.2 at 2014-04-16 19:48:09 +0000
388
+ Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-04-17 08:18:59 +0000
4032
389
 
4033
390
 
4034
- Started GET "/leads_to_highrise/leads/3/delete" for 10.0.2.2 at 2014-04-16 19:48:14 +0000
391
+ Started GET "/xfrsg" for 10.0.2.2 at 2014-04-17 08:19:07 +0000
4035
392
 
4036
- ActionController::RoutingError (No route matches [GET] "/leads_to_highrise/leads/3/delete"):
393
+ ActionController::RoutingError (No route matches [GET] "/xfrsg"):
4037
394
  actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
4038
395
  actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
4039
396
  railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
@@ -4059,86 +416,21 @@ ActionController::RoutingError (No route matches [GET] "/leads_to_highrise/leads
4059
416
  /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
4060
417
 
4061
418
 
4062
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
4063
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.9ms)
4064
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms)
4065
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (18.3ms)
4066
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (698.4ms)
4067
-
4068
-
4069
- Started GET "/leads_to_highrise/leads/3/delete" for 10.0.2.2 at 2014-04-16 19:48:44 +0000
4070
- Processing by LeadsToHighrise::LeadsController#destroy as HTML
4071
- Parameters: {"id"=>"3"}
4072
- LeadsToHighrise::Lead Load (11.4ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads" WHERE "leads_to_highrise_leads"."id" = ? LIMIT 1 [["id", 3]]
4073
- CACHE (0.1ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads" WHERE "leads_to_highrise_leads"."id" = ? LIMIT 1 [["id", "3"]]
4074
-  (0.2ms) begin transaction
4075
- SQL (20.0ms) DELETE FROM "leads_to_highrise_leads" WHERE "leads_to_highrise_leads"."id" = ? [["id", 3]]
4076
-  (52.2ms) commit transaction
4077
- Redirected to http://localhost:3000/leads_to_highrise/leads
4078
- Completed 302 Found in 469ms (ActiveRecord: 135.4ms)
4079
-
4080
-
4081
- Started GET "/leads_to_highrise/leads" for 10.0.2.2 at 2014-04-16 19:48:47 +0000
4082
- Processing by LeadsToHighrise::LeadsController#index as HTML
4083
- LeadsToHighrise::Lead Load (37.3ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads"
4084
- User Load (5.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
4085
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/index.html.erb within layouts/leads_to_highrise/application (247.3ms)
4086
- Completed 200 OK in 1112ms (Views: 1049.6ms | ActiveRecord: 49.8ms)
4087
-
4088
-
4089
- Started GET "/assets/leads_to_highrise/leads.css?body=1" for 10.0.2.2 at 2014-04-16 19:48:49 +0000
4090
-
4091
-
4092
- Started GET "/assets/leads_to_highrise/application.js?body=1" for 10.0.2.2 at 2014-04-16 19:48:49 +0000
4093
-
4094
-
4095
- Started GET "/assets/leads_to_highrise/leads.js?body=1" for 10.0.2.2 at 2014-04-16 19:48:50 +0000
4096
-
4097
-
4098
- Started GET "/assets/leads_to_highrise/application.css?body=1" for 10.0.2.2 at 2014-04-16 19:48:50 +0000
4099
-
4100
-
4101
- Started GET "/users/edit" for 10.0.2.2 at 2014-04-16 19:55:11 +0000
4102
- Processing by Devise::RegistrationsController#edit as HTML
4103
- User Load (12.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
4104
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/devise-3.2.4/app/views/devise/registrations/edit.html.erb within layouts/application (301.5ms)
4105
- Completed 200 OK in 1249ms (Views: 1216.0ms | ActiveRecord: 12.0ms)
4106
-
4107
-
4108
- Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-04-16 19:55:13 +0000
4109
-
4110
-
4111
- Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-04-16 19:55:13 +0000
4112
-
4113
-
4114
- Started GET "/users/edit" for 10.0.2.2 at 2014-04-16 20:42:04 +0000
4115
- Processing by Devise::RegistrationsController#edit as HTML
4116
- User Load (6.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
4117
- Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/devise-3.2.4/app/views/devise/registrations/edit.html.erb within layouts/application (20.1ms)
4118
- Completed 200 OK in 796ms (Views: 652.6ms | ActiveRecord: 19.5ms)
4119
-
4120
-
4121
- Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-04-16 20:42:08 +0000
4122
-
4123
-
4124
- Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-04-16 20:42:08 +0000
4125
-
4126
-
4127
- Started GET "/leads_to_highrise/leads" for 10.0.2.2 at 2014-04-16 21:09:09 +0000
4128
- Processing by LeadsToHighrise::LeadsController#index as HTML
4129
- LeadsToHighrise::Lead Load (5.6ms) SELECT "leads_to_highrise_leads".* FROM "leads_to_highrise_leads"
4130
- User Load (6.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
4131
- Rendered /vagrant/leads_to_highrise/app/views/leads_to_highrise/leads/index.html.erb within layouts/leads_to_highrise/application (84.1ms)
4132
- Completed 200 OK in 952ms (Views: 762.3ms | ActiveRecord: 19.4ms)
4133
-
4134
-
4135
- Started GET "/assets/leads_to_highrise/application.js?body=1" for 10.0.2.2 at 2014-04-16 21:09:11 +0000
419
+ Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (11.6ms)
420
+ Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.3ms)
421
+ Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.6ms)
422
+ Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (181.9ms)
4136
423
 
4137
424
 
4138
- Started GET "/assets/leads_to_highrise/leads.js?body=1" for 10.0.2.2 at 2014-04-16 21:09:11 +0000
425
+ Started GET "/leads" for 10.0.2.2 at 2014-04-17 08:19:24 +0000
426
+ Processing by LeadsController#index as HTML
427
+ Lead Load (8.0ms) SELECT "leads".* FROM "leads"
428
+ User Load (16.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
429
+ Rendered /vagrant/engine/leads_to_highrise/app/views/leads/index.html.erb within layouts/application (52.5ms)
430
+ Completed 200 OK in 1035ms (Views: 1008.5ms | ActiveRecord: 24.7ms)
4139
431
 
4140
432
 
4141
- Started GET "/assets/leads_to_highrise/application.css?body=1" for 10.0.2.2 at 2014-04-16 21:09:12 +0000
433
+ Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-04-17 08:19:25 +0000
4142
434
 
4143
435
 
4144
- Started GET "/assets/leads_to_highrise/leads.css?body=1" for 10.0.2.2 at 2014-04-16 21:09:12 +0000
436
+ Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-04-17 08:19:26 +0000