leads_to_highrise 0.2.16 → 0.3.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- ZmZlYzA2MmFmOWIzOWM3ODNjMzYxZjZjMGIyYzg5YzI1ZGM1Nzk1MQ==
4
+ ZTVlZTExY2VlYzA1ZDMwYjk1YjMyYzRkYWViODNiNWM0MThhYTA2ZA==
5
5
  data.tar.gz: !binary |-
6
- ZTAwMjVmMDhhMjNiNTU0ZDkyYWM1OWNmMGE1NTYzNWQ5ODRlNDk5YQ==
6
+ MTEwMjFmNWZmNjVmZjdiNDU3OTkwNWEzZTM1ZmE2MzYzNTE3ZDBkMQ==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- N2JhNDFmMDY4ZThhZDlmN2U5NjlmNDM5NmNkYWRhNjY2ZDYxM2VhYzczNDY5
10
- ZDNkOWJlYmUzOTQ1NGZkOWNkYzQ1NDNjMDY2YjUzZmNiMjg3YzYyMjg2OGEy
11
- ODZkYTc0OTFiMWUyZGQ3M2MzZDQxNTgyN2M1YmZlNDQyODk0OTg=
9
+ NGVkYzZlNTAwZmQwMmIzMzJiNWM5OTA0YmY0MWI2ZTM5YWQ0Y2FmMWI2NmIz
10
+ ZGJhMWFmMzhiODk5ODczY2M5MzQzY2QyZmZjZmM1YTQ3ZjFlNGQ0YzYyMjY5
11
+ N2VmMjg5MDIzYzU0YTEwYzZlNTY4ZjYzNjRlYzU2N2FlMjc5NGM=
12
12
  data.tar.gz: !binary |-
13
- ZWE4NGZlZGI4Y2QyMjIyNjYxMzU1NGY0MjVkZDE2YTM2M2RhNzJiMzQ0YTg5
14
- NWJjZTFlYzM0ODk5N2U1MDg2YzhlNWFmYWI0MmU5ZDlhYjFkMjZlNjg4MDYw
15
- MDU0MzE1ZTM2OGRlZWE4MTcxYzgzZmVkN2E3Mzc3MzQ4OWRkZjY=
13
+ NTFhYjY1ZjMxZDU3YjVjMjNkNDBmY2M3YTBkODY1MjgxNjRhZjQ2ZGY0N2Zk
14
+ MzRhNmEyNDZhZGUwODI0MTA5NjIxN2I5ZDM5N2YwOTliYWNlMWEyNDJhNDQz
15
+ MDMzZmFjZmI5NjI0ZjU3NGQyOWI1ZmMyNjFiMTI3YzhiNzg2ZjI=
@@ -1,10 +1,14 @@
1
1
  require 'highrise'
2
2
  class LeadsController < ApplicationController
3
3
  before_action :set_lead, only: [:show, :edit, :update, :destroy]
4
+ #self.view_paths = leads_to_highrise.paths["app/views"].existent + MyApp::Application.paths["app/views"].existent
5
+ #puts self.view_paths
6
+ config.railties_order = [LeadsToHighrise::Engine, :main_app, :all]
7
+
4
8
 
5
9
  # GET /leads
6
10
  def index
7
- @leads = Lead.all
11
+ @leads = Lead.all.paginate(page: params[:page], per_page: 10)
8
12
  end
9
13
 
10
14
  # GET /leads/1
@@ -36,3 +36,5 @@
36
36
  <br>
37
37
 
38
38
  <%= link_to 'New Lead', new_lead_path %>
39
+
40
+ <%= will_paginate @leads %>
@@ -1,4 +1,6 @@
1
1
  require 'devise'
2
+ require 'will_paginate'
3
+
2
4
  module LeadsToHighrise
3
5
  class Engine < ::Rails::Engine
4
6
  end
@@ -1,3 +1,3 @@
1
1
  module LeadsToHighrise
2
- VERSION = "0.2.16"
2
+ VERSION = "0.3.17"
3
3
  end
@@ -0,0 +1,40 @@
1
+ <h1>Listing leads</h1>
2
+
3
+ <table>
4
+ <thead>
5
+ <tr>
6
+ <th>Name</th>
7
+ <th>Last name</th>
8
+ <th>Email</th>
9
+ <th>Company</th>
10
+ <th>Job title</th>
11
+ <th>Phone</th>
12
+ <th>Website</th>
13
+ <th colspan="4"></th>
14
+ </tr>
15
+ </thead>
16
+
17
+ <tbody>
18
+ <% @leads.each do |lead| %>
19
+ <tr>
20
+ <td><%= lead.name %></td>
21
+ <td><%= lead.last_name %></td>
22
+ <td><%= lead.email %></td>
23
+ <td><%= lead.company %></td>
24
+ <td><%= lead.job_title %></td>
25
+ <td><%= lead.phone %></td>
26
+ <td><%= lead.website %></td>
27
+ <td><%= link_to 'Show', lead %></td>
28
+ <td><%= link_to 'Edit', edit_lead_path(lead) %></td>
29
+ <td><%= link_to 'Destroy', lead, method: :delete, data: { confirm: 'Are you sure?' } %></td>
30
+ <td><%= link_to 'Send to Highrise', to_highrise_path(lead) if user_signed_in? %></td>
31
+ </tr>
32
+ <% end %>
33
+ </tbody>
34
+ </table>
35
+
36
+ <br>
37
+
38
+ <%= link_to 'New Lead', new_lead_path %>
39
+
40
+ <%= will_paginate @leads %>
Binary file
@@ -2502,3 +2502,1303 @@ Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-04-17 23:09:15
2502
2502
 
2503
2503
 
2504
2504
  Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-04-17 23:09:15 +0000
