simple_token_authentication 1.0.0.beta.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (128) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +674 -0
  3. data/README.md +134 -0
  4. data/Rakefile +32 -0
  5. data/lib/simple_token_authentication.rb +5 -0
  6. data/lib/simple_token_authentication/acts_as_token_authenticatable.rb +33 -0
  7. data/lib/simple_token_authentication/acts_as_token_authentication_handler.rb +68 -0
  8. data/lib/simple_token_authentication/version.rb +3 -0
  9. data/lib/tasks/simple_token_authentication_tasks.rake +4 -0
  10. data/test/dummy/README.rdoc +28 -0
  11. data/test/dummy/Rakefile +6 -0
  12. data/test/dummy/app/assets/javascripts/application.js +13 -0
  13. data/test/dummy/app/assets/javascripts/posts.js +2 -0
  14. data/test/dummy/app/assets/javascripts/private_posts.js +2 -0
  15. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  16. data/test/dummy/app/assets/stylesheets/posts.css +4 -0
  17. data/test/dummy/app/assets/stylesheets/private_posts.css +4 -0
  18. data/test/dummy/app/assets/stylesheets/scaffold.css +56 -0
  19. data/test/dummy/app/controllers/application_controller.rb +21 -0
  20. data/test/dummy/app/controllers/posts_controller.rb +62 -0
  21. data/test/dummy/app/controllers/private_posts_controller.rb +63 -0
  22. data/test/dummy/app/helpers/application_helper.rb +2 -0
  23. data/test/dummy/app/helpers/posts_helper.rb +2 -0
  24. data/test/dummy/app/helpers/private_posts_helper.rb +2 -0
  25. data/test/dummy/app/models/post.rb +3 -0
  26. data/test/dummy/app/models/private_post.rb +3 -0
  27. data/test/dummy/app/models/user.rb +2 -0
  28. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  29. data/test/dummy/app/views/posts/_form.html.erb +29 -0
  30. data/test/dummy/app/views/posts/edit.html.erb +6 -0
  31. data/test/dummy/app/views/posts/index.html.erb +31 -0
  32. data/test/dummy/app/views/posts/new.html.erb +5 -0
  33. data/test/dummy/app/views/posts/show.html.erb +19 -0
  34. data/test/dummy/app/views/private_posts/_form.html.erb +29 -0
  35. data/test/dummy/app/views/private_posts/edit.html.erb +6 -0
  36. data/test/dummy/app/views/private_posts/index.html.erb +31 -0
  37. data/test/dummy/app/views/private_posts/new.html.erb +5 -0
  38. data/test/dummy/app/views/private_posts/show.html.erb +19 -0
  39. data/test/dummy/bin/bundle +3 -0
  40. data/test/dummy/bin/rails +4 -0
  41. data/test/dummy/bin/rake +4 -0
  42. data/test/dummy/config.ru +4 -0
  43. data/test/dummy/config/application.rb +23 -0
  44. data/test/dummy/config/boot.rb +5 -0
  45. data/test/dummy/config/database.yml +25 -0
  46. data/test/dummy/config/environment.rb +5 -0
  47. data/test/dummy/config/environments/development.rb +29 -0
  48. data/test/dummy/config/environments/production.rb +80 -0
  49. data/test/dummy/config/environments/test.rb +36 -0
  50. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  51. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  52. data/test/dummy/config/initializers/indefinite_articlerize.rb +4 -0
  53. data/test/dummy/config/initializers/inflections.rb +16 -0
  54. data/test/dummy/config/initializers/mime_types.rb +5 -0
  55. data/test/dummy/config/initializers/secret_token.rb +12 -0
  56. data/test/dummy/config/initializers/session_store.rb +3 -0
  57. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  58. data/test/dummy/config/locales/en.yml +23 -0
  59. data/test/dummy/config/routes.rb +60 -0
  60. data/test/dummy/db/development.sqlite3 +0 -0
  61. data/test/dummy/db/migrate/20140107041016_create_posts.rb +11 -0
  62. data/test/dummy/db/migrate/20140107053025_create_users.rb +6 -0
  63. data/test/dummy/db/migrate/20140107064508_create_private_posts.rb +11 -0
  64. data/test/dummy/db/schema.rb +35 -0
  65. data/test/dummy/db/test.sqlite3 +0 -0
  66. data/test/dummy/lib/generators/rspec/controller/controller_generator.rb +33 -0
  67. data/test/dummy/lib/generators/rspec/helper/helper_generator.rb +15 -0
  68. data/test/dummy/lib/generators/rspec/model/model_generator.rb +22 -0
  69. data/test/dummy/lib/generators/rspec/scaffold/scaffold_generator.rb +192 -0
  70. data/test/dummy/lib/templates/rspec/controller/controller_spec.rb +16 -0
  71. data/test/dummy/lib/templates/rspec/controller/view_spec.rb +5 -0
  72. data/test/dummy/lib/templates/rspec/helper/helper_spec.rb +0 -0
  73. data/test/dummy/lib/templates/rspec/model/model_spec.rb +65 -0
  74. data/test/dummy/lib/templates/rspec/model/model_spec_backup.rb +19 -0
  75. data/test/dummy/lib/templates/rspec/scaffold/controller_spec.rb +168 -0
  76. data/test/dummy/lib/templates/rspec/scaffold/edit_spec.rb +31 -0
  77. data/test/dummy/lib/templates/rspec/scaffold/index_spec.rb +32 -0
  78. data/test/dummy/lib/templates/rspec/scaffold/new_spec.rb +30 -0
  79. data/test/dummy/lib/templates/rspec/scaffold/routing_spec.rb +39 -0
  80. data/test/dummy/lib/templates/rspec/scaffold/show_spec.rb +28 -0
  81. data/test/dummy/log/development.log +3437 -0
  82. data/test/dummy/log/test.log +22013 -0
  83. data/test/dummy/public/404.html +58 -0
  84. data/test/dummy/public/422.html +58 -0
  85. data/test/dummy/public/500.html +57 -0
  86. data/test/dummy/public/favicon.ico +0 -0
  87. data/test/dummy/spec/controllers/posts_controller_spec.rb +161 -0
  88. data/test/dummy/spec/controllers/private_posts_controller_spec.rb +41 -0
  89. data/test/dummy/spec/factories/posts.rb +11 -0
  90. data/test/dummy/spec/factories/private_posts.rb +11 -0
  91. data/test/dummy/spec/helpers/posts_helper_spec.rb +0 -0
  92. data/test/dummy/spec/helpers/private_posts_helper_spec.rb +0 -0
  93. data/test/dummy/spec/models/post_spec.rb +65 -0
  94. data/test/dummy/spec/models/private_post_spec.rb +65 -0
  95. data/test/dummy/spec/models/user_spec.rb +61 -0
  96. data/test/dummy/spec/requests/posts_spec.rb +16 -0
  97. data/test/dummy/spec/requests/private_posts_spec.rb +17 -0
  98. data/test/dummy/spec/routing/posts_routing_spec.rb +35 -0
  99. data/test/dummy/spec/routing/private_posts_routing_spec.rb +35 -0
  100. data/test/dummy/spec/spec_helper.rb +42 -0
  101. data/test/dummy/spec/support/factory_girl.rb +6 -0
  102. data/test/dummy/spec/views/posts/edit.html.erb_spec.rb +22 -0
  103. data/test/dummy/spec/views/posts/index.html.erb_spec.rb +26 -0
  104. data/test/dummy/spec/views/posts/new.html.erb_spec.rb +22 -0
  105. data/test/dummy/spec/views/posts/show.html.erb_spec.rb +19 -0
  106. data/test/dummy/spec/views/private_posts/edit.html.erb_spec.rb +22 -0
  107. data/test/dummy/spec/views/private_posts/index.html.erb_spec.rb +26 -0
  108. data/test/dummy/spec/views/private_posts/new.html.erb_spec.rb +22 -0
  109. data/test/dummy/spec/views/private_posts/show.html.erb_spec.rb +19 -0
  110. data/test/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  111. data/test/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  112. data/test/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  113. data/test/dummy/tmp/cache/assets/test/sprockets/371bf96e99717688ed7313a0c53f4212 +0 -0
  114. data/test/dummy/tmp/cache/assets/test/sprockets/4050a4e5062ab95c9f32e9b6940821ea +0 -0
  115. data/test/dummy/tmp/cache/assets/test/sprockets/416150dc3ac35079c94273cc46e90aa6 +0 -0
  116. data/test/dummy/tmp/cache/assets/test/sprockets/5384ad85f52d3272dbc64d46ef3876a4 +0 -0
  117. data/test/dummy/tmp/cache/assets/test/sprockets/5f1a0d05e77ca8b9a1fc2a47e17a8174 +0 -0
  118. data/test/dummy/tmp/cache/assets/test/sprockets/6fc757c2c8329244ca95d6909865bbc2 +0 -0
  119. data/test/dummy/tmp/cache/assets/test/sprockets/87b209c0c9da28094a8d5581a21262c6 +0 -0
  120. data/test/dummy/tmp/cache/assets/test/sprockets/c85016e7bbd4f3adbb7635d01f85d39b +0 -0
  121. data/test/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  122. data/test/dummy/tmp/cache/assets/test/sprockets/d066c004d1fd26ae76a61303a7a18145 +0 -0
  123. data/test/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  124. data/test/dummy/tmp/cache/assets/test/sprockets/f56253b5f374fff1a33fbbc9881c9124 +0 -0
  125. data/test/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  126. data/test/simple_token_authentication_test.rb +7 -0
  127. data/test/test_helper.rb +15 -0
  128. metadata +384 -0
