controller_scaffolding 1.3.0 → 1.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (38) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +8 -8
  3. data/lib/controller_scaffolding.rb +1 -2
  4. data/lib/controller_scaffolding/add_generator.rb +1 -0
  5. data/lib/controller_scaffolding/version.rb +1 -1
  6. data/lib/generators/controller/controller_scaffolding_generator.rb +2 -0
  7. data/lib/generators/controller_generator_base.rb +213 -0
  8. data/lib/generators/erb/controller/controller_scaffolding_generator.rb +16 -0
  9. data/lib/generators/erb/controller/partials/_flash_messages.html.erb +3 -0
  10. data/lib/generators/erb/controller/partials/_pagination.html.erb +21 -0
  11. data/lib/generators/erb/controller/partials/_validation_errors.html.erb +11 -0
  12. data/lib/generators/haml/controller/controller_scaffolding_generator.rb +4 -216
  13. data/lib/templates/erb/controller/_form.html.erb +27 -0
  14. data/lib/templates/erb/controller/edit.html.erb +2 -0
  15. data/lib/templates/erb/controller/index.html.erb +59 -0
  16. data/lib/templates/erb/controller/new.html.erb +2 -0
  17. data/lib/templates/erb/controller/view.html.erb +4 -0
  18. data/test/dummy/config/environments/development.rb +1 -1
  19. data/test/dummy/config/routes.rb +1 -2
  20. data/test/dummy/db/development.sqlite3 +0 -0
  21. data/test/dummy/db/test.sqlite3 +0 -0
  22. data/test/dummy/log/development.log +1258 -0
  23. data/test/dummy/log/test.log +13295 -0
  24. data/test/dummy/spec/requests/fellows_spec.rb +2 -2
  25. data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  26. data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  27. data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  28. data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  29. data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  30. data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  31. data/test/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  32. data/test/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  33. data/test/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  34. data/test/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  35. data/test/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  36. data/test/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  37. metadata +12 -4
  38. data/test/dummy/tmp/pids/server.pid +0 -1
@@ -0,0 +1,27 @@
1
+ <%%= form_for @<%= table_name.singularize %> do |f| %>
2
+ <table class="outer">
3
+ <% @attr_cols.each do |col| %>
4
+ <tr>
5
+ <% if options.datepicker? && [:date, :time, :datetime].include?(col.type) %>
6
+ <td><%%= f.hd_label :<%= col.name %> %>
7
+ <td class="field"><%%= f.<%= col.type %>_picker :<%= col.name %> %></td>
8
+ <% else %>
9
+ <td><%%= f.label :<%= col.name %> %></td>
10
+ <td class="field"><%%= f.<%= col.field_type %> :<%= col.name %> %></td>
11
+ <% end %>
12
+ </tr>
13
+ <% end %>
14
+ <tr>
15
+ <% if options.ext_form_submit? %>
16
+ <td colspan="2" style="text-align: center;">
17
+ <%%= f.submit "Save & Back to List", name: "btn_index" %>
18
+ <%%= f.submit "Save & Reload", name: "btn_reload" %>
19
+ </td>
20
+ <% else %>
21
+ <td colspan="2"><%%= f.submit %></td>
22
+ <% end %>
23
+ </tr>
24
+ </table>
25
+ <%% end %>
26
+ <br />
27
+ <%%= link_to "Back", <%= table_name %>_path %>
@@ -0,0 +1,2 @@
1
+ <h4> Edit <%= table_name.singularize.humanize %></h4>
2
+ <%%= render 'form' %>
@@ -0,0 +1,59 @@
1
+ <h4>Listing <%= plural_table_name.humanize %></h4>
2
+ <table class="outer-list" id="top-level">
3
+ <thead>
4
+ <% if @search_sort %>
5
+ <tr class="header-row">
6
+ <td colspan="<%= @col_count %>">
7
+ <table style="width: 100%">
8
+ <tr>
9
+ <td>
10
+ <%%= render "sort_form" %>
11
+ </td>
12
+ <td style="text-align: right">
13
+ <%%= render "search_form" %>
14
+ </td>
15
+ </tr>
16
+ </table>
17
+ </td>
18
+ </tr>
19
+ <% end %>
20
+
21
+ <tr class="header-row" style="font-weight: bold;">
22
+ <% @attr_cols.each do |col| %>
23
+ <td><%= col.name.humanize %></td>
24
+ <% end %>
25
+ <% if inc_link?("edit") %>
26
+ <td class="link_col"></td>
27
+ <% end %>
28
+ <% if inc_link?("destroy") %>
29
+ <td class="link_col"></td>
30
+ <% end %>
31
+ </tr>
32
+ </thead>
33
+ <tbody class="items">
34
+ <%% @<%= plural_table_name %>.each do |<%= singular_table_name %>| %>
35
+ <tr class="item">
36
+ <% @attr_cols.each do |col| %>
37
+ <td><%%= <%= singular_table_name %>.<%= col.name %> %></td>
38
+ <% end %>
39
+ <% if inc_link?("edit") %>
40
+ <td><%%= link_to "Edit", edit_<%= singular_table_name %>_path(<%= singular_table_name %>) %></td>
41
+ <% end %>
42
+ <% if inc_link?("destroy") %>
43
+ <td><%%= link_to "Del", <%= singular_table_name %>, method: :delete, data: {confirm: "Are you sure?"} %></td>
44
+ <% end %>
45
+ </tr>
46
+ <%% end %>
47
+ </tbody>
48
+ <% if options.ext_index_nav? %>
49
+ <tr id="pagination-row">
50
+ <td colspan='<%= @col_count %>' class= "pagination-container">
51
+ <%%= render partial: 'pagination', locals: { :coll => @<%= plural_table_name %> } %>
52
+ </td>
53
+ </tr>
54
+ <% end %>
55
+ </table>
56
+ <br/>
57
+ <% if inc_link?("new") %>
58
+ <%%= link_to 'New <%= singular_table_name.humanize %>', new_<%= singular_table_name %>_path %>
59
+ <% end %>
@@ -0,0 +1,2 @@
1
+ <h4> New <%= table_name.singularize.humanize %></h4>
2
+ <%%= render 'form' %>
@@ -0,0 +1,4 @@
1
+ <h4> <%= class_name %>#<%= @action %></h4>
2
+ <p> Find me in <%= @path %></p>
3
+ <br />
4
+ (Generated by the view.html.erb controller_scaffolding template)
@@ -27,7 +27,7 @@ Rails.application.configure do
27
27
  # Debug mode disables concatenation and preprocessing of assets.
28
28
  # This option may cause significant delays in view rendering with a large
29
29
  # number of complex assets.
30
- config.assets.debug = true
30
+ config.assets.debug = false #true
31
31
 
32
32
  # Adds additional error checking when serving assets at runtime.
33
33
  # Checks for improperly declared sprockets dependencies.
@@ -1,5 +1,4 @@
1
1
  Rails.application.routes.draw do
2
-
3
-
4
2
 
3
+
5
4
  end
Binary file
Binary file
@@ -14745,3 +14745,1261 @@ SQLite3::SQLException: table "schedules" already exists: CREATE TABLE "schedules
14745
14745
   (0.1ms) rollback transaction
14746
14746
  Schedule Load (1.8ms) SELECT "schedules".* FROM "schedules"
14747
14747
  Schedule Load (0.3ms) SELECT "schedules".* FROM "schedules" ORDER BY "schedules"."id" ASC LIMIT 1