2505
+
2506
+
2507
+ Started GET "/" for 10.0.2.2 at 2014-04-21 03:58:05 +0000
2508
+ ActiveRecord::SchemaMigration Load (24.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
2509
+ Processing by LeadsController#index as HTML
2510
+ Completed 500 Internal Server Error in 163ms
2511
+
2512
+ ArgumentError (wrong number of arguments (0 for 1)):
2513
+ will_paginate (3.0.5) lib/will_paginate/active_record.rb:144:in `paginate'
2514
+ /vagrant/engine/leads_to_highrise/app/controllers/leads_controller.rb:7:in `index'
2515
+ actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
2516
+ actionpack (4.1.0) lib/abstract_controller/base.rb:189:in `process_action'
2517
+ actionpack (4.1.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
2518
+ actionpack (4.1.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
2519
+ activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
2520
+ activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
2521
+ activesupport (4.1.0) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
2522
+ activesupport (4.1.0) lib/active_support/callbacks.rb:229:in `call'
2523
+ activesupport (4.1.0) lib/active_support/callbacks.rb:229:in `block in halting'
2524
+ activesupport (4.1.0) lib/active_support/callbacks.rb:166:in `call'
2525
+ activesupport (4.1.0) lib/active_support/callbacks.rb:166:in `block in halting'
2526
+ activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `call'
2527
+ activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `run_callbacks'
2528
+ actionpack (4.1.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
2529
+ actionpack (4.1.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
2530
+ actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
2531
+ activesupport (4.1.0) lib/active_support/notifications.rb:159:in `block in instrument'
2532
+ activesupport (4.1.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2533
+ activesupport (4.1.0) lib/active_support/notifications.rb:159:in `instrument'
2534
+ actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
2535
+ actionpack (4.1.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
2536
+ activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2537
+ actionpack (4.1.0) lib/abstract_controller/base.rb:136:in `process'
2538
+ actionview (4.1.0) lib/action_view/rendering.rb:30:in `process'
2539
+ actionpack (4.1.0) lib/action_controller/metal.rb:195:in `dispatch'
2540
+ actionpack (4.1.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
2541
+ actionpack (4.1.0) lib/action_controller/metal.rb:231:in `block in action'
2542
+ actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
2543
+ actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
2544
+ actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
2545
+ actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
2546
+ actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
2547
+ actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
2548
+ actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
2549
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
2550
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
2551
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
2552
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
2553
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
2554
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
2555
+ actionpack (4.1.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
2556
+ actionpack (4.1.0) lib/action_dispatch/middleware/flash.rb:254:in `call'
2557
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
2558
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
2559
+ actionpack (4.1.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
2560
+ activerecord (4.1.0) lib/active_record/query_cache.rb:36:in `call'
2561
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
2562
+ activerecord (4.1.0) lib/active_record/migration.rb:380:in `call'
2563
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
2564
+ activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
2565
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2566
+ actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
2567
+ actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
2568
+ actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2569
+ actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2570
+ railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
2571
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
2572
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2573
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
2574
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
2575
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
2576
+ actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2577
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2578
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2579
+ activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
2580
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2581
+ actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
2582
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2583
+ railties (4.1.0) lib/rails/engine.rb:514:in `call'
2584
+ railties (4.1.0) lib/rails/application.rb:144:in `call'
2585
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2586
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2587
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2588
+ /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2589
+ /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2590
+ /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2591
+
2592
+
2593
+ Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.6ms)
2594
+ Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (9.2ms)
2595
+ 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 (217.7ms)
2596
+ 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 (462.4ms)
2597
+
2598
+
2599
+ Started GET "/" for 10.0.2.2 at 2014-04-21 04:00:06 +0000
2600
+ Processing by LeadsController#index as HTML
2601
+ Lead Load (24.1ms) SELECT "leads".* FROM "leads" LIMIT 10 OFFSET 0
2602
+ User Load (6.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
2603
+ Rendered /vagrant/engine/leads_to_highrise/app/views/leads/index.html.erb within layouts/application (1090.8ms)
2604
+ Completed 500 Internal Server Error in 1653ms
2605
+
2606
+ ActionView::Template::Error (undefined local variable or method `lead' for #<#<Class:0x9c83260>:0x9c82be4>):
2607
+ 37:
2608
+ 38: <%= link_to 'New Lead', new_lead_path %>
2609
+ 39:
2610
+ 40: <%= will_paginate lead %>
2611
+ /vagrant/engine/leads_to_highrise/app/views/leads/index.html.erb:40:in `__vagrant_engine_leads_to_highrise_app_views_leads_index_html_erb__749266883_75086520'
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:229:in `call'
2652
+ activesupport (4.1.0) lib/active_support/callbacks.rb:229:in `block in halting'
2653
+ activesupport (4.1.0) lib/active_support/callbacks.rb:166:in `call'
2654
+ activesupport (4.1.0) lib/active_support/callbacks.rb:166:in `block in halting'
2655
+ activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `call'
2656
+ activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `run_callbacks'
2657
+ actionpack (4.1.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
2658
+ actionpack (4.1.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
2659
+ actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
2660
+ activesupport (4.1.0) lib/active_support/notifications.rb:159:in `block in instrument'
2661
+ activesupport (4.1.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2662
+ activesupport (4.1.0) lib/active_support/notifications.rb:159:in `instrument'
2663
+ actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
2664
+ actionpack (4.1.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
2665
+ activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2666
+ actionpack (4.1.0) lib/abstract_controller/base.rb:136:in `process'
2667
+ actionview (4.1.0) lib/action_view/rendering.rb:30:in `process'
2668
+ actionpack (4.1.0) lib/action_controller/metal.rb:195:in `dispatch'
2669
+ actionpack (4.1.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
2670
+ actionpack (4.1.0) lib/action_controller/metal.rb:231:in `block in action'
2671
+ actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
2672
+ actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
2673
+ actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
2674
+ actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
2675
+ actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
2676
+ actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
2677
+ actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
2678
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
2679
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
2680
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
2681
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
2682
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
2683
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
2684
+ actionpack (4.1.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
2685
+ actionpack (4.1.0) lib/action_dispatch/middleware/flash.rb:254:in `call'
2686
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
2687
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
2688
+ actionpack (4.1.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
2689
+ activerecord (4.1.0) lib/active_record/query_cache.rb:36:in `call'
2690
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
2691
+ activerecord (4.1.0) lib/active_record/migration.rb:380:in `call'
2692
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
2693
+ activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
2694
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2695
+ actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
2696
+ actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
2697
+ actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2698
+ actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2699
+ railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
2700
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
2701
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2702
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
2703
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
2704
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
2705
+ actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2706
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2707
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2708
+ activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
2709
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2710
+ actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
2711
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2712
+ railties (4.1.0) lib/rails/engine.rb:514:in `call'
2713
+ railties (4.1.0) lib/rails/application.rb:144:in `call'
2714
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2715
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2716
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2717
+ /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2718
+ /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2719
+ /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2720
+
2721
+
2722
+ 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)
2723
+ 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.1ms)
2724
+ 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 (34.1ms)
2725
+
2726
+
2727
+ Started GET "/" for 10.0.2.2 at 2014-04-21 04:02:12 +0000
2728
+ Processing by LeadsController#index as HTML
2729
+ Lead Load (10.1ms) SELECT "leads".* FROM "leads" LIMIT 10 OFFSET 0
2730
+ User Load (10.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
2731
+ Rendered /vagrant/engine/leads_to_highrise/app/views/leads/index.html.erb within layouts/application (35.7ms)
2732
+ Completed 200 OK in 625ms (Views: 602.5ms | ActiveRecord: 20.1ms)
2733
+
2734
+
2735
+ Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-04-21 04:02:13 +0000
2736
+
2737
+
2738
+ Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-04-21 04:02:13 +0000
2739
+
2740
+
2741
+ Started GET "/leads/new" for 10.0.2.2 at 2014-04-21 04:02:19 +0000
2742
+ Processing by LeadsController#new as HTML
2743
+ Rendered /vagrant/engine/leads_to_highrise/app/views/leads/_form.html.erb (262.0ms)
2744
+ Rendered /vagrant/engine/leads_to_highrise/app/views/leads/new.html.erb within layouts/application (520.8ms)
2745
+ Completed 200 OK in 970ms (Views: 969.0ms | ActiveRecord: 0.0ms)
2746
+
2747
+
2748
+ Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-04-21 04:02:20 +0000
2749
+
2750
+
2751
+ Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-04-21 04:02:21 +0000
2752
+
2753
+
2754
+ Started POST "/leads" for 10.0.2.2 at 2014-04-21 04:02:27 +0000
2755
+ Processing by LeadsController#create as HTML
2756
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"h7Hg4BJhz4hBTU1oDxw7PGmnVkKc9VDDskwoZAPV/xs=", "lead"=>{"name"=>"asda", "last_name"=>"sdasd", "email"=>"asda", "company"=>"dasd", "job_title"=>"adasd", "phone"=>"asda", "website"=>"dasd"}, "commit"=>"Create Lead"}
2757
+  (0.2ms) begin transaction
2758
+ SQL (27.6ms) INSERT INTO "leads" ("company", "created_at", "email", "job_title", "last_name", "name", "phone", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["company", "dasd"], ["created_at", "2014-04-21 04:02:28.166402"], ["email", "asda"], ["job_title", "adasd"], ["last_name", "sdasd"], ["name", "asda"], ["phone", "asda"], ["updated_at", "2014-04-21 04:02:28.166402"], ["website", "dasd"]]
2759
+  (15.5ms) commit transaction
2760
+ Redirected to http://localhost:3000/leads/2
2761
+ Completed 302 Found in 136ms (ActiveRecord: 43.3ms)
2762
+
2763
+
2764
+ Started GET "/leads/2" for 10.0.2.2 at 2014-04-21 04:02:28 +0000
2765
+ Processing by LeadsController#show as HTML
2766
+ Parameters: {"id"=>"2"}
2767
+ Lead Load (16.9ms) SELECT "leads".* FROM "leads" WHERE "leads"."id" = ? LIMIT 1 [["id", 2]]
2768
+ Rendered /vagrant/engine/leads_to_highrise/app/views/leads/show.html.erb within layouts/application (2.4ms)
2769
+ Completed 200 OK in 536ms (Views: 515.0ms | ActiveRecord: 16.9ms)
2770
+
2771
+
2772
+ Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-04-21 04:02:29 +0000
2773
+
2774
+
2775
+ Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-04-21 04:02:29 +0000
2776
+
2777
+
2778
+ Started GET "/leads" for 10.0.2.2 at 2014-04-21 04:02:34 +0000
2779
+ Processing by LeadsController#index as HTML
2780
+ Lead Load (6.5ms) SELECT "leads".* FROM "leads" LIMIT 10 OFFSET 0
2781
+ User Load (12.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
2782
+ Rendered /vagrant/engine/leads_to_highrise/app/views/leads/index.html.erb within layouts/application (30.3ms)
2783
+ Completed 200 OK in 511ms (Views: 490.4ms | ActiveRecord: 19.3ms)
2784
+
2785
+
2786
+ Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-04-21 04:02:35 +0000
2787
+
2788
+
2789
+ Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-04-21 04:02:36 +0000
2790
+
2791
+
2792
+ Started GET "/leads/new" for 10.0.2.2 at 2014-04-21 04:02:37 +0000
2793
+ Processing by LeadsController#new as HTML
2794
+ Rendered /vagrant/engine/leads_to_highrise/app/views/leads/_form.html.erb (9.6ms)
2795
+ Rendered /vagrant/engine/leads_to_highrise/app/views/leads/new.html.erb within layouts/application (153.3ms)
2796
+ Completed 200 OK in 622ms (Views: 620.7ms | ActiveRecord: 0.0ms)
2797
+
2798
+
2799
+ Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-04-21 04:02:38 +0000
2800
+
2801
+
2802
+ Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-04-21 04:02:38 +0000
2803
+
2804
+
2805
+ Started POST "/leads" for 10.0.2.2 at 2014-04-21 04:02:45 +0000
2806
+ Processing by LeadsController#create as HTML
2807
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"h7Hg4BJhz4hBTU1oDxw7PGmnVkKc9VDDskwoZAPV/xs=", "lead"=>{"name"=>"asda", "last_name"=>"asda", "email"=>"asda", "company"=>"sada", "job_title"=>"sads", "phone"=>"asdas", "website"=>"asda"}, "commit"=>"Create Lead"}
2808
+  (0.2ms) begin transaction
2809
+ SQL (35.1ms) INSERT INTO "leads" ("company", "created_at", "email", "job_title", "last_name", "name", "phone", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["company", "sada"], ["created_at", "2014-04-21 04:02:45.678519"], ["email", "asda"], ["job_title", "sads"], ["last_name", "asda"], ["name", "asda"], ["phone", "asdas"], ["updated_at", "2014-04-21 04:02:45.678519"], ["website", "asda"]]
2810
+  (21.8ms) commit transaction
2811
+ Redirected to http://localhost:3000/leads/3
2812
+ Completed 302 Found in 104ms (ActiveRecord: 57.1ms)
2813
+
2814
+
2815
+ Started GET "/leads/3" for 10.0.2.2 at 2014-04-21 04:02:45 +0000
2816
+ Processing by LeadsController#show as HTML
2817
+ Parameters: {"id"=>"3"}
2818
+ Lead Load (15.0ms) SELECT "leads".* FROM "leads" WHERE "leads"."id" = ? LIMIT 1 [["id", 3]]
2819
+ Rendered /vagrant/engine/leads_to_highrise/app/views/leads/show.html.erb within layouts/application (1.3ms)
2820
+ Completed 200 OK in 791ms (Views: 772.1ms | ActiveRecord: 15.0ms)
2821
+
2822
+
2823
+ Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-04-21 04:02:47 +0000
2824
+
2825
+
2826
+ Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-04-21 04:02:47 +0000
2827
+
2828
+
2829
+ Started GET "/leads" for 10.0.2.2 at 2014-04-21 04:02:55 +0000
2830
+ Processing by LeadsController#index as HTML
2831
+ Lead Load (11.7ms) SELECT "leads".* FROM "leads" LIMIT 10 OFFSET 0
2832
+ User Load (7.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
2833
+ Rendered /vagrant/engine/leads_to_highrise/app/views/leads/index.html.erb within layouts/application (35.6ms)
2834
+ Completed 200 OK in 557ms (Views: 537.4ms | ActiveRecord: 19.1ms)
2835
+
2836
+
2837
+ Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-04-21 04:02:55 +0000
2838
+
2839
+
2840
+ Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-04-21 04:02:56 +0000
2841
+
2842
+
2843
+ Started GET "/leads/new" for 10.0.2.2 at 2014-04-21 04:02:57 +0000
2844
+ Processing by LeadsController#new as HTML
2845
+ Rendered /vagrant/engine/leads_to_highrise/app/views/leads/_form.html.erb (15.1ms)
2846
+ Rendered /vagrant/engine/leads_to_highrise/app/views/leads/new.html.erb within layouts/application (159.1ms)
2847
+ Completed 200 OK in 601ms (Views: 600.2ms | ActiveRecord: 0.0ms)
2848
+
2849
+
2850
+ Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-04-21 04:02:58 +0000
2851
+
2852
+
2853
+ Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-04-21 04:02:59 +0000
2854
+
2855
+
2856
+ Started POST "/leads" for 10.0.2.2 at 2014-04-21 04:03:06 +0000
2857
+ Processing by LeadsController#create as HTML
2858
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"h7Hg4BJhz4hBTU1oDxw7PGmnVkKc9VDDskwoZAPV/xs=", "lead"=>{"name"=>"asda", "last_name"=>"asda", "email"=>"asda", "company"=>"asda", "job_title"=>"asda", "phone"=>"asdas", "website"=>"asda"}, "commit"=>"Create Lead"}
2859
+  (0.4ms) begin transaction
2860
+ SQL (20.9ms) INSERT INTO "leads" ("company", "created_at", "email", "job_title", "last_name", "name", "phone", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["company", "asda"], ["created_at", "2014-04-21 04:03:06.841450"], ["email", "asda"], ["job_title", "asda"], ["last_name", "asda"], ["name", "asda"], ["phone", "asdas"], ["updated_at", "2014-04-21 04:03:06.841450"], ["website", "asda"]]
2861
+  (17.9ms) commit transaction
2862
+ Redirected to http://localhost:3000/leads/4
2863
+ Completed 302 Found in 66ms (ActiveRecord: 39.3ms)
2864
+
2865
+
2866
+ Started GET "/leads/4" for 10.0.2.2 at 2014-04-21 04:03:06 +0000
2867
+ Processing by LeadsController#show as HTML
2868
+ Parameters: {"id"=>"4"}
2869
+ Lead Load (14.7ms) SELECT "leads".* FROM "leads" WHERE "leads"."id" = ? LIMIT 1 [["id", 4]]
2870
+ Rendered /vagrant/engine/leads_to_highrise/app/views/leads/show.html.erb within layouts/application (0.8ms)
2871
+ Completed 200 OK in 614ms (Views: 593.3ms | ActiveRecord: 14.7ms)
2872
+
2873
+
2874
+ Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-04-21 04:03:08 +0000
2875
+
2876
+
2877
+ Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-04-21 04:03:08 +0000
2878
+
2879
+
2880
+ Started GET "/leads" for 10.0.2.2 at 2014-04-21 04:03:24 +0000
2881
+ Processing by LeadsController#index as HTML
2882
+ Lead Load (4.5ms) SELECT "leads".* FROM "leads" LIMIT 10 OFFSET 0
2883
+ User Load (5.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
2884
+ Rendered /vagrant/engine/leads_to_highrise/app/views/leads/index.html.erb within layouts/application (40.5ms)
2885
+ Completed 200 OK in 466ms (Views: 453.8ms | ActiveRecord: 10.3ms)
2886
+
2887
+
2888
+ Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-04-21 04:03:25 +0000
2889
+
2890
+
2891
+ Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-04-21 04:03:25 +0000
2892
+
2893
+
2894
+ Started GET "/leads/new" for 10.0.2.2 at 2014-04-21 04:03:27 +0000
2895
+ Processing by LeadsController#new as HTML
2896
+ Rendered /vagrant/engine/leads_to_highrise/app/views/leads/_form.html.erb (12.4ms)
2897
+ Rendered /vagrant/engine/leads_to_highrise/app/views/leads/new.html.erb within layouts/application (144.1ms)
2898
+ Completed 200 OK in 595ms (Views: 593.6ms | ActiveRecord: 0.0ms)
2899
+
2900
+
2901
+ Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-04-21 04:03:28 +0000
2902
+
2903
+
2904
+ Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-04-21 04:03:29 +0000
2905
+
2906
+
2907
+ Started POST "/leads" for 10.0.2.2 at 2014-04-21 04:03:39 +0000
2908
+ Processing by LeadsController#create as HTML
2909
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"h7Hg4BJhz4hBTU1oDxw7PGmnVkKc9VDDskwoZAPV/xs=", "lead"=>{"name"=>"asda", "last_name"=>"asda", "email"=>"asdaa", "company"=>"asda", "job_title"=>"asda", "phone"=>"asdas", "website"=>"asda"}, "commit"=>"Create Lead"}
2910
+  (0.3ms) begin transaction
2911
+ SQL (27.6ms) INSERT INTO "leads" ("company", "created_at", "email", "job_title", "last_name", "name", "phone", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["company", "asda"], ["created_at", "2014-04-21 04:03:40.001972"], ["email", "asdaa"], ["job_title", "asda"], ["last_name", "asda"], ["name", "asda"], ["phone", "asdas"], ["updated_at", "2014-04-21 04:03:40.001972"], ["website", "asda"]]
2912
+  (50.6ms) commit transaction
2913
+ Redirected to http://localhost:3000/leads/5
2914
+ Completed 302 Found in 126ms (ActiveRecord: 78.5ms)
2915
+
2916
+
2917
+ Started GET "/leads/5" for 10.0.2.2 at 2014-04-21 04:03:40 +0000
2918
+ Processing by LeadsController#show as HTML
2919
+ Parameters: {"id"=>"5"}
2920
+ Lead Load (12.7ms) SELECT "leads".* FROM "leads" WHERE "leads"."id" = ? LIMIT 1 [["id", 5]]
2921
+ Rendered /vagrant/engine/leads_to_highrise/app/views/leads/show.html.erb within layouts/application (1.7ms)
2922
+ Completed 200 OK in 700ms (Views: 682.0ms | ActiveRecord: 12.7ms)
2923
+
2924
+
2925
+ Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-04-21 04:03:41 +0000
2926
+
2927
+
2928
+ Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-04-21 04:03:41 +0000
2929
+
2930
+
2931
+ Started GET "/leads" for 10.0.2.2 at 2014-04-21 04:03:59 +0000
2932
+ Processing by LeadsController#index as HTML
2933
+ Lead Load (9.4ms) SELECT "leads".* FROM "leads" LIMIT 10 OFFSET 0
2934
+ User Load (7.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
2935
+ Rendered /vagrant/engine/leads_to_highrise/app/views/leads/index.html.erb within layouts/application (75.4ms)
2936
+ Completed 200 OK in 628ms (Views: 608.6ms | ActiveRecord: 17.3ms)
2937
+
2938
+
2939
+ Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-04-21 04:04:00 +0000
2940
+
2941
+
2942
+ Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-04-21 04:04:00 +0000
2943
+
2944
+
2945
+ Started GET "/leads/new" for 10.0.2.2 at 2014-04-21 04:04:02 +0000
2946
+ Processing by LeadsController#new as HTML
2947
+ Rendered /vagrant/engine/leads_to_highrise/app/views/leads/_form.html.erb (23.6ms)
2948
+ Rendered /vagrant/engine/leads_to_highrise/app/views/leads/new.html.erb within layouts/application (182.5ms)
2949
+ Completed 200 OK in 692ms (Views: 690.2ms | ActiveRecord: 0.0ms)
2950
+
2951
+
2952
+ Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-04-21 04:04:03 +0000
2953
+
2954
+
2955
+ Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-04-21 04:04:04 +0000
2956
+
2957
+
2958
+ Started POST "/leads" for 10.0.2.2 at 2014-04-21 04:04:22 +0000
2959
+ Processing by LeadsController#create as HTML
2960
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"h7Hg4BJhz4hBTU1oDxw7PGmnVkKc9VDDskwoZAPV/xs=", "lead"=>{"name"=>"asd", "last_name"=>"asd", "email"=>"asd", "company"=>"dasd", "job_title"=>"adasd", "phone"=>"asdas", "website"=>"asda"}, "commit"=>"Create Lead"}
2961
+  (0.3ms) begin transaction
2962
+ SQL (18.3ms) INSERT INTO "leads" ("company", "created_at", "email", "job_title", "last_name", "name", "phone", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["company", "dasd"], ["created_at", "2014-04-21 04:04:22.943436"], ["email", "asd"], ["job_title", "adasd"], ["last_name", "asd"], ["name", "asd"], ["phone", "asdas"], ["updated_at", "2014-04-21 04:04:22.943436"], ["website", "asda"]]
2963
+  (19.1ms) commit transaction
2964
+ Redirected to http://localhost:3000/leads/6
2965
+ Completed 302 Found in 72ms (ActiveRecord: 37.7ms)
2966
+
2967
+
2968
+ Started GET "/leads/6" for 10.0.2.2 at 2014-04-21 04:04:23 +0000
2969
+ Processing by LeadsController#show as HTML
2970
+ Parameters: {"id"=>"6"}
2971
+ Lead Load (15.7ms) SELECT "leads".* FROM "leads" WHERE "leads"."id" = ? LIMIT 1 [["id", 6]]
2972
+ Rendered /vagrant/engine/leads_to_highrise/app/views/leads/show.html.erb within layouts/application (0.9ms)
2973
+ Completed 200 OK in 491ms (Views: 468.0ms | ActiveRecord: 15.7ms)
2974
+
2975
+
2976
+ Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-04-21 04:04:24 +0000
2977
+
2978
+
2979
+ Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-04-21 04:04:24 +0000
2980
+
2981
+
2982
+ Started GET "/leads" for 10.0.2.2 at 2014-04-21 04:04:25 +0000
2983
+ Processing by LeadsController#index as HTML
2984
+ Lead Load (9.9ms) SELECT "leads".* FROM "leads" LIMIT 10 OFFSET 0
2985
+ User Load (4.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
2986
+ Rendered /vagrant/engine/leads_to_highrise/app/views/leads/index.html.erb within layouts/application (99.6ms)
2987
+ Completed 200 OK in 526ms (Views: 508.6ms | ActiveRecord: 14.2ms)
2988
+
2989
+
2990
+ Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-04-21 04:04:26 +0000
2991
+
2992
+
2993
+ Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-04-21 04:04:27 +0000
2994
+
2995
+
2996
+ Started GET "/leads" for 10.0.2.2 at 2014-04-21 04:04:40 +0000
2997
+ Processing by LeadsController#index as HTML
2998
+ Lead Load (39.3ms) SELECT "leads".* FROM "leads" LIMIT 3 OFFSET 0
2999
+  (7.1ms) SELECT COUNT(*) FROM "leads"
3000
+ User Load (14.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
3001
+ Rendered /vagrant/engine/leads_to_highrise/app/views/leads/index.html.erb within layouts/application (308.6ms)
3002
+ Completed 200 OK in 1122ms (Views: 858.8ms | ActiveRecord: 78.2ms)
3003
+
3004
+
3005
+ Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-04-21 04:04:43 +0000
3006
+
3007
+
3008
+ Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-04-21 04:04:43 +0000
3009
+
3010
+
3011
+ Started GET "/?page=2" for 10.0.2.2 at 2014-04-21 04:04:49 +0000
3012
+ Processing by LeadsController#index as HTML
3013
+ Parameters: {"page"=>"2"}
3014
+ Lead Load (7.6ms) SELECT "leads".* FROM "leads" LIMIT 3 OFFSET 3
3015
+  (7.2ms) SELECT COUNT(*) FROM "leads"
3016
+ User Load (11.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
3017
+ Rendered /vagrant/engine/leads_to_highrise/app/views/leads/index.html.erb within layouts/application (54.3ms)
3018
+ Completed 200 OK in 563ms (Views: 535.9ms | ActiveRecord: 26.0ms)
3019
+
3020
+
3021
+ Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-04-21 04:04:50 +0000
3022
+
3023
+
3024
+ Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-04-21 04:04:51 +0000
3025
+
3026
+
3027
+ Started GET "/?page=2" for 10.0.2.2 at 2014-04-21 04:48:45 +0000
3028
+ Processing by LeadsController#index as HTML
3029
+ Parameters: {"page"=>"2"}
3030
+ Completed 500 Internal Server Error in 297ms
3031
+
3032
+ ActionView::MissingTemplate (Missing template leads/index, application/index with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
3033
+ * "/vagrant/engine/leads_to_highrise/test/dummy/app/views"
3034
+ ):
3035
+ actionview (4.1.0) lib/action_view/path_set.rb:46:in `find'
3036
+ actionview (4.1.0) lib/action_view/lookup_context.rb:124:in `find'
3037
+ actionview (4.1.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
3038
+ actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:41:in `determine_template'
3039
+ actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:8:in `render'
3040
+ actionview (4.1.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
3041
+ actionview (4.1.0) lib/action_view/renderer/renderer.rb:23:in `render'
3042
+ actionview (4.1.0) lib/action_view/rendering.rb:99:in `_render_template'
3043
+ actionpack (4.1.0) lib/action_controller/metal/streaming.rb:217:in `_render_template'
3044
+ actionview (4.1.0) lib/action_view/rendering.rb:82:in `render_to_body'
3045
+ actionpack (4.1.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
3046
+ actionpack (4.1.0) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
3047
+ actionpack (4.1.0) lib/abstract_controller/rendering.rb:25:in `render'
3048
+ actionpack (4.1.0) lib/action_controller/metal/rendering.rb:16:in `render'
3049
+ actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
3050
+ activesupport (4.1.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
3051
+ /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
3052
+ activesupport (4.1.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
3053
+ actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
3054
+ actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
3055
+ activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
3056
+ actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
3057
+ actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
3058
+ actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
3059
+ actionpack (4.1.0) lib/abstract_controller/base.rb:189:in `process_action'
3060
+ actionpack (4.1.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
3061
+ actionpack (4.1.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
3062
+ activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
3063
+ activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
3064
+ activesupport (4.1.0) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
3065
+ activesupport (4.1.0) lib/active_support/callbacks.rb:229:in `call'
3066
+ activesupport (4.1.0) lib/active_support/callbacks.rb:229:in `block in halting'
3067
+ activesupport (4.1.0) lib/active_support/callbacks.rb:166:in `call'
3068
+ activesupport (4.1.0) lib/active_support/callbacks.rb:166:in `block in halting'
3069
+ activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `call'
3070
+ activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `run_callbacks'
3071
+ actionpack (4.1.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
3072
+ actionpack (4.1.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
3073
+ actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
3074
+ activesupport (4.1.0) lib/active_support/notifications.rb:159:in `block in instrument'
3075
+ activesupport (4.1.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3076
+ activesupport (4.1.0) lib/active_support/notifications.rb:159:in `instrument'
3077
+ actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
3078
+ actionpack (4.1.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
3079
+ activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
3080
+ actionpack (4.1.0) lib/abstract_controller/base.rb:136:in `process'
3081
+ actionview (4.1.0) lib/action_view/rendering.rb:30:in `process'
3082
+ actionpack (4.1.0) lib/action_controller/metal.rb:195:in `dispatch'
3083
+ actionpack (4.1.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
3084
+ actionpack (4.1.0) lib/action_controller/metal.rb:231:in `block in action'
3085
+ actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
3086
+ actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
3087
+ actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
3088
+ actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
3089
+ actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
3090
+ actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
3091
+ actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
3092
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
3093
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
3094
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
3095
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
3096
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
3097
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
3098
+ actionpack (4.1.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
3099
+ actionpack (4.1.0) lib/action_dispatch/middleware/flash.rb:254:in `call'
3100
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
3101
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
3102
+ actionpack (4.1.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
3103
+ activerecord (4.1.0) lib/active_record/query_cache.rb:36:in `call'
3104
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
3105
+ activerecord (4.1.0) lib/active_record/migration.rb:380:in `call'
3106
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
3107
+ activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
3108
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3109
+ actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
3110
+ actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
3111
+ actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
3112
+ actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3113
+ railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
3114
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
3115
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
3116
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
3117
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
3118
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
3119
+ actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3120
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3121
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3122
+ activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
3123
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3124
+ actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
3125
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3126
+ railties (4.1.0) lib/rails/engine.rb:514:in `call'
3127
+ railties (4.1.0) lib/rails/application.rb:144:in `call'
3128
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3129
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3130
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3131
+ /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
3132
+ /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
3133
+ /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
3134
+
3135
+
3136
+ 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 (2.4ms)
3137
+
3138
+
3139
+ Started GET "/?page=2" for 10.0.2.2 at 2014-04-21 04:49:54 +0000
3140
+ Processing by LeadsController#index as HTML
3141
+ Parameters: {"page"=>"2"}
3142
+ Lead Load (14.9ms) SELECT "leads".* FROM "leads" LIMIT 10 OFFSET 10
3143
+  (6.8ms) SELECT COUNT(*) FROM "leads"
3144
+ Rendered leads/index.html.erb within layouts/application (49.6ms)
3145
+ Completed 200 OK in 535ms (Views: 502.4ms | ActiveRecord: 31.4ms)
3146
+
3147
+
3148
+ Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-04-21 04:49:55 +0000
3149
+
3150
+
3151
+ Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-04-21 04:49:55 +0000
3152
+
3153
+
3154
+ Started GET "/" for 10.0.2.2 at 2014-04-21 05:03:09 +0000
3155
+ Processing by LeadsController#index as HTML
3156
+ Lead Load (7.6ms) SELECT "leads".* FROM "leads" LIMIT 10 OFFSET 0
3157
+ User Load (6.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
3158
+ Rendered leads/index.html.erb within layouts/application (122.3ms)
3159
+ Completed 200 OK in 541ms (Views: 517.4ms | ActiveRecord: 21.3ms)
3160
+
3161
+
3162
+ Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-04-21 05:03:10 +0000
3163
+
3164
+
3165
+ Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-04-21 05:03:10 +0000
3166
+
3167
+
3168
+ Started GET "/" for 10.0.2.2 at 2014-04-21 05:03:46 +0000
3169
+ Processing by LeadsController#index as HTML
3170
+ Lead Load (13.0ms) SELECT "leads".* FROM "leads" LIMIT 10 OFFSET 0
3171
+ User Load (5.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
3172
+ Rendered leads/index.html.erb within layouts/application (71.9ms)
3173
+ Completed 200 OK in 473ms (Views: 452.8ms | ActiveRecord: 18.8ms)
3174
+
3175
+
3176
+ Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-04-21 05:03:47 +0000
3177
+
3178
+
3179
+ Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-04-21 05:03:47 +0000
3180
+
3181
+
3182
+ Started GET "/" for 10.0.2.2 at 2014-04-21 05:04:18 +0000
3183
+ Processing by LeadsController#index as HTML
3184
+ Lead Load (13.0ms) SELECT "leads".* FROM "leads" LIMIT 10 OFFSET 0
3185
+ User Load (5.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
3186
+ Rendered leads/index.html.erb within layouts/application (48.1ms)
3187
+ Completed 200 OK in 467ms (Views: 446.4ms | ActiveRecord: 18.9ms)
3188
+
3189
+
3190
+ Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-04-21 05:04:19 +0000
3191
+
3192
+
3193
+ Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-04-21 05:04:19 +0000
3194
+
3195
+
3196
+ Started GET "/" for 10.0.2.2 at 2014-04-21 05:11:29 +0000
3197
+ Processing by LeadsController#index as HTML
3198
+ Lead Load (20.3ms) SELECT "leads".* FROM "leads" LIMIT 10 OFFSET 0
3199
+ User Load (6.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
3200
+ Rendered leads/index.html.erb within layouts/application (244.3ms)
3201
+ Completed 200 OK in 788ms (Views: 596.4ms | ActiveRecord: 47.6ms)
3202
+
3203
+
3204
+ Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-04-21 05:11:31 +0000
3205
+
3206
+
3207
+ Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-04-21 05:11:31 +0000
3208
+
3209
+
3210
+ Started GET "/" for 10.0.2.2 at 2014-04-21 05:11:56 +0000
3211
+ Processing by LeadsController#index as HTML
3212
+ Completed 500 Internal Server Error in 130ms
3213
+
3214
+ ActionView::MissingTemplate (Missing template leads/index, application/index with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
3215
+ * "/vagrant/engine/leads_to_highrise/test/dummy/app/views"
3216
+ ):
3217
+ actionview (4.1.0) lib/action_view/path_set.rb:46:in `find'
3218
+ actionview (4.1.0) lib/action_view/lookup_context.rb:124:in `find'
3219
+ actionview (4.1.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
3220
+ actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:41:in `determine_template'
3221
+ actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:8:in `render'
3222
+ actionview (4.1.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
3223
+ actionview (4.1.0) lib/action_view/renderer/renderer.rb:23:in `render'
3224
+ actionview (4.1.0) lib/action_view/rendering.rb:99:in `_render_template'
3225
+ actionpack (4.1.0) lib/action_controller/metal/streaming.rb:217:in `_render_template'
3226
+ actionview (4.1.0) lib/action_view/rendering.rb:82:in `render_to_body'
3227
+ actionpack (4.1.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
3228
+ actionpack (4.1.0) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
3229
+ actionpack (4.1.0) lib/abstract_controller/rendering.rb:25:in `render'
3230
+ actionpack (4.1.0) lib/action_controller/metal/rendering.rb:16:in `render'
3231
+ actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
3232
+ activesupport (4.1.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
3233
+ /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
3234
+ activesupport (4.1.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
3235
+ actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
3236
+ actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
3237
+ activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
3238
+ actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
3239
+ actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
3240
+ actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
3241
+ actionpack (4.1.0) lib/abstract_controller/base.rb:189:in `process_action'
3242
+ actionpack (4.1.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
3243
+ actionpack (4.1.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
3244
+ activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
3245
+ activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
3246
+ activesupport (4.1.0) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
3247
+ activesupport (4.1.0) lib/active_support/callbacks.rb:229:in `call'
3248
+ activesupport (4.1.0) lib/active_support/callbacks.rb:229:in `block in halting'
3249
+ activesupport (4.1.0) lib/active_support/callbacks.rb:166:in `call'
3250
+ activesupport (4.1.0) lib/active_support/callbacks.rb:166:in `block in halting'
3251
+ activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `call'
3252
+ activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `run_callbacks'
3253
+ actionpack (4.1.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
3254
+ actionpack (4.1.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
3255
+ actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
3256
+ activesupport (4.1.0) lib/active_support/notifications.rb:159:in `block in instrument'
3257
+ activesupport (4.1.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3258
+ activesupport (4.1.0) lib/active_support/notifications.rb:159:in `instrument'
3259
+ actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
3260
+ actionpack (4.1.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
3261
+ activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
3262
+ actionpack (4.1.0) lib/abstract_controller/base.rb:136:in `process'
3263
+ actionview (4.1.0) lib/action_view/rendering.rb:30:in `process'
3264
+ actionpack (4.1.0) lib/action_controller/metal.rb:195:in `dispatch'
3265
+ actionpack (4.1.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
3266
+ actionpack (4.1.0) lib/action_controller/metal.rb:231:in `block in action'
3267
+ actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
3268
+ actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
3269
+ actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
3270
+ actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
3271
+ actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
3272
+ actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
3273
+ actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
3274
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
3275
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
3276
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
3277
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
3278
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
3279
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
3280
+ actionpack (4.1.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
3281
+ actionpack (4.1.0) lib/action_dispatch/middleware/flash.rb:254:in `call'
3282
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
3283
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
3284
+ actionpack (4.1.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
3285
+ activerecord (4.1.0) lib/active_record/query_cache.rb:36:in `call'
3286
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
3287
+ activerecord (4.1.0) lib/active_record/migration.rb:380:in `call'
3288
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
3289
+ activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
3290
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3291
+ actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
3292
+ actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
3293
+ actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
3294
+ actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3295
+ railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
3296
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
3297
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
3298
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
3299
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
3300
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
3301
+ actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3302
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3303
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3304
+ activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
3305
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3306
+ actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
3307
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3308
+ railties (4.1.0) lib/rails/engine.rb:514:in `call'
3309
+ railties (4.1.0) lib/rails/application.rb:144:in `call'
3310
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3311
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3312
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3313
+ /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
3314
+ /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
3315
+ /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
3316
+
3317
+
3318
+ 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.9ms)
3319
+
3320
+
3321
+ Started GET "/" for 10.0.2.2 at 2014-04-21 05:16:59 +0000
3322
+ Processing by LeadsController#index as HTML
3323
+ Lead Load (13.6ms) SELECT "leads".* FROM "leads" LIMIT 10 OFFSET 0
3324
+ User Load (7.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
3325
+ Rendered /vagrant/engine/leads_to_highrise/app/views/leads/index.html.erb within layouts/application (178.8ms)
3326
+ Completed 200 OK in 850ms (Views: 661.7ms | ActiveRecord: 50.8ms)
3327
+
3328
+
3329
+ Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-04-21 05:17:01 +0000
3330
+
3331
+
3332
+ Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-04-21 05:17:01 +0000
3333
+
3334
+
3335
+ Started GET "/" for 10.0.2.2 at 2014-04-21 05:17:20 +0000
3336
+ Processing by LeadsController#index as HTML
3337
+ Lead Load (16.4ms) SELECT "leads".* FROM "leads" LIMIT 10 OFFSET 0
3338
+ User Load (10.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
3339
+ Rendered /vagrant/engine/leads_to_highrise/app/views/leads/index.html.erb within layouts/application (150.8ms)
3340
+ Completed 200 OK in 819ms (Views: 621.5ms | ActiveRecord: 41.6ms)
3341
+
3342
+
3343
+ Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-04-21 05:17:22 +0000
3344
+
3345
+
3346
+ Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-04-21 05:17:22 +0000
3347
+
3348
+
3349
+ Started GET "/" for 10.0.2.2 at 2014-04-21 05:17:36 +0000
3350
+ Processing by LeadsController#index as HTML
3351
+ Lead Load (8.2ms) SELECT "leads".* FROM "leads" LIMIT 10 OFFSET 0
3352
+ User Load (6.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
3353
+ Rendered /vagrant/engine/leads_to_highrise/app/views/leads/index.html.erb within layouts/application (43.7ms)
3354
+ Completed 200 OK in 577ms (Views: 561.1ms | ActiveRecord: 14.6ms)
3355
+
3356
+
3357
+ Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-04-21 05:17:37 +0000
3358
+
3359
+
3360
+ Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-04-21 05:17:38 +0000
3361
+
3362
+
3363
+ Started GET "/" for 10.0.2.2 at 2014-04-21 05:18:23 +0000
3364
+ Processing by LeadsController#index as HTML
3365
+ Completed 500 Internal Server Error in 346ms
3366
+
3367
+ ActionView::MissingTemplate (Missing template leads/index, application/index with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
3368
+ * "/vagrant/engine/leads_to_highrise/test/dummy/app/views"
3369
+ ):
3370
+ actionview (4.1.0) lib/action_view/path_set.rb:46:in `find'
3371
+ actionview (4.1.0) lib/action_view/lookup_context.rb:124:in `find'
3372
+ actionview (4.1.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
3373
+ actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:41:in `determine_template'
3374
+ actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:8:in `render'
3375
+ actionview (4.1.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
3376
+ actionview (4.1.0) lib/action_view/renderer/renderer.rb:23:in `render'
3377
+ actionview (4.1.0) lib/action_view/rendering.rb:99:in `_render_template'
3378
+ actionpack (4.1.0) lib/action_controller/metal/streaming.rb:217:in `_render_template'
3379
+ actionview (4.1.0) lib/action_view/rendering.rb:82:in `render_to_body'
3380
+ actionpack (4.1.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
3381
+ actionpack (4.1.0) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
3382
+ actionpack (4.1.0) lib/abstract_controller/rendering.rb:25:in `render'
3383
+ actionpack (4.1.0) lib/action_controller/metal/rendering.rb:16:in `render'
3384
+ actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
3385
+ activesupport (4.1.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
3386
+ /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
3387
+ activesupport (4.1.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
3388
+ actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
3389
+ actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
3390
+ activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
3391
+ actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
3392
+ actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
3393
+ actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
3394
+ actionpack (4.1.0) lib/abstract_controller/base.rb:189:in `process_action'
3395
+ actionpack (4.1.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
3396
+ actionpack (4.1.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
3397
+ activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
3398
+ activesupport (4.1.0) lib/active_support/callbacks.rb:113:in `call'
3399
+ activesupport (4.1.0) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
3400
+ activesupport (4.1.0) lib/active_support/callbacks.rb:229:in `call'
3401
+ activesupport (4.1.0) lib/active_support/callbacks.rb:229:in `block in halting'
3402
+ activesupport (4.1.0) lib/active_support/callbacks.rb:166:in `call'
3403
+ activesupport (4.1.0) lib/active_support/callbacks.rb:166:in `block in halting'
3404
+ activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `call'
3405
+ activesupport (4.1.0) lib/active_support/callbacks.rb:86:in `run_callbacks'
3406
+ actionpack (4.1.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
3407
+ actionpack (4.1.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
3408
+ actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
3409
+ activesupport (4.1.0) lib/active_support/notifications.rb:159:in `block in instrument'
3410
+ activesupport (4.1.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3411
+ activesupport (4.1.0) lib/active_support/notifications.rb:159:in `instrument'
3412
+ actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
3413
+ actionpack (4.1.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
3414
+ activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
3415
+ actionpack (4.1.0) lib/abstract_controller/base.rb:136:in `process'
3416
+ actionview (4.1.0) lib/action_view/rendering.rb:30:in `process'
3417
+ actionpack (4.1.0) lib/action_controller/metal.rb:195:in `dispatch'
3418
+ actionpack (4.1.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
3419
+ actionpack (4.1.0) lib/action_controller/metal.rb:231:in `block in action'
3420
+ actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
3421
+ actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
3422
+ actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
3423
+ actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
3424
+ actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
3425
+ actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
3426
+ actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
3427
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
3428
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
3429
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
3430
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
3431
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
3432
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
3433
+ actionpack (4.1.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
3434
+ actionpack (4.1.0) lib/action_dispatch/middleware/flash.rb:254:in `call'
3435
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
3436
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
3437
+ actionpack (4.1.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
3438
+ activerecord (4.1.0) lib/active_record/query_cache.rb:36:in `call'
3439
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
3440
+ activerecord (4.1.0) lib/active_record/migration.rb:380:in `call'
3441
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
3442
+ activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
3443
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3444
+ actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
3445
+ actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
3446
+ actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
3447
+ actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3448
+ railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
3449
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
3450
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
3451
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
3452
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
3453
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
3454
+ actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3455
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3456
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3457
+ activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
3458
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3459
+ actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
3460
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3461
+ railties (4.1.0) lib/rails/engine.rb:514:in `call'
3462
+ railties (4.1.0) lib/rails/application.rb:144:in `call'
3463
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3464
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3465
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3466
+ /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
3467
+ /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
3468
+ /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
3469
+
3470
+
3471
+ 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 (8.2ms)
3472
+
3473
+
3474
+ Started GET "/" for 10.0.2.2 at 2014-04-21 05:20:54 +0000
3475
+
3476
+ ActionController::RoutingError (undefined local variable or method `engine' for LeadsController:Class):
3477
+ /vagrant/engine/leads_to_highrise/app/controllers/leads_controller.rb:4:in `<class:LeadsController>'
3478
+ /vagrant/engine/leads_to_highrise/app/controllers/leads_controller.rb:2:in `<top (required)>'
3479
+ activesupport (4.1.0) lib/active_support/dependencies.rb:443:in `load'
3480
+ activesupport (4.1.0) lib/active_support/dependencies.rb:443:in `block in load_file'
3481
+ activesupport (4.1.0) lib/active_support/dependencies.rb:633:in `new_constants_in'
3482
+ activesupport (4.1.0) lib/active_support/dependencies.rb:442:in `load_file'
3483
+ activesupport (4.1.0) lib/active_support/dependencies.rb:342:in `require_or_load'
3484
+ activesupport (4.1.0) lib/active_support/dependencies.rb:480:in `load_missing_constant'
3485
+ activesupport (4.1.0) lib/active_support/dependencies.rb:180:in `const_missing'
3486
+ activesupport (4.1.0) lib/active_support/inflector/methods.rb:238:in `const_get'
3487
+ activesupport (4.1.0) lib/active_support/inflector/methods.rb:238:in `block in constantize'
3488
+ activesupport (4.1.0) lib/active_support/inflector/methods.rb:236:in `each'
3489
+ activesupport (4.1.0) lib/active_support/inflector/methods.rb:236:in `inject'
3490
+ activesupport (4.1.0) lib/active_support/inflector/methods.rb:236:in `constantize'
3491
+ activesupport (4.1.0) lib/active_support/dependencies.rb:552:in `get'
3492
+ activesupport (4.1.0) lib/active_support/dependencies.rb:583:in `constantize'
3493
+ actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
3494
+ actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:66:in `controller'
3495
+ actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:44:in `call'
3496
+ actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
3497
+ actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
3498
+ actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
3499
+ actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
3500
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
3501
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
3502
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
3503
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
3504
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
3505
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
3506
+ actionpack (4.1.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
3507
+ actionpack (4.1.0) lib/action_dispatch/middleware/flash.rb:254:in `call'
3508
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
3509
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
3510
+ actionpack (4.1.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
3511
+ activerecord (4.1.0) lib/active_record/query_cache.rb:36:in `call'
3512
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
3513
+ activerecord (4.1.0) lib/active_record/migration.rb:380:in `call'
3514
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
3515
+ activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
3516
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3517
+ actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
3518
+ actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
3519
+ actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
3520
+ actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3521
+ railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
3522
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
3523
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
3524
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
3525
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
3526
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
3527
+ actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3528
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3529
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3530
+ activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
3531
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3532
+ actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
3533
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3534
+ railties (4.1.0) lib/rails/engine.rb:514:in `call'
3535
+ railties (4.1.0) lib/rails/application.rb:144:in `call'
3536
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3537
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3538
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3539
+ /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
3540
+ /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
3541
+ /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
3542
+
3543
+
3544
+ 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.2ms)
3545
+ Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.7ms)
3546
+ Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (101.4ms)
3547
+ 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 (217.4ms)
3548
+
3549
+
3550
+ Started GET "/" for 10.0.2.2 at 2014-04-21 05:21:28 +0000
3551
+
3552
+ ActionController::RoutingError (undefined method `paths' for LeadsToHighrise:Module):
3553
+ /vagrant/engine/leads_to_highrise/app/controllers/leads_controller.rb:4:in `<class:LeadsController>'
3554
+ /vagrant/engine/leads_to_highrise/app/controllers/leads_controller.rb:2:in `<top (required)>'
3555
+ activesupport (4.1.0) lib/active_support/dependencies.rb:443:in `load'
3556
+ activesupport (4.1.0) lib/active_support/dependencies.rb:443:in `block in load_file'
3557
+ activesupport (4.1.0) lib/active_support/dependencies.rb:633:in `new_constants_in'
3558
+ activesupport (4.1.0) lib/active_support/dependencies.rb:442:in `load_file'
3559
+ activesupport (4.1.0) lib/active_support/dependencies.rb:342:in `require_or_load'
3560
+ activesupport (4.1.0) lib/active_support/dependencies.rb:480:in `load_missing_constant'
3561
+ activesupport (4.1.0) lib/active_support/dependencies.rb:180:in `const_missing'
3562
+ activesupport (4.1.0) lib/active_support/inflector/methods.rb:238:in `const_get'
3563
+ activesupport (4.1.0) lib/active_support/inflector/methods.rb:238:in `block in constantize'
3564
+ activesupport (4.1.0) lib/active_support/inflector/methods.rb:236:in `each'
3565
+ activesupport (4.1.0) lib/active_support/inflector/methods.rb:236:in `inject'
3566
+ activesupport (4.1.0) lib/active_support/inflector/methods.rb:236:in `constantize'
3567
+ activesupport (4.1.0) lib/active_support/dependencies.rb:552:in `get'
3568
+ activesupport (4.1.0) lib/active_support/dependencies.rb:583:in `constantize'
3569
+ actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
3570
+ actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:66:in `controller'
3571
+ actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:44:in `call'
3572
+ actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
3573
+ actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
3574
+ actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
3575
+ actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
3576
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
3577
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
3578
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
3579
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
3580
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
3581
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
3582
+ actionpack (4.1.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
3583
+ actionpack (4.1.0) lib/action_dispatch/middleware/flash.rb:254:in `call'
3584
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
3585
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
3586
+ actionpack (4.1.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
3587
+ activerecord (4.1.0) lib/active_record/query_cache.rb:36:in `call'
3588
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
3589
+ activerecord (4.1.0) lib/active_record/migration.rb:380:in `call'
3590
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
3591
+ activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
3592
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3593
+ actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
3594
+ actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
3595
+ actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
3596
+ actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3597
+ railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
3598
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
3599
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
3600
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
3601
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
3602
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
3603
+ actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3604
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3605
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3606
+ activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
3607
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3608
+ actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
3609
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3610
+ railties (4.1.0) lib/rails/engine.rb:514:in `call'
3611
+ railties (4.1.0) lib/rails/application.rb:144:in `call'
3612
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3613
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3614
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3615
+ /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
3616
+ /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
3617
+ /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
3618
+
3619
+
3620
+ 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.5ms)
3621
+ Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.8ms)
3622
+ Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms)
3623
+ 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 (119.6ms)
3624
+
3625
+
3626
+ Started GET "/?page=2" for 10.0.2.2 at 2014-04-21 05:21:41 +0000
3627
+
3628
+ ActionController::RoutingError (undefined local variable or method `engine' for LeadsController:Class):
3629
+ /vagrant/engine/leads_to_highrise/app/controllers/leads_controller.rb:4:in `<class:LeadsController>'
3630
+ /vagrant/engine/leads_to_highrise/app/controllers/leads_controller.rb:2:in `<top (required)>'
3631
+ activesupport (4.1.0) lib/active_support/dependencies.rb:443:in `load'
3632
+ activesupport (4.1.0) lib/active_support/dependencies.rb:443:in `block in load_file'
3633
+ activesupport (4.1.0) lib/active_support/dependencies.rb:633:in `new_constants_in'
3634
+ activesupport (4.1.0) lib/active_support/dependencies.rb:442:in `load_file'
3635
+ activesupport (4.1.0) lib/active_support/dependencies.rb:342:in `require_or_load'
3636
+ activesupport (4.1.0) lib/active_support/dependencies.rb:480:in `load_missing_constant'
3637
+ activesupport (4.1.0) lib/active_support/dependencies.rb:180:in `const_missing'
3638
+ activesupport (4.1.0) lib/active_support/inflector/methods.rb:238:in `const_get'
3639
+ activesupport (4.1.0) lib/active_support/inflector/methods.rb:238:in `block in constantize'
3640
+ activesupport (4.1.0) lib/active_support/inflector/methods.rb:236:in `each'
3641
+ activesupport (4.1.0) lib/active_support/inflector/methods.rb:236:in `inject'
3642
+ activesupport (4.1.0) lib/active_support/inflector/methods.rb:236:in `constantize'
3643
+ activesupport (4.1.0) lib/active_support/dependencies.rb:552:in `get'
3644
+ activesupport (4.1.0) lib/active_support/dependencies.rb:583:in `constantize'
3645
+ actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
3646
+ actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:66:in `controller'
3647
+ actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:44:in `call'
3648
+ actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
3649
+ actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
3650
+ actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
3651
+ actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
3652
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
3653
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
3654
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
3655
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
3656
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
3657
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
3658
+ actionpack (4.1.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
3659
+ actionpack (4.1.0) lib/action_dispatch/middleware/flash.rb:254:in `call'
3660
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
3661
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
3662
+ actionpack (4.1.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
3663
+ activerecord (4.1.0) lib/active_record/query_cache.rb:36:in `call'
3664
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
3665
+ activerecord (4.1.0) lib/active_record/migration.rb:380:in `call'
3666
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
3667
+ activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
3668
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3669
+ actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
3670
+ actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
3671
+ actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
3672
+ actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3673
+ railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
3674
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
3675
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
3676
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
3677
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
3678
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
3679
+ actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3680
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3681
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3682
+ activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
3683
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3684
+ actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
3685
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3686
+ railties (4.1.0) lib/rails/engine.rb:514:in `call'
3687
+ railties (4.1.0) lib/rails/application.rb:144:in `call'
3688
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3689
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3690
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3691
+ /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
3692
+ /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
3693
+ /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
3694
+
3695
+
3696
+ 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)
3697
+ Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.4ms)
3698
+ Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.9ms)
3699
+ 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 (114.0ms)
3700
+
3701
+
3702
+ Started GET "/?page=2" for 10.0.2.2 at 2014-04-21 05:22:04 +0000
3703
+
3704
+ ActionController::RoutingError (undefined local variable or method `leads_to_highrise' for LeadsController:Class):
3705
+ /vagrant/engine/leads_to_highrise/app/controllers/leads_controller.rb:4:in `<class:LeadsController>'
3706
+ /vagrant/engine/leads_to_highrise/app/controllers/leads_controller.rb:2:in `<top (required)>'
3707
+ activesupport (4.1.0) lib/active_support/dependencies.rb:443:in `load'
3708
+ activesupport (4.1.0) lib/active_support/dependencies.rb:443:in `block in load_file'
3709
+ activesupport (4.1.0) lib/active_support/dependencies.rb:633:in `new_constants_in'
3710
+ activesupport (4.1.0) lib/active_support/dependencies.rb:442:in `load_file'
3711
+ activesupport (4.1.0) lib/active_support/dependencies.rb:342:in `require_or_load'
3712
+ activesupport (4.1.0) lib/active_support/dependencies.rb:480:in `load_missing_constant'
3713
+ activesupport (4.1.0) lib/active_support/dependencies.rb:180:in `const_missing'
3714
+ activesupport (4.1.0) lib/active_support/inflector/methods.rb:238:in `const_get'
3715
+ activesupport (4.1.0) lib/active_support/inflector/methods.rb:238:in `block in constantize'
3716
+ activesupport (4.1.0) lib/active_support/inflector/methods.rb:236:in `each'
3717
+ activesupport (4.1.0) lib/active_support/inflector/methods.rb:236:in `inject'
3718
+ activesupport (4.1.0) lib/active_support/inflector/methods.rb:236:in `constantize'
3719
+ activesupport (4.1.0) lib/active_support/dependencies.rb:552:in `get'
3720
+ activesupport (4.1.0) lib/active_support/dependencies.rb:583:in `constantize'
3721
+ actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
3722
+ actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:66:in `controller'
3723
+ actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:44:in `call'
3724
+ actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
3725
+ actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
3726
+ actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
3727
+ actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
3728
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
3729
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
3730
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
3731
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
3732
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
3733
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
3734
+ actionpack (4.1.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
3735
+ actionpack (4.1.0) lib/action_dispatch/middleware/flash.rb:254:in `call'
3736
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
3737
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
3738
+ actionpack (4.1.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
3739
+ activerecord (4.1.0) lib/active_record/query_cache.rb:36:in `call'
3740
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
3741
+ activerecord (4.1.0) lib/active_record/migration.rb:380:in `call'
3742
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
3743
+ activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
3744
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3745
+ actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
3746
+ actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
3747
+ actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
3748
+ actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3749
+ railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
3750
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
3751
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
3752
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
3753
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
3754
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
3755
+ actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3756
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3757
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3758
+ activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
3759
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3760
+ actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
3761
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3762
+ railties (4.1.0) lib/rails/engine.rb:514:in `call'
3763
+ railties (4.1.0) lib/rails/application.rb:144:in `call'
3764
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3765
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3766
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3767
+ /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
3768
+ /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
3769
+ /home/vagrant/.rvm/rubies/ruby-1.9.3-p484/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
3770
+
3771
+
3772
+ 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.5ms)
3773
+ Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.2ms)
3774
+ Rendered /home/vagrant/.rvm/gems/ruby-1.9.3-p484/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms)
3775
+ 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 (110.1ms)
3776
+
3777
+
3778
+ Started GET "/?page=2" for 10.0.2.2 at 2014-04-21 05:23:33 +0000
3779
+ Processing by LeadsController#index as HTML
3780
+ Parameters: {"page"=>"2"}
3781
+ Lead Load (27.3ms) SELECT "leads".* FROM "leads" LIMIT 10 OFFSET 10
3782
+  (11.0ms) SELECT COUNT(*) FROM "leads"
3783
+ Rendered /vagrant/engine/leads_to_highrise/app/views/leads/index.html.erb within layouts/application (67.6ms)
3784
+ Completed 200 OK in 779ms (Views: 569.5ms | ActiveRecord: 44.5ms)
3785
+
3786
+
3787
+ Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-04-21 05:23:35 +0000
3788
+
3789
+
3790
+ Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-04-21 05:23:35 +0000
3791
+
3792
+
3793
+ Started GET "/" for 10.0.2.2 at 2014-04-21 05:23:39 +0000
3794
+ Processing by LeadsController#index as HTML
3795
+ Lead Load (8.1ms) SELECT "leads".* FROM "leads" LIMIT 10 OFFSET 0
3796
+ User Load (9.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
3797
+ Rendered /vagrant/engine/leads_to_highrise/app/views/leads/index.html.erb within layouts/application (132.8ms)
3798
+ Completed 200 OK in 682ms (Views: 657.0ms | ActiveRecord: 24.2ms)
3799
+
3800
+
3801
+ Started GET "/assets/application.css?body=1" for 10.0.2.2 at 2014-04-21 05:23:40 +0000
3802
+
3803
+
3804
+ Started GET "/assets/application.js?body=1" for 10.0.2.2 at 2014-04-21 05:23:40 +0000