@@ -0,0 +1,31 @@
1
+ require 'spec_helper'
2
+
3
+ <% output_attributes = attributes.reject{|attribute| [:datetime, :timestamp, :time, :date].index(attribute.type) } -%>
4
+ describe "<%= ns_table_name %>/edit" do
5
+ before(:each) do
6
+ @<%= ns_file_name %> = assign(:<%= ns_file_name %>, stub_model(<%= class_name %><%= output_attributes.empty? ? '))' : ',' %>
7
+ <% output_attributes.each_with_index do |attribute, attribute_index| -%>
8
+ :<%= attribute.name %> => <%= attribute.default.inspect %><%= attribute_index == output_attributes.length - 1 ? '' : ','%>
9
+ <% end -%>
10
+ <%= output_attributes.empty? ? "" : " ))\n" -%>
11
+ end
12
+
13
+ it "renders the edit <%= ns_file_name %> form" do
14
+ render
15
+
16
+ <% if webrat? -%>
17
+ rendered.should have_selector("form", :action => <%= ns_file_name %>_path(@<%= ns_file_name %>), :method => "post") do |form|
18
+ <% for attribute in output_attributes -%>
19
+ form.should have_selector("<%= attribute.input_type -%>#<%= ns_file_name %>_<%= attribute.name %>", :name => "<%= ns_file_name %>[<%= attribute.name %>]")
20
+ <% end -%>
21
+ end
22
+ <% else -%>
23
+ # Run the generator again with the --webrat flag if you want to use webrat matchers
24
+ assert_select "form[action=?][method=?]", <%= ns_file_name %>_path(@<%= ns_file_name %>), "post" do
25
+ <% for attribute in output_attributes -%>
26
+ assert_select "<%= attribute.input_type -%>#<%= ns_file_name %>_<%= attribute.name %>[name=?]", "<%= ns_file_name %>[<%= attribute.name %>]"
27
+ <% end -%>
28
+ end
29
+ <% end -%>
30
+ end
31
+ end
@@ -0,0 +1,32 @@
1
+ require 'spec_helper'
2
+
3
+ <% output_attributes = attributes.reject{|attribute| [:datetime, :timestamp, :time, :date].index(attribute.type) } -%>
4
+ describe "<%= ns_table_name %>/index" do
5
+ before(:each) do
6
+ assign(:<%= table_name %>, [
7
+ <% [1,2].each_with_index do |id, model_index| -%>
8
+ stub_model(<%= class_name %><%= output_attributes.empty? ? (model_index == 1 ? ')' : '),') : ',' %>
9
+ <% output_attributes.each_with_index do |attribute, attribute_index| -%>
10
+ :<%= attribute.name %> => <%= value_for(attribute) %><%= attribute_index == output_attributes.length - 1 ? '' : ','%>
11
+ <% end -%>
12
+ <% if !output_attributes.empty? -%>
13
+ <%= model_index == 1 ? ')' : '),' %>
14
+ <% end -%>
15
+ <% end -%>
16
+ ])
17
+ end
18
+
19
+ it "renders a list of <%= ns_table_name %>" do
20
+ render
21
+ <% unless webrat? -%>
22
+ # Run the generator again with the --webrat flag if you want to use webrat matchers
23
+ <% end -%>
24
+ <% for attribute in output_attributes -%>
25
+ <% if webrat? -%>
26
+ rendered.should have_selector("tr>td", :content => <%= value_for(attribute) %>.to_s, :count => 2)
27
+ <% else -%>
28
+ assert_select "tr>td", :text => <%= value_for(attribute) %>.to_s, :count => 2
29
+ <% end -%>
30
+ <% end -%>
31
+ end
32
+ end
@@ -0,0 +1,30 @@
1
+ require 'spec_helper'
2
+
3
+ <% output_attributes = attributes.reject{|attribute| [:datetime, :timestamp, :time, :date].index(attribute.type) } -%>
4
+ describe "<%= ns_table_name %>/new" do
5
+ before(:each) do
6
+ assign(:<%= ns_file_name %>, stub_model(<%= class_name %><%= output_attributes.empty? ? ').as_new_record)' : ',' %>
7
+ <% output_attributes.each_with_index do |attribute, attribute_index| -%>
8
+ :<%= attribute.name %> => <%= attribute.default.inspect %><%= attribute_index == output_attributes.length - 1 ? '' : ','%>
9
+ <% end -%>
10
+ <%= !output_attributes.empty? ? " ).as_new_record)\n end" : " end" %>
11
+
12
+ it "renders new <%= ns_file_name %> form" do
13
+ render
14
+
15
+ <% if webrat? -%>
16
+ rendered.should have_selector("form", :action => <%= table_name %>_path, :method => "post") do |form|
17
+ <% for attribute in output_attributes -%>
18
+ form.should have_selector("<%= attribute.input_type -%>#<%= ns_file_name %>_<%= attribute.name %>", :name => "<%= ns_file_name %>[<%= attribute.name %>]")
19
+ <% end -%>
20
+ end
21
+ <% else -%>
22
+ # Run the generator again with the --webrat flag if you want to use webrat matchers
23
+ assert_select "form[action=?][method=?]", <%= index_helper %>_path, "post" do
24
+ <% for attribute in output_attributes -%>
25
+ assert_select "<%= attribute.input_type -%>#<%= ns_file_name %>_<%= attribute.name %>[name=?]", "<%= ns_file_name %>[<%= attribute.name %>]"
26
+ <% end -%>
27
+ end
28
+ <% end -%>
29
+ end
30
+ end
@@ -0,0 +1,39 @@
1
+ require "spec_helper"
2
+
3
+ <% module_namespacing do -%>
4
+ describe <%= controller_class_name %>Controller do
5
+ describe "routing" do
6
+
7
+ <% unless options[:singleton] -%>
8
+ it "routes to #index" do
9
+ expect(:get => "/<%= ns_table_name %>").to route_to("<%= ns_table_name %>#index")
10
+ end
11
+
12
+ <% end -%>
13
+ it "routes to #new" do
14
+ expect(:get => "/<%= ns_table_name %>/new").to route_to("<%= ns_table_name %>#new")
15
+ end
16
+
17
+ it "routes to #show" do
18
+ expect(:get => "/<%= ns_table_name %>/1").to route_to("<%= ns_table_name %>#show", :id => "1")
19
+ end
20
+
21
+ it "routes to #edit" do
22
+ expect(:get => "/<%= ns_table_name %>/1/edit").to route_to("<%= ns_table_name %>#edit", :id => "1")
23
+ end
24
+
25
+ it "routes to #create" do
26
+ expect(:post => "/<%= ns_table_name %>").to route_to("<%= ns_table_name %>#create")
27
+ end
28
+
29
+ it "routes to #update" do
30
+ expect(:put => "/<%= ns_table_name %>/1").to route_to("<%= ns_table_name %>#update", :id => "1")
31
+ end
32
+
33
+ it "routes to #destroy" do
34
+ expect(:delete => "/<%= ns_table_name %>/1").to route_to("<%= ns_table_name %>#destroy", :id => "1")
35
+ end
36
+
37
+ end
38
+ end
39
+ <% end -%>
@@ -0,0 +1,28 @@
1
+ require 'spec_helper'
2
+
3
+ <% output_attributes = attributes.reject{|attribute| [:datetime, :timestamp, :time, :date].index(attribute.type) } -%>
4
+ describe "<%= ns_table_name %>/show" do
5
+ before(:each) do
6
+ @<%= ns_file_name %> = assign(:<%= ns_file_name %>, stub_model(<%= class_name %><%= output_attributes.empty? ? '))' : ',' %>
7
+ <% output_attributes.each_with_index do |attribute, attribute_index| -%>
8
+ :<%= attribute.name %> => <%= value_for(attribute) %><%= attribute_index == output_attributes.length - 1 ? '' : ','%>
9
+ <% end -%>
10
+ <% if !output_attributes.empty? -%>
11
+ ))
12
+ <% end -%>
13
+ end
14
+
15
+ it "renders attributes in <p>" do
16
+ render
17
+ <% unless webrat? -%>
18
+ # Run the generator again with the --webrat flag if you want to use webrat matchers
19
+ <% end -%>
20
+ <% for attribute in output_attributes -%>
21
+ <% if webrat? -%>
22
+ rendered.should contain(<%= value_for(attribute) %>.to_s)
23
+ <% else -%>
24
+ rendered.should match(/<%= eval(value_for(attribute)) %>/)
25
+ <% end -%>
26
+ <% end -%>
27
+ end
28
+ end
@@ -0,0 +1,3437 @@
1
+
2
+
3
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:26:17 -0300
4
+ Processing by Rails::WelcomeController#index as HTML
5
+ Completed 500 Internal Server Error in 1ms
6
+
7
+ NameError (uninitialized constant SimpleTokenAuthentication::ActsAsTokenAuthenticationHandler::User):
8
+ /home/gonzalo/dev/simple_token_authentication/lib/simple_token_authentication/acts_as_token_authentication_handler.rb:31:in `authenticate_user_from_token!'
9
+ activesupport (4.0.2) lib/active_support/callbacks.rb:377:in `_run__1303454413307976806__process_action__callbacks'
10
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
11
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
12
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
13
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
14
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
15
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
16
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
17
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
18
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
19
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
20
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
21
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
22
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
23
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
24
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
25
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
26
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
27
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
28
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
29
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
30
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
31
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
32
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
33
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
34
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
35
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
36
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
37
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
38
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
39
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
40
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
41
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
42
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
43
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
44
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__1066472145734212881__call__callbacks'
45
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
46
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
47
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
48
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
49
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
50
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
51
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
52
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
53
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
54
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
55
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
56
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
57
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
58
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
59
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
60
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
61
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
62
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
63
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
64
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
65
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
66
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
67
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
68
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
69
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
70
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
71
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
72
+
73
+
74
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
75
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
76
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (80.2ms)
77
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (113.9ms)
78
+
79
+
80
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:26:36 -0300
81
+ Processing by Rails::WelcomeController#index as HTML
82
+ Completed 500 Internal Server Error in 1ms
83
+
84
+ NameError (uninitialized constant SimpleTokenAuthentication::ActsAsTokenAuthenticationHandler::User):
85
+ /home/gonzalo/dev/simple_token_authentication/lib/simple_token_authentication/acts_as_token_authentication_handler.rb:31:in `authenticate_user_from_token!'
86
+ activesupport (4.0.2) lib/active_support/callbacks.rb:377:in `_run__295994693732293871__process_action__callbacks'
87
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
88
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
89
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
90
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
91
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
92
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
93
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
94
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
95
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
96
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
97
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
98
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
99
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
100
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
101
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
102
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
103
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
104
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
105
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
106
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
107
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
108
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
109
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
110
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
111
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
112
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
113
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
114
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
115
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
116
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
117
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
118
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
119
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
120
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
121
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__1392171583882583478__call__callbacks'
122
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
123
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
124
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
125
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
126
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
127
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
128
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
129
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
130
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
131
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
132
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
133
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
134
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
135
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
136
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
137
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
138
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
139
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
140
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
141
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
142
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
143
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
144
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
145
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
146
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
147
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
148
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
149
+
150
+
151
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms)
152
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
153
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (15.5ms)
154
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (27.6ms)
155
+  (166.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
156
+  (153.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
157
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
158
+ Migrating to CreateUsers (20131229143021)
159
+  (0.3ms) begin transaction
160
+  (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "authentication_token" varchar(255), "created_at" datetime, "updated_at" datetime) 
161
+  (0.1ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
162
+ SQL (0.9ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131229143021"]]
163
+  (133.1ms) commit transaction
164
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
165
+
166
+
167
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:30:59 -0300
168
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
169
+ Processing by Rails::WelcomeController#index as HTML
170
+ Completed 500 Internal Server Error in 3ms
171
+
172
+ NoMethodError (undefined method `authenticate_user!' for #<Rails::WelcomeController:0x00000003302e58>):
173
+ activesupport (4.0.2) lib/active_support/callbacks.rb:387:in `_run__4416523325583779065__process_action__callbacks'
174
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
175
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
176
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
177
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
178
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
179
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
180
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
181
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
182
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
183
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
184
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
185
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
186
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
187
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
188
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
189
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
190
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
191
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
192
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
193
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
194
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
195
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
196
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
197
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
198
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
199
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
200
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
201
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
202
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
203
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
204
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
205
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
206
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
207
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
208
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__3081594589327107359__call__callbacks'
209
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
210
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
211
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
212
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
213
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
214
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
215
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
216
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
217
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
218
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
219
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
220
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
221
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
222
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
223
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
224
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
225
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
226
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
227
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
228
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
229
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
230
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
231
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
232
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
233
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
234
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
235
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
236
+
237
+
238
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
239
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
240
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (16.2ms)
241
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (28.5ms)
242
+
243
+
244
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:31:56 -0300
245
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
246
+ Processing by Rails::WelcomeController#index as HTML
247
+ Completed 500 Internal Server Error in 3ms
248
+
249
+ NoMethodError (undefined method `authenticate_user!' for #<Rails::WelcomeController:0x000000021adb08>):
250
+ activesupport (4.0.2) lib/active_support/callbacks.rb:387:in `_run__1836996429187582295__process_action__callbacks'
251
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
252
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
253
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
254
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
255
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
256
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
257
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
258
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
259
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
260
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
261
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
262
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
263
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
264
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
265
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
266
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
267
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
268
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
269
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
270
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
271
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
272
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
273
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
274
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
275
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
276
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
277
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
278
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
279
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
280
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
281
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
282
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
283
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
284
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
285
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
286
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
287
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
288
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__1615972960573472797__call__callbacks'
289
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
290
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
291
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
292
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
293
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
294
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
295
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
296
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
297
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
298
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
299
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
300
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
301
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
302
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
303
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
304
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
305
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
306
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
307
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
308
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
309
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
310
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
311
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
312
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
313
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
314
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
315
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
316
+
317
+
318
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
319
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
320
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (16.0ms)
321
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (29.1ms)
322
+
323
+
324
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:31:59 -0300
325
+ Processing by Rails::WelcomeController#index as HTML
326
+ Completed 500 Internal Server Error in 1ms
327
+
328
+ NoMethodError (undefined method `authenticate_user!' for #<Rails::WelcomeController:0x000000045b67c0>):
329
+ activesupport (4.0.2) lib/active_support/callbacks.rb:387:in `_run__1836996429187582295__process_action__callbacks'
330
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
331
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
332
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
333
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
334
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
335
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
336
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
337
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
338
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
339
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
340
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
341
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
342
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
343
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
344
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
345
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
346
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
347
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
348
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
349
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
350
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
351
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
352
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
353
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
354
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
355
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
356
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
357
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
358
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
359
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
360
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
361
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
362
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
363
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
364
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
365
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
366
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
367
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__1615972960573472797__call__callbacks'
368
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
369
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
370
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
371
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
372
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
373
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
374
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
375
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
376
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
377
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
378
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
379
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
380
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
381
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
382
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
383
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
384
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
385
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
386
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
387
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
388
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
389
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
390
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
391
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
392
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
393
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
394
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
395
+
396
+
397
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
398
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
399
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
400
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.4ms)
401
+
402
+
403
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:32:00 -0300
404
+ Processing by Rails::WelcomeController#index as HTML
405
+ Completed 500 Internal Server Error in 1ms
406
+
407
+ NoMethodError (undefined method `authenticate_user!' for #<Rails::WelcomeController:0x007f52c0495510>):
408
+ activesupport (4.0.2) lib/active_support/callbacks.rb:387:in `_run__1836996429187582295__process_action__callbacks'
409
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
410
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
411
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
412
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
413
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
414
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
415
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
416
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
417
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
418
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
419
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
420
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
421
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
422
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
423
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
424
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
425
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
426
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
427
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
428
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
429
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
430
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
431
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
432
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
433
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
434
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
435
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
436
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
437
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
438
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
439
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
440
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
441
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
442
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
443
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
444
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
445
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
446
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__1615972960573472797__call__callbacks'
447
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
448
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
449
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
450
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
451
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
452
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
453
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
454
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
455
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
456
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
457
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
458
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
459
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
460
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
461
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
462
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
463
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
464
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
465
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
466
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
467
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
468
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
469
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
470
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
471
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
472
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
473
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
474
+
475
+
476
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
477
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
478
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
479
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (37.2ms)
480
+
481
+
482
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:32:00 -0300
483
+ Processing by Rails::WelcomeController#index as HTML
484
+ Completed 500 Internal Server Error in 1ms
485
+
486
+ NoMethodError (undefined method `authenticate_user!' for #<Rails::WelcomeController:0x00000002ed4cf0>):
487
+ activesupport (4.0.2) lib/active_support/callbacks.rb:387:in `_run__1836996429187582295__process_action__callbacks'
488
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
489
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
490
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
491
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
492
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
493
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
494
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
495
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
496
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
497
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
498
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
499
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
500
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
501
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
502
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
503
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
504
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
505
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
506
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
507
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
508
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
509
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
510
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
511
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
512
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
513
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
514
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
515
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
516
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
517
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
518
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
519
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
520
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
521
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
522
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
523
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
524
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
525
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__1615972960573472797__call__callbacks'
526
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
527
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
528
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
529
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
530
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
531
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
532
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
533
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
534
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
535
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
536
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
537
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
538
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
539
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
540
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
541
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
542
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
543
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
544
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
545
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
546
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
547
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
548
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
549
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
550
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
551
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
552
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
553
+
554
+
555
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
556
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
557
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
558
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.6ms)
559
+
560
+
561
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:32:00 -0300
562
+ Processing by Rails::WelcomeController#index as HTML
563
+ Completed 500 Internal Server Error in 1ms
564
+
565
+ NoMethodError (undefined method `authenticate_user!' for #<Rails::WelcomeController:0x00000004409148>):
566
+ activesupport (4.0.2) lib/active_support/callbacks.rb:387:in `_run__1836996429187582295__process_action__callbacks'
567
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
568
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
569
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
570
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
571
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
572
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
573
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
574
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
575
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
576
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
577
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
578
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
579
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
580
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
581
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
582
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
583
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
584
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
585
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
586
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
587
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
588
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
589
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
590
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
591
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
592
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
593
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
594
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
595
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
596
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
597
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
598
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
599
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
600
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
601
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
602
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
603
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
604
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__1615972960573472797__call__callbacks'
605
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
606
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
607
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
608
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
609
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
610
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
611
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
612
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
613
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
614
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
615
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
616
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
617
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
618
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
619
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
620
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
621
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
622
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
623
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
624
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
625
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
626
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
627
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
628
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
629
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
630
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
631
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
632
+
633
+
634
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
635
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
636
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
637
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.8ms)
638
+
639
+
640
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:32:01 -0300
641
+ Processing by Rails::WelcomeController#index as HTML
642
+ Completed 500 Internal Server Error in 5ms
643
+
644
+ NoMethodError (undefined method `authenticate_user!' for #<Rails::WelcomeController:0x007f52c041e208>):
645
+ activesupport (4.0.2) lib/active_support/callbacks.rb:387:in `_run__1836996429187582295__process_action__callbacks'
646
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
647
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
648
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
649
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
650
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
651
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
652
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
653
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
654
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
655
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
656
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
657
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
658
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
659
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
660
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
661
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
662
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
663
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
664
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
665
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
666
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
667
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
668
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
669
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
670
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
671
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
672
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
673
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
674
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
675
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
676
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
677
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
678
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
679
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
680
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
681
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
682
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
683
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__1615972960573472797__call__callbacks'
684
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
685
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
686
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
687
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
688
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
689
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
690
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
691
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
692
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
693
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
694
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
695
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
696
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
697
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
698
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
699
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
700
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
701
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
702
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
703
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
704
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
705
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
706
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
707
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
708
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
709
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
710
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
711
+
712
+
713
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms)
714
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
715
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
716
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.2ms)
717
+
718
+
719
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:32:01 -0300
720
+ Processing by Rails::WelcomeController#index as HTML
721
+ Completed 500 Internal Server Error in 1ms
722
+
723
+ NoMethodError (undefined method `authenticate_user!' for #<Rails::WelcomeController:0x007f52c06a7088>):
724
+ activesupport (4.0.2) lib/active_support/callbacks.rb:387:in `_run__1836996429187582295__process_action__callbacks'
725
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
726
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
727
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
728
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
729
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
730
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
731
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
732
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
733
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
734
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
735
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
736
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
737
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
738
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
739
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
740
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
741
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
742
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
743
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
744
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
745
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
746
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
747
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
748
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
749
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
750
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
751
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
752
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
753
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
754
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
755
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
756
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
757
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
758
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
759
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
760
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
761
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
762
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__1615972960573472797__call__callbacks'
763
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
764
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
765
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
766
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
767
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
768
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
769
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
770
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
771
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
772
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
773
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
774
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
775
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
776
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
777
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
778
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
779
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
780
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
781
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
782
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
783
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
784
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
785
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
786
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
787
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
788
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
789
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
790
+
791
+
792
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
793
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
794
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
795
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.0ms)
796
+
797
+
798
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:32:01 -0300
799
+ Processing by Rails::WelcomeController#index as HTML
800
+ Completed 500 Internal Server Error in 1ms
801
+
802
+ NoMethodError (undefined method `authenticate_user!' for #<Rails::WelcomeController:0x000000034a80c8>):
803
+ activesupport (4.0.2) lib/active_support/callbacks.rb:387:in `_run__1836996429187582295__process_action__callbacks'
804
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
805
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
806
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
807
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
808
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
809
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
810
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
811
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
812
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
813
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
814
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
815
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
816
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
817
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
818
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
819
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
820
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
821
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
822
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
823
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
824
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
825
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
826
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
827
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
828
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
829
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
830
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
831
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
832
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
833
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
834
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
835
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
836
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
837
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
838
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
839
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
840
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
841
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__1615972960573472797__call__callbacks'
842
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
843
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
844
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
845
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
846
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
847
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
848
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
849
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
850
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
851
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
852
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
853
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
854
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
855
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
856
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
857
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
858
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
859
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
860
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
861
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
862
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
863
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
864
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
865
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
866
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
867
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
868
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
869
+
870
+
871
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
872
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
873
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
874
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.2ms)
875
+
876
+
877
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:32:01 -0300
878
+ Processing by Rails::WelcomeController#index as HTML
879
+ Completed 500 Internal Server Error in 1ms
880
+
881
+ NoMethodError (undefined method `authenticate_user!' for #<Rails::WelcomeController:0x0000000446d198>):
882
+ activesupport (4.0.2) lib/active_support/callbacks.rb:387:in `_run__1836996429187582295__process_action__callbacks'
883
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
884
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
885
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
886
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
887
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
888
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
889
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
890
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
891
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
892
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
893
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
894
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
895
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
896
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
897
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
898
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
899
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
900
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
901
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
902
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
903
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
904
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
905
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
906
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
907
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
908
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
909
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
910
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
911
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
912
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
913
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
914
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
915
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
916
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
917
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
918
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
919
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
920
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__1615972960573472797__call__callbacks'
921
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
922
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
923
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
924
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
925
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
926
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
927
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
928
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
929
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
930
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
931
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
932
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
933
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
934
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
935
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
936
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
937
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
938
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
939
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
940
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
941
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
942
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
943
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
944
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
945
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
946
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
947
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
948
+
949
+
950
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
951
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
952
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
953
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.2ms)
954
+
955
+
956
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:32:01 -0300
957
+ Processing by Rails::WelcomeController#index as HTML
958
+ Completed 500 Internal Server Error in 1ms
959
+
960
+ NoMethodError (undefined method `authenticate_user!' for #<Rails::WelcomeController:0x007f52c0486fd8>):
961
+ activesupport (4.0.2) lib/active_support/callbacks.rb:387:in `_run__1836996429187582295__process_action__callbacks'
962
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
963
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
964
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
965
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
966
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
967
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
968
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
969
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
970
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
971
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
972
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
973
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
974
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
975
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
976
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
977
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
978
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
979
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
980
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
981
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
982
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
983
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
984
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
985
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
986
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
987
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
988
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
989
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
990
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
991
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
992
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
993
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
994
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
995
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
996
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
997
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
998
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
999
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__1615972960573472797__call__callbacks'
1000
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1001
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1002
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1003
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1004
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1005
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1006
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
1007
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
1008
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1009
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
1010
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
1011
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
1012
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1013
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1014
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1015
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1016
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1017
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1018
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1019
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1020
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
1021
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1022
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1023
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1024
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1025
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1026
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1027
+
1028
+
1029
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
1030
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
1031
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
1032
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.7ms)
1033
+
1034
+
1035
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:32:01 -0300
1036
+ Processing by Rails::WelcomeController#index as HTML
1037
+ Completed 500 Internal Server Error in 1ms
1038
+
1039
+ NoMethodError (undefined method `authenticate_user!' for #<Rails::WelcomeController:0x007f52c06f9770>):
1040
+ activesupport (4.0.2) lib/active_support/callbacks.rb:387:in `_run__1836996429187582295__process_action__callbacks'
1041
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1042
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
1043
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
1044
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1045
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
1046
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1047
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
1048
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1049
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
1050
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1051
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
1052
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
1053
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
1054
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1055
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
1056
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
1057
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1058
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
1059
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
1060
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
1061
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
1062
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
1063
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
1064
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
1065
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
1066
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1067
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1068
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1069
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1070
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
1071
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1072
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1073
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1074
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
1075
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1076
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
1077
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1078
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__1615972960573472797__call__callbacks'
1079
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1080
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1081
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1082
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1083
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1084
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1085
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
1086
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
1087
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1088
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
1089
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
1090
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
1091
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1092
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1093
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1094
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1095
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1096
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1097
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1098
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1099
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
1100
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1101
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1102
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1103
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1104
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1105
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1106
+
1107
+
1108
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
1109
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
1110
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
1111
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.8ms)
1112
+
1113
+
1114
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:32:02 -0300
1115
+ Processing by Rails::WelcomeController#index as HTML
1116
+ Completed 500 Internal Server Error in 5ms
1117
+
1118
+ NoMethodError (undefined method `authenticate_user!' for #<Rails::WelcomeController:0x00000003f0df40>):
1119
+ activesupport (4.0.2) lib/active_support/callbacks.rb:387:in `_run__1836996429187582295__process_action__callbacks'
1120
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1121
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
1122
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
1123
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1124
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
1125
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1126
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
1127
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1128
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
1129
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1130
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
1131
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
1132
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
1133
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1134
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
1135
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
1136
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1137
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
1138
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
1139
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
1140
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
1141
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
1142
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
1143
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
1144
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
1145
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1146
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1147
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1148
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1149
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
1150
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1151
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1152
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1153
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
1154
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1155
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
1156
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1157
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__1615972960573472797__call__callbacks'
1158
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1159
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1160
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1161
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1162
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1163
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1164
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
1165
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
1166
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1167
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
1168
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
1169
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
1170
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1171
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1172
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1173
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1174
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1175
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1176
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1177
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1178
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
1179
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1180
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1181
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1182
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1183
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1184
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1185
+
1186
+
1187
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms)
1188
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
1189
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
1190
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.3ms)
1191
+
1192
+
1193
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:32:02 -0300
1194
+ Processing by Rails::WelcomeController#index as HTML
1195
+ Completed 500 Internal Server Error in 1ms
1196
+
1197
+ NoMethodError (undefined method `authenticate_user!' for #<Rails::WelcomeController:0x000000046756c0>):
1198
+ activesupport (4.0.2) lib/active_support/callbacks.rb:387:in `_run__1836996429187582295__process_action__callbacks'
1199
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1200
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
1201
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
1202
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1203
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
1204
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1205
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
1206
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1207
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
1208
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1209
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
1210
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
1211
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
1212
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1213
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
1214
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
1215
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1216
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
1217
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
1218
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
1219
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
1220
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
1221
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
1222
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
1223
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
1224
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1225
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1226
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1227
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1228
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
1229
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1230
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1231
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1232
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
1233
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1234
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
1235
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1236
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__1615972960573472797__call__callbacks'
1237
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1238
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1239
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1240
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1241
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1242
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1243
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
1244
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
1245
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1246
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
1247
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
1248
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
1249
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1250
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1251
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1252
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1253
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1254
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1255
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1256
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1257
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
1258
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1259
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1260
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1261
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1262
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1263
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1264
+
1265
+
1266
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
1267
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
1268
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
1269
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.2ms)
1270
+
1271
+
1272
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:32:02 -0300
1273
+ Processing by Rails::WelcomeController#index as HTML
1274
+ Completed 500 Internal Server Error in 5ms
1275
+
1276
+ NoMethodError (undefined method `authenticate_user!' for #<Rails::WelcomeController:0x007f52c055bb70>):
1277
+ activesupport (4.0.2) lib/active_support/callbacks.rb:387:in `_run__1836996429187582295__process_action__callbacks'
1278
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1279
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
1280
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
1281
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1282
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
1283
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1284
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
1285
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1286
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
1287
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1288
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
1289
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
1290
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
1291
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1292
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
1293
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
1294
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1295
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
1296
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
1297
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
1298
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
1299
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
1300
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
1301
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
1302
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
1303
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1304
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1305
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1306
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1307
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
1308
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1309
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1310
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1311
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
1312
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1313
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
1314
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1315
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__1615972960573472797__call__callbacks'
1316
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1317
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1318
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1319
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1320
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1321
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1322
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
1323
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
1324
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1325
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
1326
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
1327
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
1328
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1329
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1330
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1331
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1332
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1333
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1334
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1335
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1336
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
1337
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1338
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1339
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1340
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1341
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1342
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1343
+
1344
+
1345
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms)
1346
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
1347
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
1348
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.2ms)
1349
+
1350
+
1351
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:32:02 -0300
1352
+ Processing by Rails::WelcomeController#index as HTML
1353
+ Completed 500 Internal Server Error in 28ms
1354
+
1355
+ NoMethodError (undefined method `authenticate_user!' for #<Rails::WelcomeController:0x007f52c079d528>):
1356
+ activesupport (4.0.2) lib/active_support/callbacks.rb:387:in `_run__1836996429187582295__process_action__callbacks'
1357
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1358
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
1359
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
1360
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1361
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
1362
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1363
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
1364
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1365
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
1366
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1367
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
1368
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
1369
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
1370
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1371
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
1372
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
1373
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1374
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
1375
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
1376
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
1377
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
1378
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
1379
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
1380
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
1381
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
1382
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1383
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1384
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1385
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1386
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
1387
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1388
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1389
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1390
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
1391
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1392
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
1393
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1394
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__1615972960573472797__call__callbacks'
1395
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1396
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1397
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1398
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1399
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1400
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1401
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
1402
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
1403
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1404
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
1405
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
1406
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
1407
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1408
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1409
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1410
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1411
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1412
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1413
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1414
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1415
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
1416
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1417
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1418
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1419
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1420
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1421
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1422
+
1423
+
1424
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
1425
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
1426
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
1427
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.0ms)
1428
+
1429
+
1430
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:32:02 -0300
1431
+ Processing by Rails::WelcomeController#index as HTML
1432
+ Completed 500 Internal Server Error in 1ms
1433
+
1434
+ NoMethodError (undefined method `authenticate_user!' for #<Rails::WelcomeController:0x0000000401d980>):
1435
+ activesupport (4.0.2) lib/active_support/callbacks.rb:387:in `_run__1836996429187582295__process_action__callbacks'
1436
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1437
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
1438
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
1439
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1440
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
1441
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1442
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
1443
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1444
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
1445
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1446
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
1447
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
1448
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
1449
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1450
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
1451
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
1452
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1453
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
1454
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
1455
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
1456
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
1457
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
1458
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
1459
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
1460
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
1461
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1462
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1463
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1464
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1465
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
1466
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1467
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1468
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1469
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
1470
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1471
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
1472
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1473
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__1615972960573472797__call__callbacks'
1474
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1475
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1476
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1477
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1478
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1479
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1480
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
1481
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
1482
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1483
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
1484
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
1485
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
1486
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1487
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1488
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1489
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1490
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1491
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1492
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1493
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1494
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
1495
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1496
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1497
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1498
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1499
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1500
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1501
+
1502
+
1503
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
1504
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
1505
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
1506
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.7ms)
1507
+
1508
+
1509
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:32:02 -0300
1510
+ Processing by Rails::WelcomeController#index as HTML
1511
+ Completed 500 Internal Server Error in 2ms
1512
+
1513
+ NoMethodError (undefined method `authenticate_user!' for #<Rails::WelcomeController:0x007f52c038aeb8>):
1514
+ activesupport (4.0.2) lib/active_support/callbacks.rb:387:in `_run__1836996429187582295__process_action__callbacks'
1515
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1516
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
1517
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
1518
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1519
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
1520
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1521
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
1522
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1523
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
1524
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1525
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
1526
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
1527
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
1528
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1529
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
1530
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
1531
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1532
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
1533
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
1534
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
1535
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
1536
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
1537
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
1538
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
1539
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
1540
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1541
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1542
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1543
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1544
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
1545
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1546
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1547
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1548
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
1549
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1550
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
1551
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1552
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__1615972960573472797__call__callbacks'
1553
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1554
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1555
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1556
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1557
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1558
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1559
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
1560
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
1561
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1562
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
1563
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
1564
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
1565
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1566
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1567
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1568
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1569
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1570
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1571
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1572
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1573
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
1574
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1575
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1576
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1577
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1578
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1579
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1580
+
1581
+
1582
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
1583
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
1584
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
1585
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.2ms)
1586
+
1587
+
1588
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:32:03 -0300
1589
+ Processing by Rails::WelcomeController#index as HTML
1590
+ Completed 500 Internal Server Error in 1ms
1591
+
1592
+ NoMethodError (undefined method `authenticate_user!' for #<Rails::WelcomeController:0x007f52c05993a8>):
1593
+ activesupport (4.0.2) lib/active_support/callbacks.rb:387:in `_run__1836996429187582295__process_action__callbacks'
1594
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1595
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
1596
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
1597
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1598
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
1599
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1600
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
1601
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1602
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
1603
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1604
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
1605
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
1606
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
1607
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1608
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
1609
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
1610
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1611
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
1612
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
1613
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
1614
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
1615
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
1616
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
1617
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
1618
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
1619
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1620
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1621
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1622
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1623
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
1624
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1625
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1626
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1627
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
1628
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1629
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
1630
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1631
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__1615972960573472797__call__callbacks'
1632
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1633
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1634
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1635
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1636
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1637
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1638
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
1639
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
1640
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1641
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
1642
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
1643
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
1644
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1645
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1646
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1647
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1648
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1649
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1650
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1651
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1652
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
1653
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1654
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1655
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1656
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1657
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1658
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1659
+
1660
+
1661
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.1ms)
1662
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (26.4ms)
1663
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
1664
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (40.0ms)
1665
+
1666
+
1667
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:32:03 -0300
1668
+ Processing by Rails::WelcomeController#index as HTML
1669
+ Completed 500 Internal Server Error in 5ms
1670
+
1671
+ NoMethodError (undefined method `authenticate_user!' for #<Rails::WelcomeController:0x00000002d9e8b8>):
1672
+ activesupport (4.0.2) lib/active_support/callbacks.rb:387:in `_run__1836996429187582295__process_action__callbacks'
1673
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1674
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
1675
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
1676
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1677
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
1678
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1679
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
1680
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1681
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
1682
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1683
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
1684
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
1685
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
1686
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1687
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
1688
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
1689
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1690
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
1691
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
1692
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
1693
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
1694
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
1695
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
1696
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
1697
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
1698
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1699
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1700
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1701
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1702
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
1703
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1704
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1705
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1706
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
1707
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1708
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
1709
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1710
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__1615972960573472797__call__callbacks'
1711
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1712
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1713
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1714
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1715
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1716
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1717
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
1718
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
1719
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1720
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
1721
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
1722
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
1723
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1724
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1725
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1726
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1727
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1728
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1729
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1730
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1731
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
1732
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1733
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1734
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1735
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1736
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1737
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1738
+
1739
+
1740
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.2ms)
1741
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
1742
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
1743
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (19.0ms)
1744
+
1745
+
1746
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:32:03 -0300
1747
+ Processing by Rails::WelcomeController#index as HTML
1748
+ Completed 500 Internal Server Error in 1ms
1749
+
1750
+ NoMethodError (undefined method `authenticate_user!' for #<Rails::WelcomeController:0x000000043a9540>):
1751
+ activesupport (4.0.2) lib/active_support/callbacks.rb:387:in `_run__1836996429187582295__process_action__callbacks'
1752
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1753
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
1754
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
1755
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1756
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
1757
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1758
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
1759
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1760
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
1761
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1762
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
1763
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
1764
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
1765
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1766
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
1767
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
1768
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1769
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
1770
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
1771
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
1772
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
1773
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
1774
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
1775
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
1776
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
1777
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1778
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1779
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1780
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1781
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
1782
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1783
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1784
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1785
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
1786
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1787
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
1788
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1789
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__1615972960573472797__call__callbacks'
1790
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1791
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1792
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1793
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1794
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1795
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1796
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
1797
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
1798
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1799
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
1800
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
1801
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
1802
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1803
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1804
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1805
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1806
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1807
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1808
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1809
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1810
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
1811
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1812
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1813
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1814
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1815
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1816
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1817
+
1818
+
1819
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
1820
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
1821
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
1822
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.6ms)
1823
+
1824
+
1825
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:32:03 -0300
1826
+ Processing by Rails::WelcomeController#index as HTML
1827
+ Completed 500 Internal Server Error in 4ms
1828
+
1829
+ NoMethodError (undefined method `authenticate_user!' for #<Rails::WelcomeController:0x007f52c04042e0>):
1830
+ activesupport (4.0.2) lib/active_support/callbacks.rb:387:in `_run__1836996429187582295__process_action__callbacks'
1831
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1832
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
1833
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
1834
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1835
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
1836
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1837
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
1838
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1839
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
1840
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1841
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
1842
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
1843
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
1844
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1845
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
1846
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
1847
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1848
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
1849
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
1850
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
1851
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
1852
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
1853
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
1854
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
1855
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
1856
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1857
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1858
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1859
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1860
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
1861
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1862
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1863
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1864
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
1865
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1866
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
1867
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1868
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__1615972960573472797__call__callbacks'
1869
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1870
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1871
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1872
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1873
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1874
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1875
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
1876
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
1877
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1878
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
1879
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
1880
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
1881
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1882
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1883
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1884
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1885
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1886
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1887
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1888
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1889
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
1890
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1891
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1892
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1893
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1894
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1895
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1896
+
1897
+
1898
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
1899
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
1900
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
1901
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.3ms)
1902
+
1903
+
1904
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:32:04 -0300
1905
+ Processing by Rails::WelcomeController#index as HTML
1906
+ Completed 500 Internal Server Error in 25ms
1907
+
1908
+ NoMethodError (undefined method `authenticate_user!' for #<Rails::WelcomeController:0x007f52c0681888>):
1909
+ activesupport (4.0.2) lib/active_support/callbacks.rb:387:in `_run__1836996429187582295__process_action__callbacks'
1910
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1911
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
1912
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
1913
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1914
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
1915
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1916
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
1917
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1918
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
1919
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1920
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
1921
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
1922
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
1923
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1924
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
1925
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
1926
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1927
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
1928
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
1929
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
1930
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
1931
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
1932
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
1933
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
1934
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
1935
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1936
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1937
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1938
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1939
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
1940
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1941
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1942
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1943
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
1944
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1945
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
1946
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1947
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__1615972960573472797__call__callbacks'
1948
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1949
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1950
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1951
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1952
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1953
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1954
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
1955
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
1956
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1957
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
1958
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
1959
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
1960
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1961
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1962
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1963
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1964
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1965
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1966
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1967
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1968
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
1969
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1970
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1971
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1972
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1973
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1974
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1975
+
1976
+
1977
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
1978
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
1979
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
1980
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.7ms)
1981
+
1982
+
1983
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:40:36 -0300
1984
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1985
+ Processing by Rails::WelcomeController#index as HTML
1986
+ Completed 401 Unauthorized in 44ms
1987
+
1988
+
1989
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:40:37 -0300
1990
+ Processing by Rails::WelcomeController#index as HTML
1991
+ Completed 401 Unauthorized in 1ms
1992
+
1993
+
1994
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:40:37 -0300
1995
+ Processing by Rails::WelcomeController#index as HTML
1996
+ Completed 401 Unauthorized in 1ms
1997
+
1998
+
1999
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:40:37 -0300
2000
+ Processing by Rails::WelcomeController#index as HTML
2001
+ Completed 401 Unauthorized in 0ms
2002
+
2003
+
2004
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:40:37 -0300
2005
+ Processing by Rails::WelcomeController#index as HTML
2006
+ Completed 401 Unauthorized in 1ms
2007
+
2008
+
2009
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:40:37 -0300
2010
+ Processing by Rails::WelcomeController#index as HTML
2011
+ Completed 401 Unauthorized in 0ms
2012
+
2013
+
2014
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:40:37 -0300
2015
+ Processing by Rails::WelcomeController#index as HTML
2016
+ Completed 401 Unauthorized in 0ms
2017
+
2018
+
2019
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:40:37 -0300
2020
+ Processing by Rails::WelcomeController#index as HTML
2021
+ Completed 401 Unauthorized in 1ms
2022
+
2023
+
2024
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:40:37 -0300
2025
+ Processing by Rails::WelcomeController#index as HTML
2026
+ Completed 401 Unauthorized in 0ms
2027
+
2028
+
2029
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:40:37 -0300
2030
+ Processing by Rails::WelcomeController#index as HTML
2031
+ Completed 401 Unauthorized in 0ms
2032
+
2033
+
2034
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:40:37 -0300
2035
+ Processing by Rails::WelcomeController#index as HTML
2036
+ Completed 401 Unauthorized in 0ms
2037
+
2038
+
2039
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:40:37 -0300
2040
+ Processing by Rails::WelcomeController#index as HTML
2041
+ Completed 401 Unauthorized in 0ms
2042
+
2043
+
2044
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:40:37 -0300
2045
+ Processing by Rails::WelcomeController#index as HTML
2046
+ Completed 401 Unauthorized in 1ms
2047
+
2048
+
2049
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:40:37 -0300
2050
+ Processing by Rails::WelcomeController#index as HTML
2051
+ Completed 401 Unauthorized in 1ms
2052
+
2053
+
2054
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:40:37 -0300
2055
+ Processing by Rails::WelcomeController#index as HTML
2056
+ Completed 401 Unauthorized in 0ms
2057
+
2058
+
2059
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:40:37 -0300
2060
+ Processing by Rails::WelcomeController#index as HTML
2061
+ Completed 401 Unauthorized in 1ms
2062
+
2063
+
2064
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:40:37 -0300
2065
+ Processing by Rails::WelcomeController#index as HTML
2066
+ Completed 401 Unauthorized in 1ms
2067
+
2068
+
2069
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:40:38 -0300
2070
+ Processing by Rails::WelcomeController#index as HTML
2071
+ Completed 401 Unauthorized in 1ms
2072
+
2073
+
2074
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:40:38 -0300
2075
+ Processing by Rails::WelcomeController#index as HTML
2076
+ Completed 401 Unauthorized in 1ms
2077
+
2078
+
2079
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:40:38 -0300
2080
+ Processing by Rails::WelcomeController#index as HTML
2081
+ Completed 401 Unauthorized in 1ms
2082
+
2083
+
2084
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:40:38 -0300
2085
+ Processing by Rails::WelcomeController#index as HTML
2086
+ Completed 401 Unauthorized in 1ms
2087
+
2088
+
2089
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:40:50 -0300
2090
+
2091
+ ActionController::RoutingError (uninitialized constant WelcomeController):
2092
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:226:in `const_get'
2093
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:226:in `block in constantize'
2094
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `each'
2095
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `inject'
2096
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `constantize'
2097
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
2098
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:66:in `controller'
2099
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:44:in `call'
2100
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
2101
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
2102
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
2103
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
2104
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
2105
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
2106
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
2107
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
2108
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
2109
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
2110
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
2111
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
2112
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
2113
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
2114
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
2115
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
2116
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
2117
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
2118
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
2119
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__3868273338903021419__call__callbacks'
2120
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
2121
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2122
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
2123
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
2124
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2125
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2126
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
2127
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
2128
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
2129
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
2130
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
2131
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
2132
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2133
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2134
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2135
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
2136
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2137
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
2138
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2139
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
2140
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
2141
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2142
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2143
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2144
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
2145
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
2146
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
2147
+
2148
+
2149
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
2150
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
2151
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (41.4ms)
2152
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (91.5ms)
2153
+
2154
+
2155
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:43:01 -0300
2156
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2157
+ Processing by WelcomeController#index as HTML
2158
+ Completed 401 Unauthorized in 19ms
2159
+
2160
+
2161
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:43:01 -0300
2162
+ Processing by WelcomeController#index as HTML
2163
+ Completed 401 Unauthorized in 1ms
2164
+
2165
+
2166
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:43:01 -0300
2167
+ Processing by WelcomeController#index as HTML
2168
+ Completed 401 Unauthorized in 0ms
2169
+
2170
+
2171
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:43:01 -0300
2172
+ Processing by WelcomeController#index as HTML
2173
+ Completed 401 Unauthorized in 1ms
2174
+
2175
+
2176
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:43:01 -0300
2177
+ Processing by WelcomeController#index as HTML
2178
+ Completed 401 Unauthorized in 1ms
2179
+
2180
+
2181
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:43:01 -0300
2182
+ Processing by WelcomeController#index as HTML
2183
+ Completed 401 Unauthorized in 1ms
2184
+
2185
+
2186
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:43:01 -0300
2187
+ Processing by WelcomeController#index as HTML
2188
+ Completed 401 Unauthorized in 1ms
2189
+
2190
+
2191
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:43:01 -0300
2192
+ Processing by WelcomeController#index as HTML
2193
+ Completed 401 Unauthorized in 0ms
2194
+
2195
+
2196
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:43:01 -0300
2197
+ Processing by WelcomeController#index as HTML
2198
+ Completed 401 Unauthorized in 1ms
2199
+
2200
+
2201
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:43:01 -0300
2202
+ Processing by WelcomeController#index as HTML
2203
+ Completed 401 Unauthorized in 1ms
2204
+
2205
+
2206
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:43:01 -0300
2207
+ Processing by WelcomeController#index as HTML
2208
+ Completed 401 Unauthorized in 1ms
2209
+
2210
+
2211
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:43:01 -0300
2212
+ Processing by WelcomeController#index as HTML
2213
+ Completed 401 Unauthorized in 1ms
2214
+
2215
+
2216
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:43:01 -0300
2217
+ Processing by WelcomeController#index as HTML
2218
+ Completed 401 Unauthorized in 1ms
2219
+
2220
+
2221
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:43:01 -0300
2222
+ Processing by WelcomeController#index as HTML
2223
+ Completed 401 Unauthorized in 1ms
2224
+
2225
+
2226
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:43:01 -0300
2227
+ Processing by WelcomeController#index as HTML
2228
+ Completed 401 Unauthorized in 0ms
2229
+
2230
+
2231
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:43:01 -0300
2232
+ Processing by WelcomeController#index as HTML
2233
+ Completed 401 Unauthorized in 1ms
2234
+
2235
+
2236
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:43:02 -0300
2237
+ Processing by WelcomeController#index as HTML
2238
+ Completed 401 Unauthorized in 1ms
2239
+
2240
+
2241
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:43:02 -0300
2242
+ Processing by WelcomeController#index as HTML
2243
+ Completed 401 Unauthorized in 0ms
2244
+
2245
+
2246
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:43:02 -0300
2247
+ Processing by WelcomeController#index as HTML
2248
+ Completed 401 Unauthorized in 1ms
2249
+
2250
+
2251
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:43:02 -0300
2252
+ Processing by WelcomeController#index as HTML
2253
+ Completed 401 Unauthorized in 1ms
2254
+
2255
+
2256
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:43:02 -0300
2257
+ Processing by WelcomeController#index as HTML
2258
+ Completed 401 Unauthorized in 1ms
2259
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2260
+  (0.1ms) begin transaction
2261
+ SQL (74.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 29 Dec 2013 14:47:19 UTC +00:00], ["email", "user@example.com"], ["updated_at", Sun, 29 Dec 2013 14:47:19 UTC +00:00]]
2262
+  (143.0ms) commit transaction
2263
+ User Load (3.0ms) SELECT "users".* FROM "users"
2264
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2265
+  (0.1ms) begin transaction
2266
+ SQL (2.5ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "updated_at") VALUES (?, ?, ?, ?) [["authentication_token", "dummyAuthenticationToken"], ["created_at", Sun, 29 Dec 2013 14:48:33 UTC +00:00], ["email", "user@example.com"], ["updated_at", Sun, 29 Dec 2013 14:48:33 UTC +00:00]]
2267
+  (147.6ms) commit transaction
2268
+ User Load (2.1ms) SELECT "users".* FROM "users"
2269
+
2270
+
2271
+ Started GET "/?user_email=user@example.com&user_token=dummyAuthenticationToken" for 127.0.0.1 at 2013-12-29 11:49:26 -0300
2272
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2273
+ Processing by WelcomeController#index as HTML
2274
+ Parameters: {"user_email"=>"user@example.com", "user_token"=>"dummyAuthenticationToken"}
2275
+ User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'user@example.com' LIMIT 1
2276
+ Completed 401 Unauthorized in 51ms
2277
+
2278
+
2279
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:49:27 -0300
2280
+ Processing by WelcomeController#index as HTML
2281
+ Completed 401 Unauthorized in 0ms
2282
+
2283
+
2284
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:49:27 -0300
2285
+ Processing by WelcomeController#index as HTML
2286
+ Completed 401 Unauthorized in 0ms
2287
+
2288
+
2289
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:49:27 -0300
2290
+ Processing by WelcomeController#index as HTML
2291
+ Completed 401 Unauthorized in 0ms
2292
+
2293
+
2294
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:49:27 -0300
2295
+ Processing by WelcomeController#index as HTML
2296
+ Completed 401 Unauthorized in 1ms
2297
+
2298
+
2299
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:49:27 -0300
2300
+ Processing by WelcomeController#index as HTML
2301
+ Completed 401 Unauthorized in 0ms
2302
+
2303
+
2304
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:49:27 -0300
2305
+ Processing by WelcomeController#index as HTML
2306
+ Completed 401 Unauthorized in 1ms
2307
+
2308
+
2309
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:49:27 -0300
2310
+ Processing by WelcomeController#index as HTML
2311
+ Completed 401 Unauthorized in 2ms
2312
+
2313
+
2314
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:49:27 -0300
2315
+ Processing by WelcomeController#index as HTML
2316
+ Completed 401 Unauthorized in 1ms
2317
+
2318
+
2319
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:49:27 -0300
2320
+ Processing by WelcomeController#index as HTML
2321
+ Completed 401 Unauthorized in 0ms
2322
+
2323
+
2324
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:49:27 -0300
2325
+ Processing by WelcomeController#index as HTML
2326
+ Completed 401 Unauthorized in 1ms
2327
+
2328
+
2329
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:49:27 -0300
2330
+ Processing by WelcomeController#index as HTML
2331
+ Completed 401 Unauthorized in 1ms
2332
+
2333
+
2334
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:49:27 -0300
2335
+ Processing by WelcomeController#index as HTML
2336
+ Completed 401 Unauthorized in 1ms
2337
+
2338
+
2339
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:49:27 -0300
2340
+ Processing by WelcomeController#index as HTML
2341
+ Completed 401 Unauthorized in 0ms
2342
+
2343
+
2344
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:49:27 -0300
2345
+ Processing by WelcomeController#index as HTML
2346
+ Completed 401 Unauthorized in 1ms
2347
+
2348
+
2349
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:49:27 -0300
2350
+ Processing by WelcomeController#index as HTML
2351
+ Completed 401 Unauthorized in 0ms
2352
+
2353
+
2354
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:49:27 -0300
2355
+ Processing by WelcomeController#index as HTML
2356
+ Completed 401 Unauthorized in 0ms
2357
+
2358
+
2359
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:49:27 -0300
2360
+ Processing by WelcomeController#index as HTML
2361
+ Completed 401 Unauthorized in 0ms
2362
+
2363
+
2364
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:49:27 -0300
2365
+ Processing by WelcomeController#index as HTML
2366
+ Completed 401 Unauthorized in 1ms
2367
+
2368
+
2369
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:49:28 -0300
2370
+ Processing by WelcomeController#index as HTML
2371
+ Completed 401 Unauthorized in 0ms
2372
+
2373
+
2374
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:49:28 -0300
2375
+ Processing by WelcomeController#index as HTML
2376
+ Completed 401 Unauthorized in 1ms
2377
+
2378
+
2379
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:49:36 -0300
2380
+ Processing by WelcomeController#index as HTML
2381
+ Completed 401 Unauthorized in 1ms
2382
+
2383
+
2384
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:49:36 -0300
2385
+ Processing by WelcomeController#index as HTML
2386
+ Completed 401 Unauthorized in 1ms
2387
+
2388
+
2389
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:49:36 -0300
2390
+ Processing by WelcomeController#index as HTML
2391
+ Completed 401 Unauthorized in 1ms
2392
+
2393
+
2394
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:49:36 -0300
2395
+ Processing by WelcomeController#index as HTML
2396
+ Completed 401 Unauthorized in 0ms
2397
+
2398
+
2399
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:49:36 -0300
2400
+ Processing by WelcomeController#index as HTML
2401
+ Completed 401 Unauthorized in 0ms
2402
+
2403
+
2404
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:49:37 -0300
2405
+ Processing by WelcomeController#index as HTML
2406
+ Completed 401 Unauthorized in 1ms
2407
+
2408
+
2409
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:49:37 -0300
2410
+ Processing by WelcomeController#index as HTML
2411
+ Completed 401 Unauthorized in 0ms
2412
+
2413
+
2414
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:49:37 -0300
2415
+ Processing by WelcomeController#index as HTML
2416
+ Completed 401 Unauthorized in 0ms
2417
+
2418
+
2419
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:49:37 -0300
2420
+ Processing by WelcomeController#index as HTML
2421
+ Completed 401 Unauthorized in 1ms
2422
+
2423
+
2424
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:49:37 -0300
2425
+ Processing by WelcomeController#index as HTML
2426
+ Completed 401 Unauthorized in 1ms
2427
+
2428
+
2429
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:49:37 -0300
2430
+ Processing by WelcomeController#index as HTML
2431
+ Completed 401 Unauthorized in 0ms
2432
+
2433
+
2434
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:49:37 -0300
2435
+ Processing by WelcomeController#index as HTML
2436
+ Completed 401 Unauthorized in 1ms
2437
+
2438
+
2439
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:49:37 -0300
2440
+ Processing by WelcomeController#index as HTML
2441
+ Completed 401 Unauthorized in 2ms
2442
+
2443
+
2444
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:49:37 -0300
2445
+ Processing by WelcomeController#index as HTML
2446
+ Completed 401 Unauthorized in 0ms
2447
+
2448
+
2449
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:49:37 -0300
2450
+ Processing by WelcomeController#index as HTML
2451
+ Completed 401 Unauthorized in 0ms
2452
+
2453
+
2454
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:49:37 -0300
2455
+ Processing by WelcomeController#index as HTML
2456
+ Completed 401 Unauthorized in 0ms
2457
+
2458
+
2459
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:49:37 -0300
2460
+ Processing by WelcomeController#index as HTML
2461
+ Completed 401 Unauthorized in 1ms
2462
+
2463
+
2464
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:49:37 -0300
2465
+ Processing by WelcomeController#index as HTML
2466
+ Completed 401 Unauthorized in 0ms
2467
+
2468
+
2469
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:49:37 -0300
2470
+ Processing by WelcomeController#index as HTML
2471
+ Completed 401 Unauthorized in 0ms
2472
+
2473
+
2474
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:49:37 -0300
2475
+ Processing by WelcomeController#index as HTML
2476
+ Completed 401 Unauthorized in 0ms
2477
+
2478
+
2479
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:49:37 -0300
2480
+ Processing by WelcomeController#index as HTML
2481
+ Completed 401 Unauthorized in 1ms
2482
+
2483
+
2484
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:50:33 -0300
2485
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2486
+
2487
+ ActionController::RoutingError (undefined local variable or method `skip_authenticate_user' for ApplicationController:Class):
2488
+ app/controllers/application_controller.rb:6:in `<class:ApplicationController>'
2489
+ app/controllers/application_controller.rb:1:in `<top (required)>'
2490
+ app/controllers/welcome_controller.rb:1:in `<top (required)>'
2491
+
2492
+
2493
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
2494
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms)
2495
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms)
2496
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (18.9ms)
2497
+
2498
+
2499
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:50:47 -0300
2500
+
2501
+ ActionController::RoutingError (undefined local variable or method `skip_authentication' for ApplicationController:Class):
2502
+ app/controllers/application_controller.rb:6:in `<class:ApplicationController>'
2503
+ app/controllers/application_controller.rb:1:in `<top (required)>'
2504
+ app/controllers/welcome_controller.rb:1:in `<top (required)>'
2505
+
2506
+
2507
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
2508
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
2509
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.8ms)
2510
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (16.0ms)
2511
+
2512
+
2513
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:52:03 -0300
2514
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2515
+ Processing by WelcomeController#index as HTML
2516
+ Completed 401 Unauthorized in 19ms
2517
+
2518
+
2519
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:52:03 -0300
2520
+ Processing by WelcomeController#index as HTML
2521
+ Completed 401 Unauthorized in 1ms
2522
+
2523
+
2524
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:52:03 -0300
2525
+ Processing by WelcomeController#index as HTML
2526
+ Completed 401 Unauthorized in 0ms
2527
+
2528
+
2529
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:52:03 -0300
2530
+ Processing by WelcomeController#index as HTML
2531
+ Completed 401 Unauthorized in 1ms
2532
+
2533
+
2534
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:52:03 -0300
2535
+ Processing by WelcomeController#index as HTML
2536
+ Completed 401 Unauthorized in 0ms
2537
+
2538
+
2539
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:52:03 -0300
2540
+ Processing by WelcomeController#index as HTML
2541
+ Completed 401 Unauthorized in 1ms
2542
+
2543
+
2544
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:52:03 -0300
2545
+ Processing by WelcomeController#index as HTML
2546
+ Completed 401 Unauthorized in 2ms
2547
+
2548
+
2549
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:52:03 -0300
2550
+ Processing by WelcomeController#index as HTML
2551
+ Completed 401 Unauthorized in 0ms
2552
+
2553
+
2554
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:52:03 -0300
2555
+ Processing by WelcomeController#index as HTML
2556
+ Completed 401 Unauthorized in 1ms
2557
+
2558
+
2559
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:52:03 -0300
2560
+ Processing by WelcomeController#index as HTML
2561
+ Completed 401 Unauthorized in 1ms
2562
+
2563
+
2564
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:52:03 -0300
2565
+ Processing by WelcomeController#index as HTML
2566
+ Completed 401 Unauthorized in 2ms
2567
+
2568
+
2569
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:52:03 -0300
2570
+ Processing by WelcomeController#index as HTML
2571
+ Completed 401 Unauthorized in 1ms
2572
+
2573
+
2574
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:52:03 -0300
2575
+ Processing by WelcomeController#index as HTML
2576
+ Completed 401 Unauthorized in 0ms
2577
+
2578
+
2579
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:52:03 -0300
2580
+ Processing by WelcomeController#index as HTML
2581
+ Completed 401 Unauthorized in 1ms
2582
+
2583
+
2584
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:52:04 -0300
2585
+ Processing by WelcomeController#index as HTML
2586
+ Completed 401 Unauthorized in 1ms
2587
+
2588
+
2589
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:52:04 -0300
2590
+ Processing by WelcomeController#index as HTML
2591
+ Completed 401 Unauthorized in 1ms
2592
+
2593
+
2594
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:52:04 -0300
2595
+ Processing by WelcomeController#index as HTML
2596
+ Completed 401 Unauthorized in 0ms
2597
+
2598
+
2599
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:52:04 -0300
2600
+ Processing by WelcomeController#index as HTML
2601
+ Completed 401 Unauthorized in 1ms
2602
+
2603
+
2604
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:52:04 -0300
2605
+ Processing by WelcomeController#index as HTML
2606
+ Completed 401 Unauthorized in 0ms
2607
+
2608
+
2609
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:52:04 -0300
2610
+ Processing by WelcomeController#index as HTML
2611
+ Completed 401 Unauthorized in 1ms
2612
+
2613
+
2614
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:52:04 -0300
2615
+ Processing by WelcomeController#index as HTML
2616
+ Completed 401 Unauthorized in 0ms
2617
+
2618
+
2619
+ Started GET "/?user_email=user@example.com&user_token=dummyAuthenticationToken" for 127.0.0.1 at 2013-12-29 11:52:22 -0300
2620
+ Processing by WelcomeController#index as HTML
2621
+ Parameters: {"user_email"=>"user@example.com", "user_token"=>"dummyAuthenticationToken"}
2622
+ User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'user@example.com' LIMIT 1
2623
+ Completed 401 Unauthorized in 34ms
2624
+
2625
+
2626
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:52:22 -0300
2627
+ Processing by WelcomeController#index as HTML
2628
+ Completed 401 Unauthorized in 0ms
2629
+
2630
+
2631
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:52:22 -0300
2632
+ Processing by WelcomeController#index as HTML
2633
+ Completed 401 Unauthorized in 0ms
2634
+
2635
+
2636
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:52:22 -0300
2637
+ Processing by WelcomeController#index as HTML
2638
+ Completed 401 Unauthorized in 0ms
2639
+
2640
+
2641
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:52:22 -0300
2642
+ Processing by WelcomeController#index as HTML
2643
+ Completed 401 Unauthorized in 1ms
2644
+
2645
+
2646
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:52:22 -0300
2647
+ Processing by WelcomeController#index as HTML
2648
+ Completed 401 Unauthorized in 1ms
2649
+
2650
+
2651
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:52:22 -0300
2652
+ Processing by WelcomeController#index as HTML
2653
+ Completed 401 Unauthorized in 0ms
2654
+
2655
+
2656
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:52:22 -0300
2657
+ Processing by WelcomeController#index as HTML
2658
+ Completed 401 Unauthorized in 1ms
2659
+
2660
+
2661
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:52:22 -0300
2662
+ Processing by WelcomeController#index as HTML
2663
+ Completed 401 Unauthorized in 1ms
2664
+
2665
+
2666
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:52:22 -0300
2667
+ Processing by WelcomeController#index as HTML
2668
+ Completed 401 Unauthorized in 0ms
2669
+
2670
+
2671
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:52:22 -0300
2672
+ Processing by WelcomeController#index as HTML
2673
+ Completed 401 Unauthorized in 0ms
2674
+
2675
+
2676
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:52:23 -0300
2677
+ Processing by WelcomeController#index as HTML
2678
+ Completed 401 Unauthorized in 1ms
2679
+
2680
+
2681
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:52:23 -0300
2682
+ Processing by WelcomeController#index as HTML
2683
+ Completed 401 Unauthorized in 1ms
2684
+
2685
+
2686
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:52:23 -0300
2687
+ Processing by WelcomeController#index as HTML
2688
+ Completed 401 Unauthorized in 1ms
2689
+
2690
+
2691
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:52:23 -0300
2692
+ Processing by WelcomeController#index as HTML
2693
+ Completed 401 Unauthorized in 1ms
2694
+
2695
+
2696
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:52:23 -0300
2697
+ Processing by WelcomeController#index as HTML
2698
+ Completed 401 Unauthorized in 1ms
2699
+
2700
+
2701
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:52:23 -0300
2702
+ Processing by WelcomeController#index as HTML
2703
+ Completed 401 Unauthorized in 1ms
2704
+
2705
+
2706
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:52:23 -0300
2707
+ Processing by WelcomeController#index as HTML
2708
+ Completed 401 Unauthorized in 1ms
2709
+
2710
+
2711
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:52:23 -0300
2712
+ Processing by WelcomeController#index as HTML
2713
+ Completed 401 Unauthorized in 2ms
2714
+
2715
+
2716
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:52:23 -0300
2717
+ Processing by WelcomeController#index as HTML
2718
+ Completed 401 Unauthorized in 0ms
2719
+
2720
+
2721
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:52:23 -0300
2722
+ Processing by WelcomeController#index as HTML
2723
+ Completed 401 Unauthorized in 0ms
2724
+
2725
+
2726
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:53:45 -0300
2727
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2728
+ Processing by WelcomeController#index as HTML
2729
+ Completed 401 Unauthorized in 18ms
2730
+
2731
+
2732
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:53:45 -0300
2733
+ Processing by WelcomeController#index as HTML
2734
+ Completed 401 Unauthorized in 1ms
2735
+
2736
+
2737
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:53:45 -0300
2738
+ Processing by WelcomeController#index as HTML
2739
+ Completed 401 Unauthorized in 1ms
2740
+
2741
+
2742
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:53:45 -0300
2743
+ Processing by WelcomeController#index as HTML
2744
+ Completed 401 Unauthorized in 1ms
2745
+
2746
+
2747
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:53:45 -0300
2748
+ Processing by WelcomeController#index as HTML
2749
+ Completed 401 Unauthorized in 0ms
2750
+
2751
+
2752
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:53:45 -0300
2753
+ Processing by WelcomeController#index as HTML
2754
+ Completed 401 Unauthorized in 0ms
2755
+
2756
+
2757
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:53:45 -0300
2758
+ Processing by WelcomeController#index as HTML
2759
+ Completed 401 Unauthorized in 1ms
2760
+
2761
+
2762
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:53:45 -0300
2763
+ Processing by WelcomeController#index as HTML
2764
+ Completed 401 Unauthorized in 0ms
2765
+
2766
+
2767
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:53:45 -0300
2768
+ Processing by WelcomeController#index as HTML
2769
+ Completed 401 Unauthorized in 1ms
2770
+
2771
+
2772
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:53:46 -0300
2773
+ Processing by WelcomeController#index as HTML
2774
+ Completed 401 Unauthorized in 0ms
2775
+
2776
+
2777
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:53:46 -0300
2778
+ Processing by WelcomeController#index as HTML
2779
+ Completed 401 Unauthorized in 1ms
2780
+
2781
+
2782
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:53:46 -0300
2783
+ Processing by WelcomeController#index as HTML
2784
+ Completed 401 Unauthorized in 1ms
2785
+
2786
+
2787
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:53:46 -0300
2788
+ Processing by WelcomeController#index as HTML
2789
+ Completed 401 Unauthorized in 1ms
2790
+
2791
+
2792
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:53:46 -0300
2793
+ Processing by WelcomeController#index as HTML
2794
+ Completed 401 Unauthorized in 1ms
2795
+
2796
+
2797
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:53:46 -0300
2798
+ Processing by WelcomeController#index as HTML
2799
+ Completed 401 Unauthorized in 1ms
2800
+
2801
+
2802
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:53:46 -0300
2803
+ Processing by WelcomeController#index as HTML
2804
+ Completed 401 Unauthorized in 1ms
2805
+
2806
+
2807
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:53:46 -0300
2808
+ Processing by WelcomeController#index as HTML
2809
+ Completed 401 Unauthorized in 1ms
2810
+
2811
+
2812
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:53:46 -0300
2813
+ Processing by WelcomeController#index as HTML
2814
+ Completed 401 Unauthorized in 0ms
2815
+
2816
+
2817
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:53:46 -0300
2818
+ Processing by WelcomeController#index as HTML
2819
+ Completed 401 Unauthorized in 1ms
2820
+
2821
+
2822
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:53:46 -0300
2823
+ Processing by WelcomeController#index as HTML
2824
+ Completed 401 Unauthorized in 1ms
2825
+
2826
+
2827
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:53:46 -0300
2828
+ Processing by WelcomeController#index as HTML
2829
+ Completed 401 Unauthorized in 0ms
2830
+
2831
+
2832
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:54:16 -0300
2833
+ Processing by WelcomeController#index as HTML
2834
+ Completed 401 Unauthorized in 5ms
2835
+
2836
+
2837
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:54:16 -0300
2838
+ Processing by WelcomeController#index as HTML
2839
+ Completed 401 Unauthorized in 0ms
2840
+
2841
+
2842
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:54:16 -0300
2843
+ Processing by WelcomeController#index as HTML
2844
+ Completed 401 Unauthorized in 0ms
2845
+
2846
+
2847
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:54:16 -0300
2848
+ Processing by WelcomeController#index as HTML
2849
+ Completed 401 Unauthorized in 0ms
2850
+
2851
+
2852
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:54:16 -0300
2853
+ Processing by WelcomeController#index as HTML
2854
+ Completed 401 Unauthorized in 2ms
2855
+
2856
+
2857
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:54:16 -0300
2858
+ Processing by WelcomeController#index as HTML
2859
+ Completed 401 Unauthorized in 1ms
2860
+
2861
+
2862
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:54:16 -0300
2863
+ Processing by WelcomeController#index as HTML
2864
+ Completed 401 Unauthorized in 0ms
2865
+
2866
+
2867
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:54:16 -0300
2868
+ Processing by WelcomeController#index as HTML
2869
+ Completed 401 Unauthorized in 0ms
2870
+
2871
+
2872
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:54:16 -0300
2873
+ Processing by WelcomeController#index as HTML
2874
+ Completed 401 Unauthorized in 0ms
2875
+
2876
+
2877
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:54:16 -0300
2878
+ Processing by WelcomeController#index as HTML
2879
+ Completed 401 Unauthorized in 1ms
2880
+
2881
+
2882
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:54:16 -0300
2883
+ Processing by WelcomeController#index as HTML
2884
+ Completed 401 Unauthorized in 0ms
2885
+
2886
+
2887
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:54:16 -0300
2888
+ Processing by WelcomeController#index as HTML
2889
+ Completed 401 Unauthorized in 0ms
2890
+
2891
+
2892
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:54:16 -0300
2893
+ Processing by WelcomeController#index as HTML
2894
+ Completed 401 Unauthorized in 1ms
2895
+
2896
+
2897
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:54:16 -0300
2898
+ Processing by WelcomeController#index as HTML
2899
+ Completed 401 Unauthorized in 0ms
2900
+
2901
+
2902
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:54:17 -0300
2903
+ Processing by WelcomeController#index as HTML
2904
+ Completed 401 Unauthorized in 1ms
2905
+
2906
+
2907
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:54:17 -0300
2908
+ Processing by WelcomeController#index as HTML
2909
+ Completed 401 Unauthorized in 0ms
2910
+
2911
+
2912
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:54:17 -0300
2913
+ Processing by WelcomeController#index as HTML
2914
+ Completed 401 Unauthorized in 1ms
2915
+
2916
+
2917
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:54:17 -0300
2918
+ Processing by WelcomeController#index as HTML
2919
+ Completed 401 Unauthorized in 1ms
2920
+
2921
+
2922
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:54:17 -0300
2923
+ Processing by WelcomeController#index as HTML
2924
+ Completed 401 Unauthorized in 0ms
2925
+
2926
+
2927
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:54:17 -0300
2928
+ Processing by WelcomeController#index as HTML
2929
+ Completed 401 Unauthorized in 1ms
2930
+
2931
+
2932
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:54:17 -0300
2933
+ Processing by WelcomeController#index as HTML
2934
+ Completed 401 Unauthorized in 0ms
2935
+
2936
+
2937
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:54:29 -0300
2938
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
2939
+ Processing by Rails::WelcomeController#index as HTML
2940
+ Completed 500 Internal Server Error in 3ms
2941
+
2942
+ NoMethodError (undefined method `authenticate_user!' for #<Rails::WelcomeController:0x00000003ab1820>):
2943
+ activesupport (4.0.2) lib/active_support/callbacks.rb:387:in `_run__2558457036421079968__process_action__callbacks'
2944
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
2945
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
2946
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
2947
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
2948
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
2949
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2950
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
2951
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
2952
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
2953
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2954
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
2955
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
2956
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
2957
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
2958
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
2959
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
2960
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
2961
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
2962
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
2963
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
2964
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
2965
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
2966
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
2967
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
2968
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
2969
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
2970
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
2971
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
2972
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
2973
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
2974
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
2975
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
2976
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
2977
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
2978
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
2979
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
2980
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
2981
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__2027985722187420183__call__callbacks'
2982
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
2983
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2984
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
2985
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
2986
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2987
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2988
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
2989
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
2990
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
2991
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
2992
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
2993
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
2994
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2995
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2996
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2997
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
2998
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2999
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
3000
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3001
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
3002
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
3003
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3004
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3005
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3006
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
3007
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
3008
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
3009
+
3010
+
3011
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
3012
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
3013
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (16.5ms)
3014
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (29.1ms)
3015
+
3016
+
3017
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:55:31 -0300
3018
+ Processing by Rails::WelcomeController#index as HTML
3019
+ Completed 500 Internal Server Error in 3ms
3020
+
3021
+ NoMethodError (undefined method `authenticate_user!' for #<Rails::WelcomeController:0x00000002372b00>):
3022
+ activesupport (4.0.2) lib/active_support/callbacks.rb:387:in `_run__2558457036421079968__process_action__callbacks'
3023
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
3024
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
3025
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
3026
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
3027
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
3028
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3029
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
3030
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
3031
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
3032
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
3033
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
3034
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
3035
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
3036
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
3037
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
3038
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
3039
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
3040
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
3041
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
3042
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
3043
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
3044
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
3045
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
3046
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
3047
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
3048
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
3049
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
3050
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
3051
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
3052
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
3053
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
3054
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
3055
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
3056
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
3057
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
3058
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
3059
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
3060
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__2027985722187420183__call__callbacks'
3061
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
3062
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3063
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
3064
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
3065
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
3066
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3067
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
3068
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
3069
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
3070
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
3071
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
3072
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
3073
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3074
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3075
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3076
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
3077
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3078
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
3079
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3080
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
3081
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
3082
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3083
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3084
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3085
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
3086
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
3087
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
3088
+
3089
+
3090
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
3091
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
3092
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
3093
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.9ms)
3094
+
3095
+
3096
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:55:50 -0300
3097
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
3098
+ Processing by Rails::WelcomeController#index as HTML
3099
+ Completed 500 Internal Server Error in 4ms
3100
+
3101
+ NoMethodError (undefined method `authenticate_user!' for #<Rails::WelcomeController:0x00000003720ff8>):
3102
+ activesupport (4.0.2) lib/active_support/callbacks.rb:387:in `_run__90259227054944823__process_action__callbacks'
3103
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
3104
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
3105
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
3106
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
3107
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
3108
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3109
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
3110
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
3111
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
3112
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
3113
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
3114
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
3115
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
3116
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
3117
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
3118
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
3119
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
3120
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
3121
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
3122
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
3123
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
3124
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
3125
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
3126
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
3127
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
3128
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
3129
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
3130
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
3131
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
3132
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
3133
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
3134
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
3135
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
3136
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
3137
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
3138
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
3139
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
3140
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__1119728781669936395__call__callbacks'
3141
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
3142
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3143
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
3144
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
3145
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
3146
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3147
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
3148
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
3149
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
3150
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
3151
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
3152
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
3153
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3154
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3155
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3156
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
3157
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3158
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
3159
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3160
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
3161
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
3162
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3163
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3164
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3165
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
3166
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
3167
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
3168
+
3169
+
3170
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
3171
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
3172
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (16.0ms)
3173
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (27.6ms)
3174
+
3175
+
3176
+ Started GET "/" for 127.0.0.1 at 2013-12-29 11:55:51 -0300
3177
+ Processing by Rails::WelcomeController#index as HTML
3178
+ Completed 500 Internal Server Error in 3ms
3179
+
3180
+ NoMethodError (undefined method `authenticate_user!' for #<Rails::WelcomeController:0x00000001ec8c30>):
3181
+ activesupport (4.0.2) lib/active_support/callbacks.rb:387:in `_run__90259227054944823__process_action__callbacks'
3182
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
3183
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
3184
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
3185
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
3186
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
3187
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3188
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
3189
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
3190
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
3191
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
3192
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
3193
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
3194
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
3195
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
3196
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
3197
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
3198
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
3199
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
3200
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
3201
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
3202
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
3203
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
3204
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
3205
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
3206
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
3207
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
3208
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
3209
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
3210
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
3211
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
3212
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
3213
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
3214
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
3215
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
3216
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
3217
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
3218
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
3219
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__1119728781669936395__call__callbacks'
3220
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
3221
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3222
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
3223
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
3224
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
3225
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3226
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
3227
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
3228
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
3229
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
3230
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
3231
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
3232
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3233
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3234
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3235
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
3236
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3237
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
3238
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3239
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
3240
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
3241
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3242
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3243
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3244
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
3245
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
3246
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
3247
+
3248
+
3249
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
3250
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
3251
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms)
3252
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.1ms)
3253
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3254
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3255
+
3256
+
3257
+ Started GET "/" for 127.0.0.1 at 2014-01-07 04:14:49 -0300
3258
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3259
+
3260
+ ActiveRecord::PendingMigrationError (Migrations are pending; run 'bin/rake db:migrate RAILS_ENV=development' to resolve this issue.):
3261
+ activerecord (4.0.2) lib/active_record/migration.rb:379:in `check_pending!'
3262
+ activerecord (4.0.2) lib/active_record/migration.rb:366:in `call'
3263
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
3264
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__68473316273451790__call__callbacks'
3265
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
3266
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3267
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
3268
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
3269
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
3270
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3271
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
3272
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
3273
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
3274
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
3275
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
3276
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
3277
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3278
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3279
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3280
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
3281
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3282
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
3283
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3284
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
3285
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
3286
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3287
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3288
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3289
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
3290
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
3291
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
3292
+
3293
+
3294
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
3295
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.5ms)
3296
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.2ms)
3297
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (39.0ms)
3298
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3299
+ Migrating to CreatePosts (20140107041016)
3300
+  (0.1ms) begin transaction
3301
+  (0.5ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "published" boolean, "created_at" datetime, "updated_at" datetime) 
3302
+ SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140107041016"]]
3303
+  (153.1ms) commit transaction
3304
+ Migrating to CreatePrivatePosts (20140107064508)
3305
+  (0.2ms) begin transaction
3306
+  (1.1ms) CREATE TABLE "private_posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "published" boolean, "created_at" datetime, "updated_at" datetime) 
3307
+ SQL (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140107064508"]]
3308
+  (124.3ms) commit transaction
3309
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3310
+
3311
+
3312
+ Started GET "/" for 127.0.0.1 at 2014-01-07 04:15:31 -0300
3313
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
3314
+ Processing by Rails::WelcomeController#index as HTML
3315
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/railties-4.0.2/lib/rails/templates/rails/welcome/index.html.erb (1.4ms)
3316
+ Completed 200 OK in 45ms (Views: 44.3ms | ActiveRecord: 0.0ms)
3317
+
3318
+
3319
+ Started GET "/posts" for 127.0.0.1 at 2014-01-07 04:15:36 -0300
3320
+ Processing by PostsController#index as HTML
3321
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
3322
+ Rendered posts/index.html.erb within layouts/application (1.5ms)
3323
+ Completed 200 OK in 44ms (Views: 42.3ms | ActiveRecord: 0.2ms)
3324
+
3325
+
3326
+ Started GET "/stylesheets/application.css" for 127.0.0.1 at 2014-01-07 04:15:37 -0300
3327
+
3328
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
3329
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
3330
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3331
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
3332
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
3333
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
3334
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
3335
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
3336
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
3337
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3338
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3339
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3340
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
3341
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3342
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
3343
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3344
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
3345
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
3346
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3347
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3348
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3349
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
3350
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
3351
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
3352
+
3353
+
3354
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
3355
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms)
3356
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (19.9ms)
3357
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (181.4ms)
3358
+
3359
+
3360
+ Started GET "/javascripts/application.js" for 127.0.0.1 at 2014-01-07 04:15:37 -0300
3361
+
3362
+ ActionController::RoutingError (No route matches [GET] "/javascripts/application.js"):
3363
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
3364
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3365
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
3366
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
3367
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
3368
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
3369
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
3370
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
3371
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3372
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3373
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3374
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
3375
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3376
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
3377
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3378
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
3379
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
3380
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3381
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3382
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3383
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
3384
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
3385
+ /home/gonzalo/.rvm/rubies/ruby-2.0.0-head/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
3386
+
3387
+
3388
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
3389
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms)
3390
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.4ms)
3391
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (16.5ms)
3392
+
3393
+
3394
+ Started GET "/private_posts" for 127.0.0.1 at 2014-01-07 04:15:43 -0300
3395
+ Processing by PrivatePostsController#index as HTML
3396
+ Completed 500 Internal Server Error in 1ms
3397
+
3398
+ RuntimeError (`authenticate_user!` was called.):
3399
+ app/controllers/application_controller.rb:19:in `authenticate_user!'
3400
+
3401
+
3402
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms)
3403
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
3404
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
3405
+ Rendered /home/gonzalo/.rvm/gems/ruby-2.0.0-head@simple_token_authentication/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.7ms)
3406
+  (120.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3407
+  (132.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3408
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
3409
+ Migrating to CreatePosts (20140107041016)
3410
+  (0.2ms) begin transaction
3411
+  (1.6ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "published" boolean, "created_at" datetime, "updated_at" datetime) 
3412
+ SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140107041016"]]
3413
+  (143.7ms) commit transaction
3414
+ Migrating to CreatePrivatePosts (20140107064508)
3415
+  (0.2ms) begin transaction
3416
+  (1.0ms) CREATE TABLE "private_posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "published" boolean, "created_at" datetime, "updated_at" datetime) 
3417
+ SQL (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140107064508"]]
3418
+  (135.2ms) commit transaction
3419
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
3420
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3421
+ Migrating to CreateUsers (20140107053025)
3422
+  (0.1ms) begin transaction
3423
+  (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL) 
3424
+ SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140107053025"]]
3425
+  (131.0ms) commit transaction
3426
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
3427
+  (116.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3428
+  (131.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3429
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
3430
+  (115.4ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "published" boolean, "created_at" datetime, "updated_at" datetime) 
3431
+  (108.4ms) CREATE TABLE "private_posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "published" boolean, "created_at" datetime, "updated_at" datetime)
3432
+  (132.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL) 
3433
+  (0.1ms) SELECT version FROM "schema_migrations"
3434
+  (120.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140107064508')
3435
+  (110.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20140107041016')
3436
+  (121.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140107053025')
3437
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"