14748
+
14749
+
14750
+ Started GET "/people" for 127.0.0.1 at 2014-10-20 19:03:14 -0400
14751
+ ActiveRecord::SchemaMigration Load (22.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
14752
+ Processing by PeopleController#index as HTML
14753
+ Rendered people/index.html.erb within layouts/application (29.4ms)
14754
+ Completed 500 Internal Server Error in 54ms
14755
+
14756
+ SyntaxError (/Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:11: syntax error, unexpected '<', expecting ')'
14757
+ </td>
14758
+ ^
14759
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:14: unknown regexp options - td
14760
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:15: syntax error, unexpected '<'
14761
+ </tr>
14762
+ ^
14763
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:16: unknown regexp options - tabl
14764
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:17: syntax error, unexpected '<'
14765
+ </td>
14766
+ ^
14767
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:18: unknown regexp options - tr
14768
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:21: syntax error, unexpected '<'
14769
+ <tr class="header-row" style="font-weight: bold;"></tr>
14770
+ ^
14771
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:21: syntax error, unexpected tIDENTIFIER, expecting ')'
14772
+ <tr class="header-row" style="font-weight: bold;"></tr>
14773
+ ^
14774
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:21: syntax error, unexpected '<'
14775
+ <tr class="header-row" style="font-weight: bold;"></tr>
14776
+ ^
14777
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:23: unknown regexp options - td
14778
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:25: syntax error, unexpected '<'
14779
+ <td>Last name</td>
14780
+ ^
14781
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:25: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '('
14782
+ <td>Last name</td>
14783
+ ^
14784
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:27: unknown regexp options - td
14785
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:29: syntax error, unexpected '<'
14786
+ <td>Title</td>
14787
+ ^
14788
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:31: unknown regexp options - td
14789
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:33: syntax error, unexpected '<'
14790
+ <td>Is manager</td>
14791
+ ^
14792
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:33: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '('
14793
+ <td>Is manager</td>
14794
+ ^
14795
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:36: unknown regexp options - td
14796
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:39: syntax error, unexpected '<'
14797
+ <td class="link_col"></td>
14798
+ ^
14799
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:39: syntax error, unexpected '<'
14800
+ <td class="link_col"></td>
14801
+ ^
14802
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:41: unknown regexp options - thad
14803
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:42: syntax error, unexpected '<'
14804
+ <tbody class="items">
14805
+ ^
14806
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:44: syntax error, unexpected keyword_class, expecting keyword_do or '{' or '('
14807
+ @output_buffer.safe_append=' <tr class="item"></tr>
14808
+ ^
14809
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:44: syntax error, unexpected '<'
14810
+ @output_buffer.safe_append=' <tr class="item"></tr>
14811
+ ^
14812
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:46: unknown regexp options - td
14813
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:48: syntax error, unexpected '<'
14814
+ <td>'.freeze;@output_buffer.ap...
14815
+ ^
14816
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:50: unknown regexp options - td
14817
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:52: syntax error, unexpected '<'
14818
+ <td>'.freeze;@output_buffer.ap...
14819
+ ^
14820
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:54: unknown regexp options - td
14821
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:56: syntax error, unexpected '<'
14822
+ <td>'.freeze;@output_buffer.ap...
14823
+ ^
14824
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:59: unknown regexp options - td
14825
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:62: syntax error, unexpected '<'
14826
+ <td>'.freeze;@output_buffer.ap...
14827
+ ^
14828
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:65: unknown regexp options - tbdy
14829
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:67: syntax error, unexpected '<'
14830
+ <tr id="pagination-row">
14831
+ ^
14832
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:68: syntax error, unexpected '<'
14833
+ <td colspan=\'8\' class= "pagination-container">
14834
+ ^
14835
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:68: syntax error, unexpected $undefined
14836
+ <td colspan=\'8\' class= "pagination-container">
14837
+ ^
14838
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:79: syntax error, unexpected keyword_ensure, expecting ')'
14839
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:81: syntax error, unexpected keyword_end, expecting ')'):
14840
+ app/views/people/index.html.erb:11: syntax error, unexpected '<', expecting ')'
14841
+ app/views/people/index.html.erb:14: unknown regexp options - td
14842
+ app/views/people/index.html.erb:15: syntax error, unexpected '<'
14843
+ app/views/people/index.html.erb:16: unknown regexp options - tabl
14844
+ app/views/people/index.html.erb:17: syntax error, unexpected '<'
14845
+ app/views/people/index.html.erb:18: unknown regexp options - tr
14846
+ app/views/people/index.html.erb:21: syntax error, unexpected '<'
14847
+ app/views/people/index.html.erb:21: syntax error, unexpected tIDENTIFIER, expecting ')'
14848
+ app/views/people/index.html.erb:21: syntax error, unexpected '<'
14849
+ app/views/people/index.html.erb:23: unknown regexp options - td
14850
+ app/views/people/index.html.erb:25: syntax error, unexpected '<'
14851
+ app/views/people/index.html.erb:25: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '('
14852
+ app/views/people/index.html.erb:27: unknown regexp options - td
14853
+ app/views/people/index.html.erb:29: syntax error, unexpected '<'
14854
+ app/views/people/index.html.erb:31: unknown regexp options - td
14855
+ app/views/people/index.html.erb:33: syntax error, unexpected '<'
14856
+ app/views/people/index.html.erb:33: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '('
14857
+ app/views/people/index.html.erb:36: unknown regexp options - td
14858
+ app/views/people/index.html.erb:39: syntax error, unexpected '<'
14859
+ app/views/people/index.html.erb:39: syntax error, unexpected '<'
14860
+ app/views/people/index.html.erb:41: unknown regexp options - thad
14861
+ app/views/people/index.html.erb:42: syntax error, unexpected '<'
14862
+ app/views/people/index.html.erb:44: syntax error, unexpected keyword_class, expecting keyword_do or '{' or '('
14863
+ app/views/people/index.html.erb:44: syntax error, unexpected '<'
14864
+ app/views/people/index.html.erb:46: unknown regexp options - td
14865
+ app/views/people/index.html.erb:48: syntax error, unexpected '<'
14866
+ app/views/people/index.html.erb:50: unknown regexp options - td
14867
+ app/views/people/index.html.erb:52: syntax error, unexpected '<'
14868
+ app/views/people/index.html.erb:54: unknown regexp options - td
14869
+ app/views/people/index.html.erb:56: syntax error, unexpected '<'
14870
+ app/views/people/index.html.erb:59: unknown regexp options - td
14871
+ app/views/people/index.html.erb:62: syntax error, unexpected '<'
14872
+ app/views/people/index.html.erb:65: unknown regexp options - tbdy
14873
+ app/views/people/index.html.erb:67: syntax error, unexpected '<'
14874
+ app/views/people/index.html.erb:68: syntax error, unexpected '<'
14875
+ app/views/people/index.html.erb:68: syntax error, unexpected $undefined
14876
+ app/views/people/index.html.erb:79: syntax error, unexpected keyword_ensure, expecting ')'
14877
+ app/views/people/index.html.erb:81: syntax error, unexpected keyword_end, expecting ')'
14878
+
14879
+
14880
+ Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.8ms)
14881
+ Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
14882
+ Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (10.6ms)
14883
+ Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (34.8ms)
14884
+
14885
+
14886
+ Started GET "/people" for 127.0.0.1 at 2014-10-20 19:10:23 -0400
14887
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
14888
+ Processing by PeopleController#index as HTML
14889
+ Rendered people/index.html.erb within layouts/application (1.4ms)
14890
+ Completed 500 Internal Server Error in 12ms
14891
+
14892
+ SyntaxError (/Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:11: syntax error, unexpected '<', expecting ')'
14893
+ </td>
14894
+ ^
14895
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:14: unknown regexp options - td
14896
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:15: syntax error, unexpected '<'
14897
+ </tr>
14898
+ ^
14899
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:16: unknown regexp options - tabl
14900
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:17: syntax error, unexpected '<'
14901
+ </td>
14902
+ ^
14903
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:18: unknown regexp options - tr
14904
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:21: syntax error, unexpected '<'
14905
+ <tr class="header-row" style="font-weight: bold;"></tr>
14906
+ ^
14907
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:21: syntax error, unexpected tIDENTIFIER, expecting ')'
14908
+ <tr class="header-row" style="font-weight: bold;"></tr>
14909
+ ^
14910
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:21: syntax error, unexpected '<'
14911
+ <tr class="header-row" style="font-weight: bold;"></tr>
14912
+ ^
14913
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:23: unknown regexp options - td
14914
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:25: syntax error, unexpected '<'
14915
+ <td>Last name</td>
14916
+ ^
14917
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:25: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '('
14918
+ <td>Last name</td>
14919
+ ^
14920
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:27: unknown regexp options - td
14921
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:29: syntax error, unexpected '<'
14922
+ <td>Title</td>
14923
+ ^
14924
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:31: unknown regexp options - td
14925
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:33: syntax error, unexpected '<'
14926
+ <td>Is manager</td>
14927
+ ^
14928
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:33: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '('
14929
+ <td>Is manager</td>
14930
+ ^
14931
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:36: unknown regexp options - td
14932
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:39: syntax error, unexpected '<'
14933
+ <td class="link_col"></td>
14934
+ ^
14935
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:39: syntax error, unexpected '<'
14936
+ <td class="link_col"></td>
14937
+ ^
14938
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:41: unknown regexp options - thad
14939
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:42: syntax error, unexpected '<'
14940
+ <tbody class="items">
14941
+ ^
14942
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:44: syntax error, unexpected keyword_class, expecting keyword_do or '{' or '('
14943
+ @output_buffer.safe_append=' <tr class="item"></tr>
14944
+ ^
14945
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:44: syntax error, unexpected '<'
14946
+ @output_buffer.safe_append=' <tr class="item"></tr>
14947
+ ^
14948
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:46: unknown regexp options - td
14949
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:48: syntax error, unexpected '<'
14950
+ <td>'.freeze;@output_buffer.ap...
14951
+ ^
14952
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:50: unknown regexp options - td
14953
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:52: syntax error, unexpected '<'
14954
+ <td>'.freeze;@output_buffer.ap...
14955
+ ^
14956
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:54: unknown regexp options - td
14957
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:56: syntax error, unexpected '<'
14958
+ <td>'.freeze;@output_buffer.ap...
14959
+ ^
14960
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:59: unknown regexp options - td
14961
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:62: syntax error, unexpected '<'
14962
+ <td>'.freeze;@output_buffer.ap...
14963
+ ^
14964
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:65: unknown regexp options - tbdy
14965
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:67: syntax error, unexpected '<'
14966
+ <tr id="pagination-row">
14967
+ ^
14968
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:68: syntax error, unexpected '<'
14969
+ <td colspan=\'8\' class= "pagination-container">
14970
+ ^
14971
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:68: syntax error, unexpected $undefined
14972
+ <td colspan=\'8\' class= "pagination-container">
14973
+ ^
14974
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:79: syntax error, unexpected keyword_ensure, expecting ')'
14975
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:81: syntax error, unexpected keyword_end, expecting ')'):
14976
+ app/views/people/index.html.erb:11: syntax error, unexpected '<', expecting ')'
14977
+ app/views/people/index.html.erb:14: unknown regexp options - td
14978
+ app/views/people/index.html.erb:15: syntax error, unexpected '<'
14979
+ app/views/people/index.html.erb:16: unknown regexp options - tabl
14980
+ app/views/people/index.html.erb:17: syntax error, unexpected '<'
14981
+ app/views/people/index.html.erb:18: unknown regexp options - tr
14982
+ app/views/people/index.html.erb:21: syntax error, unexpected '<'
14983
+ app/views/people/index.html.erb:21: syntax error, unexpected tIDENTIFIER, expecting ')'
14984
+ app/views/people/index.html.erb:21: syntax error, unexpected '<'
14985
+ app/views/people/index.html.erb:23: unknown regexp options - td
14986
+ app/views/people/index.html.erb:25: syntax error, unexpected '<'
14987
+ app/views/people/index.html.erb:25: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '('
14988
+ app/views/people/index.html.erb:27: unknown regexp options - td
14989
+ app/views/people/index.html.erb:29: syntax error, unexpected '<'
14990
+ app/views/people/index.html.erb:31: unknown regexp options - td
14991
+ app/views/people/index.html.erb:33: syntax error, unexpected '<'
14992
+ app/views/people/index.html.erb:33: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '('
14993
+ app/views/people/index.html.erb:36: unknown regexp options - td
14994
+ app/views/people/index.html.erb:39: syntax error, unexpected '<'
14995
+ app/views/people/index.html.erb:39: syntax error, unexpected '<'
14996
+ app/views/people/index.html.erb:41: unknown regexp options - thad
14997
+ app/views/people/index.html.erb:42: syntax error, unexpected '<'
14998
+ app/views/people/index.html.erb:44: syntax error, unexpected keyword_class, expecting keyword_do or '{' or '('
14999
+ app/views/people/index.html.erb:44: syntax error, unexpected '<'
15000
+ app/views/people/index.html.erb:46: unknown regexp options - td
15001
+ app/views/people/index.html.erb:48: syntax error, unexpected '<'
15002
+ app/views/people/index.html.erb:50: unknown regexp options - td
15003
+ app/views/people/index.html.erb:52: syntax error, unexpected '<'
15004
+ app/views/people/index.html.erb:54: unknown regexp options - td
15005
+ app/views/people/index.html.erb:56: syntax error, unexpected '<'
15006
+ app/views/people/index.html.erb:59: unknown regexp options - td
15007
+ app/views/people/index.html.erb:62: syntax error, unexpected '<'
15008
+ app/views/people/index.html.erb:65: unknown regexp options - tbdy
15009
+ app/views/people/index.html.erb:67: syntax error, unexpected '<'
15010
+ app/views/people/index.html.erb:68: syntax error, unexpected '<'
15011
+ app/views/people/index.html.erb:68: syntax error, unexpected $undefined
15012
+ app/views/people/index.html.erb:79: syntax error, unexpected keyword_ensure, expecting ')'
15013
+ app/views/people/index.html.erb:81: syntax error, unexpected keyword_end, expecting ')'
15014
+
15015
+
15016
+ Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.8ms)
15017
+ Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
15018
+ Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (14.7ms)
15019
+ Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (30.9ms)
15020
+
15021
+
15022
+ Started GET "/people" for 127.0.0.1 at 2014-10-20 19:12:04 -0400
15023
+ Processing by PeopleController#index as HTML
15024
+ Rendered application/_sort_form.html.haml (2.1ms)
15025
+ Rendered application/_search_form.html.haml (1.7ms)
15026
+ Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%') LIMIT 15 OFFSET 0
15027
+  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%')
15028
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%') LIMIT 1 OFFSET 0
15029
+ Rendered application/_pagination.html.erb (527.0ms)
15030
+ Rendered people/index.html.erb within layouts/application (592.0ms)
15031
+ Rendered application/_flash_messages.html.erb (0.5ms)
15032
+ Completed 200 OK in 725ms (Views: 722.7ms | ActiveRecord: 0.7ms)
15033
+
15034
+
15035
+ Started GET "/assets/controller_scaffolding.css?body=1" for 127.0.0.1 at 2014-10-20 19:12:05 -0400
15036
+
15037
+
15038
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-20 19:12:05 -0400
15039
+
15040
+
15041
+ Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-10-20 19:12:05 -0400
15042
+
15043
+
15044
+ Started GET "/assets/ext_index_nav.js?body=1" for 127.0.0.1 at 2014-10-20 19:12:05 -0400
15045
+
15046
+
15047
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-10-20 19:12:05 -0400
15048
+
15049
+
15050
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-10-20 19:12:05 -0400
15051
+
15052
+
15053
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-20 19:12:05 -0400
15054
+
15055
+
15056
+ Started GET "/people/4/edit" for 127.0.0.1 at 2014-10-20 19:12:11 -0400
15057
+ Processing by PeopleController#edit as HTML
15058
+ Parameters: {"id"=>"4"}
15059
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 4]]
15060
+ Rendered people/_form.html.erb (86.3ms)
15061
+ Rendered people/edit.html.erb within layouts/application (87.4ms)
15062
+ Rendered application/_flash_messages.html.erb (0.1ms)
15063
+ Completed 200 OK in 162ms (Views: 160.7ms | ActiveRecord: 0.2ms)
15064
+
15065
+
15066
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-10-20 19:12:12 -0400
15067
+
15068
+
15069
+ Started GET "/assets/ext_index_nav.js?body=1" for 127.0.0.1 at 2014-10-20 19:12:12 -0400
15070
+
15071
+
15072
+ Started GET "/people" for 127.0.0.1 at 2014-10-20 20:34:46 -0400
15073
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
15074
+ Processing by PeopleController#index as HTML
15075
+ Rendered people/index.html.erb within layouts/application (1.3ms)
15076
+ Completed 500 Internal Server Error in 40ms
15077
+
15078
+ SyntaxError (/Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:11: syntax error, unexpected '<', expecting ')'
15079
+ </td>
15080
+ ^
15081
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:14: unknown regexp options - td
15082
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:15: syntax error, unexpected '<'
15083
+ </tr>
15084
+ ^
15085
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:16: unknown regexp options - tabl
15086
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:17: syntax error, unexpected '<'
15087
+ </td>
15088
+ ^
15089
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:18: unknown regexp options - tr
15090
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:21: syntax error, unexpected '<'
15091
+ <tr class="header-row" style="font-weight: bold;">
15092
+ ^
15093
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:21: syntax error, unexpected tIDENTIFIER, expecting ')'
15094
+ <tr class="header-row" style="font-weight: bold;">
15095
+ ^
15096
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:23: syntax error, unexpected '<'
15097
+ <td>First name</td>
15098
+ ^
15099
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:23: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '('
15100
+ <td>First name</td>
15101
+ ^
15102
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:25: unknown regexp options - td
15103
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:27: syntax error, unexpected '<'
15104
+ <td>Email</td>
15105
+ ^
15106
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:29: unknown regexp options - td
15107
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:31: syntax error, unexpected '<'
15108
+ <td>Dob</td>
15109
+ ^
15110
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:33: unknown regexp options - td
15111
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:36: syntax error, unexpected '<'
15112
+ <td class="link_col"></td>
15113
+ ^
15114
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:36: syntax error, unexpected '<'
15115
+ <td class="link_col"></td>
15116
+ ^
15117
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:39: unknown regexp options - td
15118
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:41: syntax error, unexpected '<'
15119
+ </tr>
15120
+ ^
15121
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:42: unknown regexp options - thad
15122
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:43: syntax error, unexpected '<'
15123
+ <tbody class="items">
15124
+ ^
15125
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:45: syntax error, unexpected keyword_class, expecting keyword_do or '{' or '('
15126
+ @output_buffer.safe_append=' <tr class="item">
15127
+ ^
15128
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:47: syntax error, unexpected '<'
15129
+ <td>'.freeze;@output_buffer.ap...
15130
+ ^
15131
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:49: unknown regexp options - td
15132
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:51: syntax error, unexpected '<'
15133
+ <td>'.freeze;@output_buffer.ap...
15134
+ ^
15135
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:53: unknown regexp options - td
15136
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:55: syntax error, unexpected '<'
15137
+ <td>'.freeze;@output_buffer.ap...
15138
+ ^
15139
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:57: unknown regexp options - td
15140
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:60: syntax error, unexpected '<'
15141
+ <td>'.freeze;@output_buffer.ap...
15142
+ ^
15143
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:63: unknown regexp options - td
15144
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:65: syntax error, unexpected '<'
15145
+ </tr>
15146
+ ^
15147
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:67: unknown regexp options - tbdy
15148
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:69: syntax error, unexpected '<'
15149
+ <tr id="pagination-row">
15150
+ ^
15151
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:70: syntax error, unexpected '<'
15152
+ <td colspan=\'8\' class= "pagination-container">
15153
+ ^
15154
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:70: syntax error, unexpected $undefined
15155
+ <td colspan=\'8\' class= "pagination-container">
15156
+ ^
15157
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:81: syntax error, unexpected keyword_ensure, expecting ')'
15158
+ /Users/johnomalley/Rails_Projects/Rails_4.1/controller_scaffolding/test/dummy/app/views/people/index.html.erb:83: syntax error, unexpected keyword_end, expecting ')'):
15159
+ app/views/people/index.html.erb:11: syntax error, unexpected '<', expecting ')'
15160
+ app/views/people/index.html.erb:14: unknown regexp options - td
15161
+ app/views/people/index.html.erb:15: syntax error, unexpected '<'
15162
+ app/views/people/index.html.erb:16: unknown regexp options - tabl
15163
+ app/views/people/index.html.erb:17: syntax error, unexpected '<'
15164
+ app/views/people/index.html.erb:18: unknown regexp options - tr
15165
+ app/views/people/index.html.erb:21: syntax error, unexpected '<'
15166
+ app/views/people/index.html.erb:21: syntax error, unexpected tIDENTIFIER, expecting ')'
15167
+ app/views/people/index.html.erb:23: syntax error, unexpected '<'
15168
+ app/views/people/index.html.erb:23: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '('
15169
+ app/views/people/index.html.erb:25: unknown regexp options - td
15170
+ app/views/people/index.html.erb:27: syntax error, unexpected '<'
15171
+ app/views/people/index.html.erb:29: unknown regexp options - td
15172
+ app/views/people/index.html.erb:31: syntax error, unexpected '<'
15173
+ app/views/people/index.html.erb:33: unknown regexp options - td
15174
+ app/views/people/index.html.erb:36: syntax error, unexpected '<'
15175
+ app/views/people/index.html.erb:36: syntax error, unexpected '<'
15176
+ app/views/people/index.html.erb:39: unknown regexp options - td
15177
+ app/views/people/index.html.erb:41: syntax error, unexpected '<'
15178
+ app/views/people/index.html.erb:42: unknown regexp options - thad
15179
+ app/views/people/index.html.erb:43: syntax error, unexpected '<'
15180
+ app/views/people/index.html.erb:45: syntax error, unexpected keyword_class, expecting keyword_do or '{' or '('
15181
+ app/views/people/index.html.erb:47: syntax error, unexpected '<'
15182
+ app/views/people/index.html.erb:49: unknown regexp options - td
15183
+ app/views/people/index.html.erb:51: syntax error, unexpected '<'
15184
+ app/views/people/index.html.erb:53: unknown regexp options - td
15185
+ app/views/people/index.html.erb:55: syntax error, unexpected '<'
15186
+ app/views/people/index.html.erb:57: unknown regexp options - td
15187
+ app/views/people/index.html.erb:60: syntax error, unexpected '<'
15188
+ app/views/people/index.html.erb:63: unknown regexp options - td
15189
+ app/views/people/index.html.erb:65: syntax error, unexpected '<'
15190
+ app/views/people/index.html.erb:67: unknown regexp options - tbdy
15191
+ app/views/people/index.html.erb:69: syntax error, unexpected '<'
15192
+ app/views/people/index.html.erb:70: syntax error, unexpected '<'
15193
+ app/views/people/index.html.erb:70: syntax error, unexpected $undefined
15194
+ app/views/people/index.html.erb:81: syntax error, unexpected keyword_ensure, expecting ')'
15195
+ app/views/people/index.html.erb:83: syntax error, unexpected keyword_end, expecting ')'
15196
+
15197
+
15198
+ Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
15199
+ Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
15200
+ Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (10.4ms)
15201
+ Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (25.9ms)
15202
+
15203
+
15204
+ Started GET "/people" for 127.0.0.1 at 2014-10-20 20:36:18 -0400
15205
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
15206
+ Processing by PeopleController#index as HTML
15207
+ Rendered application/_sort_form.html.haml (1.7ms)
15208
+ Rendered application/_search_form.html.haml (2.0ms)
15209
+ Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%') LIMIT 15 OFFSET 0
15210
+  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%')
15211
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%') LIMIT 1 OFFSET 0
15212
+ Rendered application/_pagination.html.erb (412.4ms)
15213
+ Rendered people/index.html.erb within layouts/application (438.3ms)
15214
+ Rendered application/_flash_messages.html.erb (0.5ms)
15215
+ Completed 200 OK in 656ms (Views: 651.4ms | ActiveRecord: 1.1ms)
15216
+
15217
+
15218
+ Started GET "/assets/jquery-ui-timepicker-addon.css?body=1" for 127.0.0.1 at 2014-10-20 20:36:19 -0400
15219
+
15220
+
15221
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-20 20:36:19 -0400
15222
+
15223
+
15224
+ Started GET "/assets/hot_date_rails.css?body=1" for 127.0.0.1 at 2014-10-20 20:36:19 -0400
15225
+
15226
+
15227
+ Started GET "/assets/hot_date_rails/hot_date_rails.css?body=1" for 127.0.0.1 at 2014-10-20 20:36:19 -0400
15228
+
15229
+
15230
+ Started GET "/assets/controller_scaffolding.css?body=1" for 127.0.0.1 at 2014-10-20 20:36:19 -0400
15231
+
15232
+
15233
+ Started GET "/assets/jquery-ui.css?body=1" for 127.0.0.1 at 2014-10-20 20:36:19 -0400
15234
+
15235
+
15236
+ Started GET "/assets/jquery-ui.min.js?body=1" for 127.0.0.1 at 2014-10-20 20:36:19 -0400
15237
+
15238
+
15239
+ Started GET "/assets/jquery-ui-timepicker-addon.js?body=1" for 127.0.0.1 at 2014-10-20 20:36:19 -0400
15240
+
15241
+
15242
+ Started GET "/assets/hot_date_rails.js?body=1" for 127.0.0.1 at 2014-10-20 20:36:19 -0400
15243
+
15244
+
15245
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-10-20 20:36:19 -0400
15246
+
15247
+
15248
+ Started GET "/assets/hot_date_rails/hot_date_rails.js?body=1" for 127.0.0.1 at 2014-10-20 20:36:19 -0400
15249
+
15250
+
15251
+ Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-10-20 20:36:19 -0400
15252
+
15253
+
15254
+ Started GET "/assets/ext_index_nav.js?body=1" for 127.0.0.1 at 2014-10-20 20:36:19 -0400
15255
+
15256
+
15257
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-20 20:36:19 -0400
15258
+
15259
+
15260
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-10-20 20:36:19 -0400
15261
+
15262
+
15263
+ Started GET "/people?sort_by=dob+desc" for 127.0.0.1 at 2014-10-20 20:36:33 -0400
15264
+ Processing by PeopleController#index as HTML
15265
+ Parameters: {"sort_by"=>"dob desc"}
15266
+ Rendered application/_sort_form.html.haml (1.2ms)
15267
+ Rendered application/_search_form.html.haml (0.5ms)
15268
+ Person Load (0.6ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%') ORDER BY "people"."dob" DESC LIMIT 15 OFFSET 0
15269
+  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%')
15270
+ Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%') ORDER BY "people"."dob" DESC LIMIT 1 OFFSET 0
15271
+ Rendered application/_pagination.html.erb (5.7ms)
15272
+ Rendered people/index.html.erb within layouts/application (25.9ms)
15273
+ Rendered application/_flash_messages.html.erb (0.1ms)
15274
+ Completed 200 OK in 131ms (Views: 128.5ms | ActiveRecord: 1.5ms)
15275
+
15276
+
15277
+ Started GET "/assets/hot_date_rails/hot_date_rails.css?body=1" for 127.0.0.1 at 2014-10-20 20:36:33 -0400
15278
+
15279
+
15280
+ Started GET "/assets/jquery-ui-timepicker-addon.css?body=1" for 127.0.0.1 at 2014-10-20 20:36:33 -0400
15281
+
15282
+
15283
+ Started GET "/assets/jquery-ui.min.js?body=1" for 127.0.0.1 at 2014-10-20 20:36:33 -0400
15284
+
15285
+
15286
+ Started GET "/assets/controller_scaffolding.css?body=1" for 127.0.0.1 at 2014-10-20 20:36:33 -0400
15287
+
15288
+
15289
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-20 20:36:33 -0400
15290
+
15291
+
15292
+ Started GET "/assets/jquery-ui.css?body=1" for 127.0.0.1 at 2014-10-20 20:36:33 -0400
15293
+
15294
+
15295
+ Started GET "/assets/jquery-ui-timepicker-addon.js?body=1" for 127.0.0.1 at 2014-10-20 20:36:33 -0400
15296
+
15297
+
15298
+ Started GET "/assets/hot_date_rails.css?body=1" for 127.0.0.1 at 2014-10-20 20:36:33 -0400
15299
+
15300
+
15301
+ Started GET "/assets/hot_date_rails.js?body=1" for 127.0.0.1 at 2014-10-20 20:36:33 -0400
15302
+
15303
+
15304
+ Started GET "/assets/hot_date_rails/hot_date_rails.js?body=1" for 127.0.0.1 at 2014-10-20 20:36:33 -0400
15305
+
15306
+
15307
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-10-20 20:36:33 -0400
15308
+
15309
+
15310
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-10-20 20:36:33 -0400
15311
+
15312
+
15313
+ Started GET "/assets/ext_index_nav.js?body=1" for 127.0.0.1 at 2014-10-20 20:36:33 -0400
15314
+
15315
+
15316
+ Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-10-20 20:36:33 -0400
15317
+
15318
+
15319
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-20 20:36:33 -0400
15320
+
15321
+
15322
+ Started GET "/people?sort_by=dob+desc&search_for=lou" for 127.0.0.1 at 2014-10-20 20:36:52 -0400
15323
+ Processing by PeopleController#index as HTML
15324
+ Parameters: {"sort_by"=>"dob desc", "search_for"=>"lou"}
15325
+ Rendered application/_sort_form.html.haml (0.8ms)
15326
+ Rendered application/_search_form.html.haml (0.4ms)
15327
+ Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%lou%' or last_name like '%lou%' or email like '%lou%' or title like '%lou%') ORDER BY "people"."dob" DESC LIMIT 15 OFFSET 0
15328
+ Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%lou%' or last_name like '%lou%' or email like '%lou%' or title like '%lou%') ORDER BY "people"."dob" DESC LIMIT 1 OFFSET 0
15329
+ Rendered application/_pagination.html.erb (1.9ms)
15330
+ Rendered people/index.html.erb within layouts/application (9.6ms)
15331
+ Rendered application/_flash_messages.html.erb (0.1ms)
15332
+ Completed 200 OK in 122ms (Views: 120.0ms | ActiveRecord: 0.7ms)
15333
+
15334
+
15335
+ Started GET "/assets/jquery-ui-timepicker-addon.css?body=1" for 127.0.0.1 at 2014-10-20 20:36:52 -0400
15336
+
15337
+
15338
+ Started GET "/assets/hot_date_rails.css?body=1" for 127.0.0.1 at 2014-10-20 20:36:52 -0400
15339
+
15340
+
15341
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-20 20:36:52 -0400
15342
+
15343
+
15344
+ Started GET "/assets/jquery-ui.css?body=1" for 127.0.0.1 at 2014-10-20 20:36:52 -0400
15345
+
15346
+
15347
+ Started GET "/assets/controller_scaffolding.css?body=1" for 127.0.0.1 at 2014-10-20 20:36:52 -0400
15348
+
15349
+
15350
+ Started GET "/assets/hot_date_rails/hot_date_rails.css?body=1" for 127.0.0.1 at 2014-10-20 20:36:52 -0400
15351
+
15352
+
15353
+ Started GET "/assets/jquery-ui.min.js?body=1" for 127.0.0.1 at 2014-10-20 20:36:52 -0400
15354
+
15355
+
15356
+ Started GET "/assets/jquery-ui-timepicker-addon.js?body=1" for 127.0.0.1 at 2014-10-20 20:36:52 -0400
15357
+
15358
+
15359
+ Started GET "/assets/hot_date_rails/hot_date_rails.js?body=1" for 127.0.0.1 at 2014-10-20 20:36:52 -0400
15360
+
15361
+
15362
+ Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-10-20 20:36:52 -0400
15363
+
15364
+
15365
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-10-20 20:36:52 -0400
15366
+
15367
+
15368
+ Started GET "/assets/hot_date_rails.js?body=1" for 127.0.0.1 at 2014-10-20 20:36:52 -0400
15369
+
15370
+
15371
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-10-20 20:36:52 -0400
15372
+
15373
+
15374
+ Started GET "/assets/ext_index_nav.js?body=1" for 127.0.0.1 at 2014-10-20 20:36:52 -0400
15375
+
15376
+
15377
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-20 20:36:52 -0400
15378
+
15379
+
15380
+ Started GET "/people?sort_by=dob+desc&search_for=" for 127.0.0.1 at 2014-10-20 20:37:03 -0400
15381
+ Processing by PeopleController#index as HTML
15382
+ Parameters: {"sort_by"=>"dob desc", "search_for"=>""}
15383
+ Rendered application/_sort_form.html.haml (0.8ms)
15384
+ Rendered application/_search_form.html.haml (0.4ms)
15385
+ Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%') ORDER BY "people"."dob" DESC LIMIT 15 OFFSET 0
15386
+  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%')
15387
+ Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%') ORDER BY "people"."dob" DESC LIMIT 1 OFFSET 0
15388
+ Rendered application/_pagination.html.erb (3.5ms)
15389
+ Rendered people/index.html.erb within layouts/application (16.9ms)
15390
+ Rendered application/_flash_messages.html.erb (0.1ms)
15391
+ Completed 200 OK in 115ms (Views: 112.5ms | ActiveRecord: 1.0ms)
15392
+
15393
+
15394
+ Started GET "/assets/jquery-ui-timepicker-addon.css?body=1" for 127.0.0.1 at 2014-10-20 20:37:04 -0400
15395
+
15396
+
15397
+ Started GET "/assets/hot_date_rails/hot_date_rails.css?body=1" for 127.0.0.1 at 2014-10-20 20:37:04 -0400
15398
+
15399
+
15400
+ Started GET "/assets/controller_scaffolding.css?body=1" for 127.0.0.1 at 2014-10-20 20:37:04 -0400
15401
+
15402
+
15403
+ Started GET "/assets/hot_date_rails.css?body=1" for 127.0.0.1 at 2014-10-20 20:37:04 -0400
15404
+
15405
+
15406
+ Started GET "/assets/jquery-ui.css?body=1" for 127.0.0.1 at 2014-10-20 20:37:04 -0400
15407
+
15408
+
15409
+ Started GET "/assets/jquery-ui.min.js?body=1" for 127.0.0.1 at 2014-10-20 20:37:04 -0400
15410
+
15411
+
15412
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-20 20:37:04 -0400
15413
+
15414
+
15415
+ Started GET "/assets/jquery-ui-timepicker-addon.js?body=1" for 127.0.0.1 at 2014-10-20 20:37:04 -0400
15416
+
15417
+
15418
+ Started GET "/assets/hot_date_rails/hot_date_rails.js?body=1" for 127.0.0.1 at 2014-10-20 20:37:04 -0400
15419
+
15420
+
15421
+ Started GET "/assets/hot_date_rails.js?body=1" for 127.0.0.1 at 2014-10-20 20:37:04 -0400
15422
+
15423
+
15424
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-10-20 20:37:04 -0400
15425
+
15426
+
15427
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-10-20 20:37:04 -0400
15428
+
15429
+
15430
+ Started GET "/assets/ext_index_nav.js?body=1" for 127.0.0.1 at 2014-10-20 20:37:04 -0400
15431
+
15432
+
15433
+ Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-10-20 20:37:04 -0400
15434
+
15435
+
15436
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-20 20:37:04 -0400
15437
+
15438
+
15439
+ Started GET "/people/65/edit" for 127.0.0.1 at 2014-10-20 20:37:08 -0400
15440
+ Processing by PeopleController#edit as HTML
15441
+ Parameters: {"id"=>"65"}
15442
+ Person Load (0.3ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 65]]
15443
+ Rendered people/_form.html.erb (47.8ms)
15444
+ Rendered people/edit.html.erb within layouts/application (49.3ms)
15445
+ Rendered application/_flash_messages.html.erb (0.1ms)
15446
+ Completed 200 OK in 151ms (Views: 148.9ms | ActiveRecord: 0.3ms)
15447
+
15448
+
15449
+ Started GET "/assets/jquery-ui.css?body=1" for 127.0.0.1 at 2014-10-20 20:37:08 -0400
15450
+
15451
+
15452
+ Started GET "/assets/hot_date_rails.css?body=1" for 127.0.0.1 at 2014-10-20 20:37:08 -0400
15453
+
15454
+
15455
+ Started GET "/assets/jquery-ui-timepicker-addon.css?body=1" for 127.0.0.1 at 2014-10-20 20:37:08 -0400
15456
+
15457
+
15458
+ Started GET "/assets/controller_scaffolding.css?body=1" for 127.0.0.1 at 2014-10-20 20:37:08 -0400
15459
+
15460
+
15461
+ Started GET "/assets/hot_date_rails/hot_date_rails.css?body=1" for 127.0.0.1 at 2014-10-20 20:37:08 -0400
15462
+
15463
+
15464
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-20 20:37:08 -0400
15465
+
15466
+
15467
+ Started GET "/assets/jquery-ui.min.js?body=1" for 127.0.0.1 at 2014-10-20 20:37:08 -0400
15468
+
15469
+
15470
+ Started GET "/assets/jquery-ui-timepicker-addon.js?body=1" for 127.0.0.1 at 2014-10-20 20:37:08 -0400
15471
+
15472
+
15473
+ Started GET "/assets/hot_date_rails.js?body=1" for 127.0.0.1 at 2014-10-20 20:37:08 -0400
15474
+
15475
+
15476
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-10-20 20:37:08 -0400
15477
+
15478
+
15479
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-10-20 20:37:08 -0400
15480
+
15481
+
15482
+ Started GET "/assets/ext_index_nav.js?body=1" for 127.0.0.1 at 2014-10-20 20:37:08 -0400
15483
+
15484
+
15485
+ Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-10-20 20:37:08 -0400
15486
+
15487
+
15488
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-20 20:37:08 -0400
15489
+
15490
+
15491
+ Started GET "/assets/hot_date_rails/hot_date_rails.js?body=1" for 127.0.0.1 at 2014-10-20 20:37:08 -0400
15492
+
15493
+
15494
+ Started GET "/assets/jquery-ui.css?body=1" for 127.0.0.1 at 2014-10-20 20:39:05 -0400
15495
+
15496
+
15497
+ Started GET "/assets/hot_date_rails.css?body=1" for 127.0.0.1 at 2014-10-20 20:39:05 -0400
15498
+
15499
+
15500
+ Started GET "/assets/jquery-ui-timepicker-addon.css?body=1" for 127.0.0.1 at 2014-10-20 20:39:05 -0400
15501
+
15502
+
15503
+ Started GET "/assets/controller_scaffolding.css?body=1" for 127.0.0.1 at 2014-10-20 20:39:05 -0400
15504
+
15505
+
15506
+ Started GET "/assets/hot_date_rails/hot_date_rails.css?body=1" for 127.0.0.1 at 2014-10-20 20:39:05 -0400
15507
+
15508
+
15509
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-20 20:39:05 -0400
15510
+
15511
+
15512
+ Started PATCH "/people/65" for 127.0.0.1 at 2014-10-20 20:39:54 -0400
15513
+ Processing by PeopleController#update as HTML
15514
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"+IJvj9ktBJ4CSwsoZY5tnXpufRWxKW/mrr9ssssLSts=", "person"=>{"first_name"=>"Mathilde", "last_name"=>"O'Connell", "email"=>"vivien_bernier@stoltenbergwyman.net", "title"=>"Sales Rep", "dob"=>"2014-04-08 07:04:00.000000", "is_manager"=>"0"}, "dob"=>"04/08/2014 07:04", "btn_index"=>"Save & Back to List", "id"=>"65"}
15515
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 65]]
15516
+  (0.1ms) begin transaction
15517
+  (0.0ms) commit transaction
15518
+ Redirected to http://localhost:3000/people
15519
+ Completed 302 Found in 3ms (ActiveRecord: 0.2ms)
15520
+
15521
+
15522
+ Started GET "/people" for 127.0.0.1 at 2014-10-20 20:39:54 -0400
15523
+ Processing by PeopleController#index as HTML
15524
+ Rendered application/_sort_form.html.haml (0.6ms)
15525
+ Rendered application/_search_form.html.haml (0.3ms)
15526
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%') LIMIT 15 OFFSET 0
15527
+  (0.1ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%')
15528
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%') LIMIT 1 OFFSET 0
15529
+ Rendered application/_pagination.html.erb (3.1ms)
15530
+ Rendered people/index.html.erb within layouts/application (13.5ms)
15531
+ Rendered application/_flash_messages.html.erb (0.1ms)
15532
+ Completed 200 OK in 107ms (Views: 105.6ms | ActiveRecord: 0.6ms)
15533
+
15534
+
15535
+ Started GET "/assets/jquery-ui.css?body=1" for 127.0.0.1 at 2014-10-20 20:39:54 -0400
15536
+
15537
+
15538
+ Started GET "/assets/hot_date_rails/hot_date_rails.css?body=1" for 127.0.0.1 at 2014-10-20 20:39:54 -0400
15539
+
15540
+
15541
+ Started GET "/assets/jquery-ui-timepicker-addon.css?body=1" for 127.0.0.1 at 2014-10-20 20:39:54 -0400
15542
+
15543
+
15544
+ Started GET "/assets/jquery-ui.min.js?body=1" for 127.0.0.1 at 2014-10-20 20:39:54 -0400
15545
+
15546
+
15547
+ Started GET "/assets/jquery-ui-timepicker-addon.js?body=1" for 127.0.0.1 at 2014-10-20 20:39:54 -0400
15548
+
15549
+
15550
+ Started GET "/assets/hot_date_rails.css?body=1" for 127.0.0.1 at 2014-10-20 20:39:54 -0400
15551
+
15552
+
15553
+ Started GET "/assets/controller_scaffolding.css?body=1" for 127.0.0.1 at 2014-10-20 20:39:54 -0400
15554
+
15555
+
15556
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-20 20:39:54 -0400
15557
+
15558
+
15559
+ Started GET "/assets/hot_date_rails/hot_date_rails.js?body=1" for 127.0.0.1 at 2014-10-20 20:39:54 -0400
15560
+
15561
+
15562
+ Started GET "/assets/hot_date_rails.js?body=1" for 127.0.0.1 at 2014-10-20 20:39:54 -0400
15563
+
15564
+
15565
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-10-20 20:39:54 -0400
15566
+
15567
+
15568
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-10-20 20:39:54 -0400
15569
+
15570
+
15571
+ Started GET "/assets/ext_index_nav.js?body=1" for 127.0.0.1 at 2014-10-20 20:39:54 -0400
15572
+
15573
+
15574
+ Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-10-20 20:39:54 -0400
15575
+
15576
+
15577
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-20 20:39:54 -0400
15578
+
15579
+
15580
+ Started DELETE "/people/1" for 127.0.0.1 at 2014-10-20 20:40:02 -0400
15581
+ Processing by PeopleController#destroy as HTML
15582
+ Parameters: {"authenticity_token"=>"+IJvj9ktBJ4CSwsoZY5tnXpufRWxKW/mrr9ssssLSts=", "id"=>"1"}
15583
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 1]]
15584
+  (0.1ms) begin transaction
15585
+ SQL (0.6ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 1]]
15586
+  (1.3ms) commit transaction
15587
+ Redirected to http://localhost:3000/people
15588
+ Completed 302 Found in 45ms (ActiveRecord: 2.1ms)
15589
+
15590
+
15591
+ Started GET "/people" for 127.0.0.1 at 2014-10-20 20:40:02 -0400
15592
+ Processing by PeopleController#index as HTML
15593
+ Rendered application/_sort_form.html.haml (0.7ms)
15594
+ Rendered application/_search_form.html.haml (0.4ms)
15595
+ Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%') LIMIT 15 OFFSET 0
15596
+  (0.2ms) SELECT COUNT(*) FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%')
15597
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%') LIMIT 1 OFFSET 0
15598
+ Rendered application/_pagination.html.erb (5.8ms)
15599
+ Rendered people/index.html.erb within layouts/application (23.7ms)
15600
+ Rendered application/_flash_messages.html.erb (0.1ms)
15601
+ Completed 200 OK in 138ms (Views: 135.9ms | ActiveRecord: 0.8ms)
15602
+
15603
+
15604
+ Started GET "/assets/hot_date_rails/hot_date_rails.css?body=1" for 127.0.0.1 at 2014-10-20 20:40:02 -0400
15605
+
15606
+
15607
+ Started GET "/assets/jquery-ui-timepicker-addon.css?body=1" for 127.0.0.1 at 2014-10-20 20:40:02 -0400
15608
+
15609
+
15610
+ Started GET "/assets/controller_scaffolding.css?body=1" for 127.0.0.1 at 2014-10-20 20:40:02 -0400
15611
+
15612
+
15613
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-20 20:40:02 -0400
15614
+
15615
+
15616
+ Started GET "/assets/jquery-ui.min.js?body=1" for 127.0.0.1 at 2014-10-20 20:40:02 -0400
15617
+
15618
+
15619
+ Started GET "/assets/jquery-ui-timepicker-addon.js?body=1" for 127.0.0.1 at 2014-10-20 20:40:02 -0400
15620
+
15621
+
15622
+ Started GET "/assets/hot_date_rails.css?body=1" for 127.0.0.1 at 2014-10-20 20:40:02 -0400
15623
+
15624
+
15625
+ Started GET "/assets/hot_date_rails.js?body=1" for 127.0.0.1 at 2014-10-20 20:40:02 -0400
15626
+
15627
+
15628
+ Started GET "/assets/hot_date_rails/hot_date_rails.js?body=1" for 127.0.0.1 at 2014-10-20 20:40:02 -0400
15629
+
15630
+
15631
+ Started GET "/assets/jquery-ui.css?body=1" for 127.0.0.1 at 2014-10-20 20:40:02 -0400
15632
+
15633
+
15634
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-10-20 20:40:02 -0400
15635
+
15636
+
15637
+ Started GET "/assets/ext_index_nav.js?body=1" for 127.0.0.1 at 2014-10-20 20:40:02 -0400
15638
+
15639
+
15640
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-10-20 20:40:02 -0400
15641
+
15642
+
15643
+ Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-10-20 20:40:02 -0400
15644
+
15645
+
15646
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-20 20:40:02 -0400
15647
+
15648
+
15649
+ Started GET "/people/2/edit" for 127.0.0.1 at 2014-10-20 20:41:22 -0400
15650
+ Processing by PeopleController#edit as HTML
15651
+ Parameters: {"id"=>"2"}
15652
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]]
15653
+ Rendered people/_form.html.erb (3.6ms)
15654
+ Rendered people/edit.html.erb within layouts/application (4.4ms)
15655
+ Rendered application/_flash_messages.html.erb (0.1ms)
15656
+ Completed 200 OK in 106ms (Views: 104.6ms | ActiveRecord: 0.2ms)
15657
+
15658
+
15659
+ Started GET "/assets/jquery-ui-timepicker-addon.css?body=1" for 127.0.0.1 at 2014-10-20 20:41:22 -0400
15660
+
15661
+
15662
+ Started GET "/assets/hot_date_rails.css?body=1" for 127.0.0.1 at 2014-10-20 20:41:22 -0400
15663
+
15664
+
15665
+ Started GET "/assets/controller_scaffolding.css?body=1" for 127.0.0.1 at 2014-10-20 20:41:22 -0400
15666
+
15667
+
15668
+ Started GET "/assets/hot_date_rails/hot_date_rails.css?body=1" for 127.0.0.1 at 2014-10-20 20:41:22 -0400
15669
+
15670
+
15671
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-20 20:41:22 -0400
15672
+
15673
+
15674
+ Started GET "/assets/jquery-ui-timepicker-addon.js?body=1" for 127.0.0.1 at 2014-10-20 20:41:22 -0400
15675
+
15676
+
15677
+ Started GET "/assets/jquery-ui.min.js?body=1" for 127.0.0.1 at 2014-10-20 20:41:22 -0400
15678
+
15679
+
15680
+ Started GET "/assets/jquery-ui.css?body=1" for 127.0.0.1 at 2014-10-20 20:41:22 -0400
15681
+
15682
+
15683
+ Started GET "/assets/hot_date_rails/hot_date_rails.js?body=1" for 127.0.0.1 at 2014-10-20 20:41:22 -0400
15684
+
15685
+
15686
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-10-20 20:41:22 -0400
15687
+
15688
+
15689
+ Started GET "/assets/hot_date_rails.js?body=1" for 127.0.0.1 at 2014-10-20 20:41:22 -0400
15690
+
15691
+
15692
+ Started GET "/assets/ext_index_nav.js?body=1" for 127.0.0.1 at 2014-10-20 20:41:22 -0400
15693
+
15694
+
15695
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-20 20:41:22 -0400
15696
+
15697
+
15698
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-10-20 20:41:22 -0400
15699
+
15700
+
15701
+ Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-10-20 20:41:22 -0400
15702
+
15703
+
15704
+ Started GET "/people/2/edit" for 127.0.0.1 at 2014-10-20 21:00:55 -0400
15705
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
15706
+ Processing by PeopleController#edit as HTML
15707
+ Parameters: {"id"=>"2"}
15708
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]]
15709
+ Rendered people/_form.html.erb (472.3ms)
15710
+ Rendered people/edit.html.erb within layouts/application (477.4ms)
15711
+ Rendered application/_flash_messages.html.erb (0.5ms)
15712
+ Completed 200 OK in 522ms (Views: 511.4ms | ActiveRecord: 0.5ms)
15713
+
15714
+
15715
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-10-20 21:00:56 -0400
15716
+
15717
+
15718
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-10-20 21:00:56 -0400
15719
+
15720
+
15721
+ Started GET "/people/2/edit" for 127.0.0.1 at 2014-10-20 21:01:10 -0400
15722
+ Processing by PeopleController#edit as HTML
15723
+ Parameters: {"id"=>"2"}
15724
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]]
15725
+ Rendered people/_form.html.erb (3.7ms)
15726
+ Rendered people/edit.html.erb within layouts/application (4.4ms)
15727
+ Rendered application/_flash_messages.html.erb (0.1ms)
15728
+ Completed 200 OK in 10ms (Views: 9.1ms | ActiveRecord: 0.2ms)
15729
+
15730
+
15731
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-10-20 21:01:10 -0400
15732
+
15733
+
15734
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-10-20 21:01:10 -0400
15735
+
15736
+
15737
+ Started GET "/people/2/edit" for 127.0.0.1 at 2014-10-20 21:02:24 -0400
15738
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
15739
+ Processing by PeopleController#edit as HTML
15740
+ Parameters: {"id"=>"2"}
15741
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]]
15742
+ Rendered people/_form.html.erb (414.3ms)
15743
+ Rendered people/edit.html.erb within layouts/application (418.9ms)
15744
+ Rendered application/_flash_messages.html.erb (0.8ms)
15745
+ Completed 200 OK in 470ms (Views: 461.9ms | ActiveRecord: 0.5ms)
15746
+
15747
+
15748
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-10-20 21:02:25 -0400
15749
+
15750
+
15751
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-10-20 21:02:25 -0400
15752
+
15753
+
15754
+ Started GET "/assets/ui-bg_highlight-soft_100_eeeeee_1x100.png" for 127.0.0.1 at 2014-10-20 21:02:25 -0400
15755
+
15756
+
15757
+ Started GET "/assets/ui-bg_gloss-wave_35_f6a828_500x100.png" for 127.0.0.1 at 2014-10-20 21:02:30 -0400
15758
+
15759
+
15760
+ Started GET "/assets/ui-icons_ffffff_256x240.png" for 127.0.0.1 at 2014-10-20 21:02:30 -0400
15761
+
15762
+
15763
+ Started GET "/assets/ui-bg_glass_100_f6f6f6_1x400.png" for 127.0.0.1 at 2014-10-20 21:02:30 -0400
15764
+
15765
+
15766
+ Started GET "/assets/ui-bg_glass_65_ffffff_1x400.png" for 127.0.0.1 at 2014-10-20 21:02:30 -0400
15767
+
15768
+
15769
+ Started GET "/people/2/edit" for 127.0.0.1 at 2014-10-20 21:04:33 -0400
15770
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
15771
+ Processing by PeopleController#edit as HTML
15772
+ Parameters: {"id"=>"2"}
15773
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]]
15774
+ Rendered people/_form.html.erb (408.6ms)
15775
+ Rendered people/edit.html.erb within layouts/application (412.5ms)
15776
+ Rendered application/_flash_messages.html.erb (0.5ms)
15777
+ Completed 200 OK in 478ms (Views: 468.8ms | ActiveRecord: 0.5ms)
15778
+
15779
+
15780
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-10-20 21:04:34 -0400
15781
+
15782
+
15783
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-10-20 21:04:34 -0400
15784
+
15785
+
15786
+ Started GET "/assets/ui-bg_glass_100_fdf5ce_1x400.png" for 127.0.0.1 at 2014-10-20 21:04:42 -0400
15787
+
15788
+
15789
+ Started GET "/people/2/edit" for 127.0.0.1 at 2014-10-20 21:06:46 -0400
15790
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
15791
+ Processing by PeopleController#edit as HTML
15792
+ Parameters: {"id"=>"2"}
15793
+ Person Load (0.2ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT 1 [["id", 2]]
15794
+ Rendered people/_form.html.erb (409.8ms)
15795
+ Rendered people/edit.html.erb within layouts/application (414.3ms)
15796
+ Rendered application/_flash_messages.html.erb (0.5ms)
15797
+ Completed 200 OK in 454ms (Views: 444.9ms | ActiveRecord: 0.6ms)
15798
+
15799
+
15800
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-10-20 21:06:47 -0400
15801
+
15802
+
15803
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-10-20 21:06:47 -0400
15804
+
15805
+
15806
+ Started GET "/an_action" for 127.0.0.1 at 2014-10-20 21:23:13 -0400
15807
+
15808
+ ActionController::RoutingError (No route matches [GET] "/an_action"):
15809
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
15810
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
15811
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
15812
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
15813
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
15814
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
15815
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
15816
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
15817
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
15818
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
15819
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
15820
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
15821
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
15822
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
15823
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
15824
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
15825
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
15826
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
15827
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
15828
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
15829
+ /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
15830
+ /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
15831
+ /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
15832
+
15833
+
15834
+ Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
15835
+ Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms)
15836
+ Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (35.4ms)
15837
+ Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (58.2ms)
15838
+
15839
+
15840
+ Started GET "/an_action" for 127.0.0.1 at 2014-10-20 21:39:20 -0400
15841
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
15842
+
15843
+ ActionController::RoutingError (No route matches [GET] "/an_action"):
15844
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
15845
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
15846
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
15847
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
15848
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
15849
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
15850
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
15851
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
15852
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
15853
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
15854
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
15855
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
15856
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
15857
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
15858
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
15859
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
15860
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
15861
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
15862
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
15863
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
15864
+ /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
15865
+ /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
15866
+ /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
15867
+
15868
+
15869
+ Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
15870
+ Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms)
15871
+ Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms)
15872
+ Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (28.7ms)
15873
+
15874
+
15875
+ Started GET "/people/an_action" for 127.0.0.1 at 2014-10-20 21:39:35 -0400
15876
+
15877
+ AbstractController::ActionNotFound (The action 'show' could not be found for PeopleController):
15878
+ actionpack (4.1.6) lib/abstract_controller/base.rb:131:in `process'
15879
+ actionview (4.1.6) lib/action_view/rendering.rb:30:in `process'
15880
+ actionpack (4.1.6) lib/action_controller/metal.rb:196:in `dispatch'
15881
+ actionpack (4.1.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
15882
+ actionpack (4.1.6) lib/action_controller/metal.rb:232:in `block in action'
15883
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:82:in `call'
15884
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
15885
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:50:in `call'
15886
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:73:in `block in call'
15887
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `each'
15888
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `call'
15889
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:678:in `call'
15890
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
15891
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
15892
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
15893
+ actionpack (4.1.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
15894
+ actionpack (4.1.6) lib/action_dispatch/middleware/flash.rb:254:in `call'
15895
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
15896
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
15897
+ actionpack (4.1.6) lib/action_dispatch/middleware/cookies.rb:560:in `call'
15898
+ activerecord (4.1.6) lib/active_record/query_cache.rb:36:in `call'
15899
+ activerecord (4.1.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
15900
+ activerecord (4.1.6) lib/active_record/migration.rb:380:in `call'
15901
+ actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
15902
+ activesupport (4.1.6) lib/active_support/callbacks.rb:82:in `run_callbacks'
15903
+ actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
15904
+ actionpack (4.1.6) lib/action_dispatch/middleware/reloader.rb:73:in `call'
15905
+ actionpack (4.1.6) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
15906
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
15907
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
15908
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
15909
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
15910
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
15911
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
15912
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
15913
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
15914
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
15915
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
15916
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
15917
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
15918
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
15919
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
15920
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
15921
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
15922
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
15923
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
15924
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
15925
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
15926
+ /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
15927
+ /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
15928
+ /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
15929
+
15930
+
15931
+ Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (0.5ms)
15932
+
15933
+
15934
+ Started GET "/people/an_action" for 127.0.0.1 at 2014-10-20 21:40:35 -0400
15935
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
15936
+
15937
+ AbstractController::ActionNotFound (The action 'show' could not be found for PeopleController):
15938
+ actionpack (4.1.6) lib/abstract_controller/base.rb:131:in `process'
15939
+ actionview (4.1.6) lib/action_view/rendering.rb:30:in `process'
15940
+ actionpack (4.1.6) lib/action_controller/metal.rb:196:in `dispatch'
15941
+ actionpack (4.1.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
15942
+ actionpack (4.1.6) lib/action_controller/metal.rb:232:in `block in action'
15943
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:82:in `call'
15944
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
15945
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:50:in `call'
15946
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:73:in `block in call'
15947
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `each'
15948
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `call'
15949
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:678:in `call'
15950
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
15951
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
15952
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
15953
+ actionpack (4.1.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
15954
+ actionpack (4.1.6) lib/action_dispatch/middleware/flash.rb:254:in `call'
15955
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
15956
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
15957
+ actionpack (4.1.6) lib/action_dispatch/middleware/cookies.rb:560:in `call'
15958
+ activerecord (4.1.6) lib/active_record/query_cache.rb:36:in `call'
15959
+ activerecord (4.1.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
15960
+ activerecord (4.1.6) lib/active_record/migration.rb:380:in `call'
15961
+ actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
15962
+ activesupport (4.1.6) lib/active_support/callbacks.rb:82:in `run_callbacks'
15963
+ actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
15964
+ actionpack (4.1.6) lib/action_dispatch/middleware/reloader.rb:73:in `call'
15965
+ actionpack (4.1.6) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
15966
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
15967
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
15968
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
15969
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
15970
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
15971
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
15972
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
15973
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
15974
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
15975
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
15976
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
15977
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
15978
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
15979
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
15980
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
15981
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
15982
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
15983
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
15984
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
15985
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
15986
+ /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
15987
+ /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
15988
+ /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
15989
+
15990
+
15991
+ Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (2.1ms)
15992
+
15993
+
15994
+ Started GET "/people/an_action" for 127.0.0.1 at 2014-10-20 21:41:41 -0400
15995
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
15996
+ Processing by PeopleController#an_action as HTML
15997
+ Rendered people/an_action.html.erb within layouts/application (1.2ms)
15998
+ Rendered application/_flash_messages.html.erb (0.9ms)
15999
+ Completed 200 OK in 50ms (Views: 49.5ms | ActiveRecord: 0.0ms)
16000
+
16001
+
16002
+ Started GET "/assets/application.css" for 127.0.0.1 at 2014-10-20 21:41:42 -0400
16003
+
16004
+
16005
+ Started GET "/assets/application.js" for 127.0.0.1 at 2014-10-20 21:41:42 -0400