defcon 1.0.3 → 1.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (29) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/stylesheets/defcon/application.css +1 -1
  3. data/app/assets/stylesheets/defcon/sessions.css +4 -0
  4. data/app/controllers/defcon/sessions_controller.rb +2 -2
  5. data/app/views/layouts/defcon/application.html.erb +14 -0
  6. data/lib/defcon.rb +26 -0
  7. data/lib/defcon/version.rb +1 -1
  8. data/test/dummy/app/controllers/application_controller.rb +1 -0
  9. data/test/dummy/config/routes.rb +2 -3
  10. data/test/dummy/log/development.log +1983 -0
  11. data/test/dummy/tmp/cache/assets/development/sprockets/039b001a59de7a4d5f228a9a09d60d9f +0 -0
  12. data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  13. data/test/dummy/tmp/cache/assets/development/sprockets/2de78237f3e3a16c798e2cb50713040e +0 -0
  14. data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  15. data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  16. data/test/dummy/tmp/cache/assets/development/sprockets/377e191890c7876a20777a2fc0aa513e +0 -0
  17. data/test/dummy/tmp/cache/assets/development/sprockets/45a38ae1962cf1b16ae1fdbcca9f715f +0 -0
  18. data/test/dummy/tmp/cache/assets/development/sprockets/6f01d394054701d3486312f867838dca +0 -0
  19. data/test/dummy/tmp/cache/assets/development/sprockets/9ef7743bbf943edf3b65a56b64b8a5fa +0 -0
  20. data/test/dummy/tmp/cache/assets/development/sprockets/a256a6eb367bca67f22487c8cf67d665 +0 -0
  21. data/test/dummy/tmp/cache/assets/development/sprockets/a2e4dc904120d07af3cb77eedd89cd3e +0 -0
  22. data/test/dummy/tmp/cache/assets/development/sprockets/ba91a99751caef1bb8716bedea918536 +0 -0
  23. data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  24. data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  25. data/test/dummy/tmp/cache/assets/development/sprockets/ee579e22bde5d59af30c5494604147e3 +0 -0
  26. data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  27. data/test/dummy/tmp/cache/assets/development/sprockets/f838093a369f66b2d8c7069f306898b5 +0 -0
  28. data/test/dummy/tmp/cache/assets/development/sprockets/f9a6a9bea49e44c0da8ad0f074710b83 +0 -0
  29. metadata +53 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3e879da627cd2b563268fd08ca50a5e38c0c15dd
4
- data.tar.gz: 74f0a384ce3427a68f2e0c834126bb3c29665010
3
+ metadata.gz: fe36f42ab8f13a126fb2e19b00c67e66afa673e5
4
+ data.tar.gz: f3931527f3b6f20a9174f338c057c117a7047a51
5
5
  SHA512:
6
- metadata.gz: b9aea11aa9c395d8155dd4c190cb62f50dc3ca10a55388248e900763877acc7055cdd96cf0de3a301496c896bfd445d45f81b7e707c6a01bf30aa74868ca4d3b
7
- data.tar.gz: 73093857f4f51b50ba7084cef56eba2d844729e67b0712a491a798a5a76fd3b663c14373f5f7071696fa66cb54b1288534c54f52a9871bfffe97a91efa06d702
6
+ metadata.gz: cb4a117ec07e4bf17141986d5f4b9387836e86abfa26422422dc2b7d0cf90d6347b9b82e0c8ddfa17df500d8d7417c995ae0bcf40d321398b745939fd8840f0a
7
+ data.tar.gz: 77c50ce3c26b4ab71ac28c53d3c8c8d6f0731e1b639f8ce49f7031dce6dfbacb90b83c79963716f5d6adcb160b49538b4ec4f3670039dcaa9c91509a80bea972
@@ -12,4 +12,4 @@
12
12
  *
13
13
  *= require_tree .
14
14
  *= require_self
15
- */
15
+ */
@@ -2,3 +2,7 @@
2
2
  Place all the styles related to the matching controller here.
3
3
  They will automatically be included in application.css.
4
4
  */
5
+
6
+ .text-center {
7
+ text-align: center;
8
+ }
@@ -41,7 +41,7 @@ module Defcon
41
41
  private
42
42
 
43
43
  def logged_in_check
44
- if !logged_in?
44
+ if !::Defcon.logged_in?(session)
45
45
  flash[:alert] = "You are not logged in."
46
46
  redirect_to defcon_login_path
47
47
  return false
@@ -51,7 +51,7 @@ module Defcon
51
51
  end
52
52
 
53
53
  def logged_out_check
54
- if logged_in?
54
+ if ::Defcon.logged_in?(session)
55
55
  flash[:alert] = "You are already logged in."
56
56
  redirect_to "/admin"
57
57
  return false
@@ -0,0 +1,14 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Defcon</title>
5
+ <%= stylesheet_link_tag "defcon/application", media: "all" %>
6
+ <%= javascript_include_tag "defcon/application" %>
7
+ <%= csrf_meta_tags %>
8
+ </head>
9
+ <body>
10
+
11
+ <%= yield %>
12
+
13
+ </body>
14
+ </html>
data/lib/defcon.rb CHANGED
@@ -1,4 +1,30 @@
1
1
  require "defcon/engine"
2
2
 
3
3
  module Defcon
4
+
5
+ def self.authenticate_admin_user!(session)
6
+ if !::Defcon.logged_in?(session)
7
+ redirect_to defcon.defcon_login_path, alert: "Login!"
8
+ else
9
+ return true
10
+ end
11
+ end
12
+
13
+ def self.current_admin_user(session)
14
+ if ::Defcon.logged_in?(session)
15
+ id = session[:admin_id]
16
+ return ::Defcon::AdminUser.find(id)
17
+ else
18
+ return nil
19
+ end
20
+ end
21
+
22
+ def self.logged_in?(session)
23
+ if session[:admin_id].nil?
24
+ return false
25
+ else
26
+ return true
27
+ end
28
+ end
29
+
4
30
  end
@@ -1,3 +1,3 @@
1
1
  module Defcon
2
- VERSION = "1.0.3"
2
+ VERSION = "1.0.4"
3
3
  end
@@ -2,4 +2,5 @@ class ApplicationController < ActionController::Base
2
2
  # Prevent CSRF attacks by raising an exception.
3
3
  # For APIs, you may want to use :null_session instead.
4
4
  protect_from_forgery with: :exception
5
+
5
6
  end
@@ -1,4 +1,3 @@
1
- Rails.application.routes.draw do
2
-
3
- mount Defcon::Engine => "/defcon"
1
+ Rails.application.routes.draw do
2
+ mount Defcon::Engine => "/"
4
3
  end
@@ -24,3 +24,1986 @@ Migrating to AddIndexToDefconAdminUsers (20141008214632)
24
24
  FROM sqlite_temp_master
25
25
  WHERE name='index_defcon_admin_users_on_username' AND type='index'
26
26
 
27
+
28
+
29
+ Started GET "/admin/defcon_admin_users" for 127.0.0.1 at 2014-10-08 21:29:10 -0400
30
+
31
+ ActionController::RoutingError (No route matches [GET] "/admin/defcon_admin_users"):
32
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
33
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
34
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
35
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
36
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
37
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
38
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
39
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
40
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
41
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
42
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
43
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
44
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
45
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
46
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
47
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
48
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
49
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
50
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
51
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
52
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
53
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
54
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
55
+
56
+
57
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
58
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms)
59
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
60
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (36.2ms)
61
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (75.4ms)
62
+
63
+
64
+ Started GET "/" for 127.0.0.1 at 2014-10-08 21:29:17 -0400
65
+ Processing by Rails::WelcomeController#index as HTML
66
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/railties-4.1.6/lib/rails/templates/rails/welcome/index.html.erb (1.6ms)
67
+ Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.0ms)
68
+
69
+
70
+ Started GET "/dfs" for 127.0.0.1 at 2014-10-08 21:29:25 -0400
71
+
72
+ ActionController::RoutingError (No route matches [GET] "/dfs"):
73
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
74
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
75
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
76
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
77
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
78
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
79
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
80
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
81
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
82
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
83
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
84
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
85
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
86
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
87
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
88
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
89
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
90
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
91
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
92
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
93
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
94
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
95
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
96
+
97
+
98
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms)
99
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms)
100
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms)
101
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms)
102
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (34.2ms)
103
+
104
+
105
+ Started GET "/" for 127.0.0.1 at 2014-10-08 21:29:36 -0400
106
+ Processing by Rails::WelcomeController#index as HTML
107
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/railties-4.1.6/lib/rails/templates/rails/welcome/index.html.erb (0.1ms)
108
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
109
+
110
+
111
+ Started GET "/" for 127.0.0.1 at 2014-10-08 21:30:22 -0400
112
+ Processing by Defcon::SessionsController#new as HTML
113
+ Completed 500 Internal Server Error in 2ms
114
+
115
+ NoMethodError (undefined method `logged_in?' for #<Defcon::SessionsController:0x00000004c51cd8>):
116
+ /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/controllers/defcon/sessions_controller.rb:54:in `logged_out_check'
117
+ activesupport (4.1.6) lib/active_support/callbacks.rb:424:in `block in make_lambda'
118
+ activesupport (4.1.6) lib/active_support/callbacks.rb:143:in `call'
119
+ activesupport (4.1.6) lib/active_support/callbacks.rb:143:in `block in halting_and_conditional'
120
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `call'
121
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
122
+ activesupport (4.1.6) lib/active_support/callbacks.rb:229:in `call'
123
+ activesupport (4.1.6) lib/active_support/callbacks.rb:229:in `block in halting'
124
+ activesupport (4.1.6) lib/active_support/callbacks.rb:166:in `call'
125
+ activesupport (4.1.6) lib/active_support/callbacks.rb:166:in `block in halting'
126
+ activesupport (4.1.6) lib/active_support/callbacks.rb:86:in `call'
127
+ activesupport (4.1.6) lib/active_support/callbacks.rb:86:in `run_callbacks'
128
+ actionpack (4.1.6) lib/abstract_controller/callbacks.rb:19:in `process_action'
129
+ actionpack (4.1.6) lib/action_controller/metal/rescue.rb:29:in `process_action'
130
+ actionpack (4.1.6) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
131
+ activesupport (4.1.6) lib/active_support/notifications.rb:159:in `block in instrument'
132
+ activesupport (4.1.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
133
+ activesupport (4.1.6) lib/active_support/notifications.rb:159:in `instrument'
134
+ actionpack (4.1.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
135
+ actionpack (4.1.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
136
+ activerecord (4.1.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
137
+ actionpack (4.1.6) lib/abstract_controller/base.rb:136:in `process'
138
+ actionview (4.1.6) lib/action_view/rendering.rb:30:in `process'
139
+ actionpack (4.1.6) lib/action_controller/metal.rb:196:in `dispatch'
140
+ actionpack (4.1.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
141
+ actionpack (4.1.6) lib/action_controller/metal.rb:232:in `block in action'
142
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:82:in `call'
143
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
144
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:50:in `call'
145
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:73:in `block in call'
146
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `each'
147
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `call'
148
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:678:in `call'
149
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
150
+ railties (4.1.6) lib/rails/railtie.rb:194:in `public_send'
151
+ railties (4.1.6) lib/rails/railtie.rb:194:in `method_missing'
152
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:73:in `block in call'
153
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `each'
154
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `call'
155
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:678:in `call'
156
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
157
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
158
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
159
+ actionpack (4.1.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
160
+ actionpack (4.1.6) lib/action_dispatch/middleware/flash.rb:254:in `call'
161
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
162
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
163
+ actionpack (4.1.6) lib/action_dispatch/middleware/cookies.rb:560:in `call'
164
+ activerecord (4.1.6) lib/active_record/query_cache.rb:36:in `call'
165
+ activerecord (4.1.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
166
+ activerecord (4.1.6) lib/active_record/migration.rb:380:in `call'
167
+ actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
168
+ activesupport (4.1.6) lib/active_support/callbacks.rb:82:in `run_callbacks'
169
+ actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
170
+ actionpack (4.1.6) lib/action_dispatch/middleware/reloader.rb:73:in `call'
171
+ actionpack (4.1.6) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
172
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
173
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
174
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
175
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
176
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
177
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
178
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
179
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
180
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
181
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
182
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
183
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
184
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
185
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
186
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
187
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
188
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
189
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
190
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
191
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
192
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
193
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
194
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
195
+
196
+
197
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.9ms)
198
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
199
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (23.0ms)
200
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (46.5ms)
201
+
202
+
203
+ Started GET "/" for 127.0.0.1 at 2014-10-08 21:30:40 -0400
204
+ Processing by Defcon::SessionsController#new as HTML
205
+ Completed 500 Internal Server Error in 2ms
206
+
207
+ NoMethodError (undefined method `logged_in?' for #<Defcon::SessionsController:0x000000038a34e8>):
208
+ /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/controllers/defcon/sessions_controller.rb:54:in `logged_out_check'
209
+ activesupport (4.1.6) lib/active_support/callbacks.rb:424:in `block in make_lambda'
210
+ activesupport (4.1.6) lib/active_support/callbacks.rb:143:in `call'
211
+ activesupport (4.1.6) lib/active_support/callbacks.rb:143:in `block in halting_and_conditional'
212
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `call'
213
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
214
+ activesupport (4.1.6) lib/active_support/callbacks.rb:229:in `call'
215
+ activesupport (4.1.6) lib/active_support/callbacks.rb:229:in `block in halting'
216
+ activesupport (4.1.6) lib/active_support/callbacks.rb:166:in `call'
217
+ activesupport (4.1.6) lib/active_support/callbacks.rb:166:in `block in halting'
218
+ activesupport (4.1.6) lib/active_support/callbacks.rb:86:in `call'
219
+ activesupport (4.1.6) lib/active_support/callbacks.rb:86:in `run_callbacks'
220
+ actionpack (4.1.6) lib/abstract_controller/callbacks.rb:19:in `process_action'
221
+ actionpack (4.1.6) lib/action_controller/metal/rescue.rb:29:in `process_action'
222
+ actionpack (4.1.6) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
223
+ activesupport (4.1.6) lib/active_support/notifications.rb:159:in `block in instrument'
224
+ activesupport (4.1.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
225
+ activesupport (4.1.6) lib/active_support/notifications.rb:159:in `instrument'
226
+ actionpack (4.1.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
227
+ actionpack (4.1.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
228
+ activerecord (4.1.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
229
+ actionpack (4.1.6) lib/abstract_controller/base.rb:136:in `process'
230
+ actionview (4.1.6) lib/action_view/rendering.rb:30:in `process'
231
+ actionpack (4.1.6) lib/action_controller/metal.rb:196:in `dispatch'
232
+ actionpack (4.1.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
233
+ actionpack (4.1.6) lib/action_controller/metal.rb:232:in `block in action'
234
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:82:in `call'
235
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
236
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:50:in `call'
237
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:73:in `block in call'
238
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `each'
239
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `call'
240
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:678:in `call'
241
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
242
+ railties (4.1.6) lib/rails/railtie.rb:194:in `public_send'
243
+ railties (4.1.6) lib/rails/railtie.rb:194:in `method_missing'
244
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:73:in `block in call'
245
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `each'
246
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `call'
247
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:678:in `call'
248
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
249
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
250
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
251
+ actionpack (4.1.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
252
+ actionpack (4.1.6) lib/action_dispatch/middleware/flash.rb:254:in `call'
253
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
254
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
255
+ actionpack (4.1.6) lib/action_dispatch/middleware/cookies.rb:560:in `call'
256
+ activerecord (4.1.6) lib/active_record/query_cache.rb:36:in `call'
257
+ activerecord (4.1.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
258
+ activerecord (4.1.6) lib/active_record/migration.rb:380:in `call'
259
+ actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
260
+ activesupport (4.1.6) lib/active_support/callbacks.rb:82:in `run_callbacks'
261
+ actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
262
+ actionpack (4.1.6) lib/action_dispatch/middleware/reloader.rb:73:in `call'
263
+ actionpack (4.1.6) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
264
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
265
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
266
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
267
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
268
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
269
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
270
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
271
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
272
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
273
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
274
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
275
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
276
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
277
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
278
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
279
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
280
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
281
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
282
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
283
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
284
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
285
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
286
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
287
+
288
+
289
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms)
290
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
291
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (10.8ms)
292
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (27.7ms)
293
+
294
+
295
+ Started GET "/admin" for 127.0.0.1 at 2014-10-09 09:21:47 -0400
296
+
297
+ ActionController::RoutingError (No route matches [GET] "admin"):
298
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
299
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
300
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
301
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
302
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
303
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
304
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
305
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
306
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
307
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
308
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
309
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
310
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
311
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
312
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
313
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
314
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
315
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
316
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
317
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
318
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
319
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
320
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
321
+
322
+
323
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
324
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms)
325
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms)
326
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (18.8ms)
327
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (71.7ms)
328
+
329
+
330
+ Started GET "/admin/login" for 127.0.0.1 at 2014-10-09 09:22:00 -0400
331
+ Processing by Defcon::SessionsController#new as HTML
332
+ Completed 500 Internal Server Error in 3ms
333
+
334
+ NoMethodError (undefined method `logged_in?' for #<Defcon::SessionsController:0x00000002419a68>):
335
+ /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/controllers/defcon/sessions_controller.rb:54:in `logged_out_check'
336
+ activesupport (4.1.6) lib/active_support/callbacks.rb:424:in `block in make_lambda'
337
+ activesupport (4.1.6) lib/active_support/callbacks.rb:143:in `call'
338
+ activesupport (4.1.6) lib/active_support/callbacks.rb:143:in `block in halting_and_conditional'
339
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `call'
340
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
341
+ activesupport (4.1.6) lib/active_support/callbacks.rb:229:in `call'
342
+ activesupport (4.1.6) lib/active_support/callbacks.rb:229:in `block in halting'
343
+ activesupport (4.1.6) lib/active_support/callbacks.rb:166:in `call'
344
+ activesupport (4.1.6) lib/active_support/callbacks.rb:166:in `block in halting'
345
+ activesupport (4.1.6) lib/active_support/callbacks.rb:86:in `call'
346
+ activesupport (4.1.6) lib/active_support/callbacks.rb:86:in `run_callbacks'
347
+ actionpack (4.1.6) lib/abstract_controller/callbacks.rb:19:in `process_action'
348
+ actionpack (4.1.6) lib/action_controller/metal/rescue.rb:29:in `process_action'
349
+ actionpack (4.1.6) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
350
+ activesupport (4.1.6) lib/active_support/notifications.rb:159:in `block in instrument'
351
+ activesupport (4.1.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
352
+ activesupport (4.1.6) lib/active_support/notifications.rb:159:in `instrument'
353
+ actionpack (4.1.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
354
+ actionpack (4.1.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
355
+ activerecord (4.1.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
356
+ actionpack (4.1.6) lib/abstract_controller/base.rb:136:in `process'
357
+ actionview (4.1.6) lib/action_view/rendering.rb:30:in `process'
358
+ actionpack (4.1.6) lib/action_controller/metal.rb:196:in `dispatch'
359
+ actionpack (4.1.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
360
+ actionpack (4.1.6) lib/action_controller/metal.rb:232:in `block in action'
361
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:82:in `call'
362
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
363
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:50:in `call'
364
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:73:in `block in call'
365
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `each'
366
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `call'
367
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:678:in `call'
368
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
369
+ railties (4.1.6) lib/rails/railtie.rb:194:in `public_send'
370
+ railties (4.1.6) lib/rails/railtie.rb:194:in `method_missing'
371
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:73:in `block in call'
372
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `each'
373
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `call'
374
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:678:in `call'
375
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
376
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
377
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
378
+ actionpack (4.1.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
379
+ actionpack (4.1.6) lib/action_dispatch/middleware/flash.rb:254:in `call'
380
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
381
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
382
+ actionpack (4.1.6) lib/action_dispatch/middleware/cookies.rb:560:in `call'
383
+ activerecord (4.1.6) lib/active_record/query_cache.rb:36:in `call'
384
+ activerecord (4.1.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
385
+ activerecord (4.1.6) lib/active_record/migration.rb:380:in `call'
386
+ actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
387
+ activesupport (4.1.6) lib/active_support/callbacks.rb:82:in `run_callbacks'
388
+ actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
389
+ actionpack (4.1.6) lib/action_dispatch/middleware/reloader.rb:73:in `call'
390
+ actionpack (4.1.6) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
391
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
392
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
393
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
394
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
395
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
396
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
397
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
398
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
399
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
400
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
401
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
402
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
403
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
404
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
405
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
406
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
407
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
408
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
409
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
410
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
411
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
412
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
413
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
414
+
415
+
416
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms)
417
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms)
418
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (18.4ms)
419
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (40.7ms)
420
+
421
+
422
+ Started GET "/admin/login" for 127.0.0.1 at 2014-10-09 09:57:00 -0400
423
+ Processing by Defcon::SessionsController#new as HTML
424
+ Rendered /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/views/defcon/sessions/new.html.erb within layouts/application (18.0ms)
425
+ Completed 200 OK in 217ms (Views: 216.2ms | ActiveRecord: 0.0ms)
426
+
427
+
428
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-09 09:57:00 -0400
429
+
430
+
431
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-09 09:57:00 -0400
432
+
433
+
434
+ Started GET "/admin/login" for 127.0.0.1 at 2014-10-09 09:58:30 -0400
435
+ Processing by Defcon::SessionsController#new as HTML
436
+ Rendered /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/views/defcon/sessions/new.html.erb within layouts/application (1.1ms)
437
+ Completed 200 OK in 20ms (Views: 18.6ms | ActiveRecord: 0.0ms)
438
+
439
+
440
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-09 09:58:30 -0400
441
+
442
+
443
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-09 09:58:30 -0400
444
+
445
+
446
+ Started GET "/admin/login" for 127.0.0.1 at 2014-10-09 09:58:31 -0400
447
+ Processing by Defcon::SessionsController#new as HTML
448
+ Rendered /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/views/defcon/sessions/new.html.erb within layouts/application (0.9ms)
449
+ Completed 200 OK in 22ms (Views: 21.5ms | ActiveRecord: 0.0ms)
450
+
451
+
452
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-09 09:58:32 -0400
453
+
454
+
455
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-09 09:58:32 -0400
456
+
457
+
458
+ Started GET "/admin/login" for 127.0.0.1 at 2014-10-09 09:59:37 -0400
459
+ Processing by Defcon::SessionsController#new as HTML
460
+ Rendered /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/views/defcon/sessions/new.html.erb within layouts/application (0.7ms)
461
+ Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.0ms)
462
+
463
+
464
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-09 09:59:37 -0400
465
+
466
+
467
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-09 09:59:37 -0400
468
+
469
+
470
+ Started GET "/admin/login" for 127.0.0.1 at 2014-10-09 09:59:38 -0400
471
+ Processing by Defcon::SessionsController#new as HTML
472
+ Rendered /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/views/defcon/sessions/new.html.erb within layouts/application (0.9ms)
473
+ Completed 200 OK in 21ms (Views: 20.2ms | ActiveRecord: 0.0ms)
474
+
475
+
476
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-09 09:59:38 -0400
477
+
478
+
479
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-09 09:59:38 -0400
480
+
481
+
482
+ Started GET "/admin/login" for 127.0.0.1 at 2014-10-09 10:00:59 -0400
483
+ Processing by Defcon::SessionsController#new as HTML
484
+ Rendered /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/views/defcon/sessions/new.html.erb within layouts/application (2.9ms)
485
+ Completed 200 OK in 105ms (Views: 73.5ms | ActiveRecord: 0.0ms)
486
+
487
+
488
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-09 10:00:59 -0400
489
+
490
+
491
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-09 10:00:59 -0400
492
+
493
+
494
+ Started GET "/admin/login" for 127.0.0.1 at 2014-10-09 10:01:49 -0400
495
+ Processing by Defcon::SessionsController#new as HTML
496
+ Rendered /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/views/defcon/sessions/new.html.erb within layouts/application (1.0ms)
497
+ Completed 200 OK in 25ms (Views: 23.2ms | ActiveRecord: 0.0ms)
498
+
499
+
500
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-09 10:01:49 -0400
501
+
502
+
503
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-09 10:01:49 -0400
504
+
505
+
506
+ Started GET "/admin/login" for 127.0.0.1 at 2014-10-09 10:01:50 -0400
507
+ Processing by Defcon::SessionsController#new as HTML
508
+ Rendered /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/views/defcon/sessions/new.html.erb within layouts/application (0.7ms)
509
+ Completed 200 OK in 26ms (Views: 25.4ms | ActiveRecord: 0.0ms)
510
+
511
+
512
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-09 10:01:50 -0400
513
+
514
+
515
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-09 10:01:50 -0400
516
+
517
+
518
+ Started GET "/" for 127.0.0.1 at 2014-10-09 10:02:01 -0400
519
+ Processing by Defcon::SessionsController#new as HTML
520
+ Rendered /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/views/defcon/sessions/new.html.erb within layouts/application (0.7ms)
521
+ Completed 200 OK in 60ms (Views: 59.6ms | ActiveRecord: 0.0ms)
522
+
523
+
524
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-09 10:02:01 -0400
525
+
526
+
527
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-09 10:02:01 -0400
528
+
529
+
530
+ Started GET "/" for 127.0.0.1 at 2014-10-09 10:02:03 -0400
531
+ Processing by Defcon::SessionsController#new as HTML
532
+ Rendered /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/views/defcon/sessions/new.html.erb within layouts/application (1.0ms)
533
+ Completed 200 OK in 19ms (Views: 17.6ms | ActiveRecord: 0.0ms)
534
+
535
+
536
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-09 10:02:03 -0400
537
+
538
+
539
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-09 10:02:03 -0400
540
+
541
+
542
+ Started GET "/" for 127.0.0.1 at 2014-10-09 10:03:40 -0400
543
+ Processing by Defcon::SessionsController#new as HTML
544
+ Rendered /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/views/defcon/sessions/new.html.erb within layouts/application (0.8ms)
545
+ Completed 200 OK in 20ms (Views: 19.2ms | ActiveRecord: 0.0ms)
546
+
547
+
548
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-09 10:03:40 -0400
549
+
550
+
551
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-09 10:03:40 -0400
552
+
553
+
554
+ Started GET "/" for 127.0.0.1 at 2014-10-09 10:03:49 -0400
555
+ Processing by Defcon::SessionsController#new as HTML
556
+ Rendered /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/views/defcon/sessions/new.html.erb within layouts/application (2.2ms)
557
+ Completed 200 OK in 21ms (Views: 19.6ms | ActiveRecord: 0.0ms)
558
+
559
+
560
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-09 10:03:49 -0400
561
+
562
+
563
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-09 10:03:49 -0400
564
+
565
+
566
+ Started GET "/" for 127.0.0.1 at 2014-10-09 10:04:32 -0400
567
+ Processing by Defcon::SessionsController#new as HTML
568
+ Rendered /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/views/defcon/sessions/new.html.erb within layouts/application (2.3ms)
569
+ Completed 200 OK in 23ms (Views: 21.7ms | ActiveRecord: 0.0ms)
570
+
571
+
572
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-09 10:04:32 -0400
573
+
574
+
575
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-09 10:04:32 -0400
576
+
577
+
578
+ Started GET "/" for 127.0.0.1 at 2014-10-09 10:04:34 -0400
579
+ Processing by Defcon::SessionsController#new as HTML
580
+ Rendered /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/views/defcon/sessions/new.html.erb within layouts/application (0.8ms)
581
+ Completed 200 OK in 20ms (Views: 19.1ms | ActiveRecord: 0.0ms)
582
+
583
+
584
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-09 10:04:34 -0400
585
+
586
+
587
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-09 10:04:34 -0400
588
+
589
+
590
+ Started GET "/" for 127.0.0.1 at 2014-10-09 10:04:56 -0400
591
+ Processing by Defcon::SessionsController#new as HTML
592
+ Rendered /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/views/defcon/sessions/new.html.erb within layouts/application (0.5ms)
593
+ Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.0ms)
594
+
595
+
596
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-09 10:04:56 -0400
597
+
598
+
599
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-09 10:04:56 -0400
600
+
601
+
602
+ Started GET "/" for 127.0.0.1 at 2014-10-09 10:04:58 -0400
603
+ Processing by Defcon::SessionsController#new as HTML
604
+ Rendered /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/views/defcon/sessions/new.html.erb within layouts/application (0.7ms)
605
+ Completed 200 OK in 20ms (Views: 19.1ms | ActiveRecord: 0.0ms)
606
+
607
+
608
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-09 10:04:58 -0400
609
+
610
+
611
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-09 10:04:58 -0400
612
+
613
+
614
+ Started GET "/" for 127.0.0.1 at 2014-10-09 10:04:59 -0400
615
+ Processing by Defcon::SessionsController#new as HTML
616
+ Rendered /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/views/defcon/sessions/new.html.erb within layouts/application (0.9ms)
617
+ Completed 200 OK in 17ms (Views: 15.6ms | ActiveRecord: 0.0ms)
618
+
619
+
620
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-09 10:04:59 -0400
621
+
622
+
623
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-09 10:04:59 -0400
624
+
625
+
626
+ Started GET "/" for 127.0.0.1 at 2014-10-09 10:07:37 -0400
627
+ Processing by Defcon::SessionsController#new as HTML
628
+ Rendered /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/views/defcon/sessions/new.html.erb within layouts/application (0.5ms)
629
+ Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.0ms)
630
+
631
+
632
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-09 10:07:38 -0400
633
+
634
+
635
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-09 10:07:38 -0400
636
+
637
+
638
+ Started GET "/" for 127.0.0.1 at 2014-10-09 10:07:49 -0400
639
+ Processing by Defcon::SessionsController#new as HTML
640
+ Rendered /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/views/defcon/sessions/new.html.erb within layouts/application (2.3ms)
641
+ Completed 200 OK in 37ms (Views: 26.7ms | ActiveRecord: 0.0ms)
642
+
643
+
644
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-09 10:07:50 -0400
645
+
646
+
647
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-09 10:07:50 -0400
648
+
649
+
650
+ Started GET "/" for 127.0.0.1 at 2014-10-09 10:13:18 -0400
651
+
652
+ RuntimeError (Circular dependency detected while autoloading constant Defcon::ApplicationController):
653
+ activesupport (4.1.6) lib/active_support/dependencies.rb:478:in `load_missing_constant'
654
+ activesupport (4.1.6) lib/active_support/dependencies.rb:180:in `const_missing'
655
+ /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/controllers/defcon/application_controller.rb:2:in `<module:Defcon>'
656
+ /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/controllers/defcon/application_controller.rb:1:in `<top (required)>'
657
+ activesupport (4.1.6) lib/active_support/dependencies.rb:443:in `load'
658
+ activesupport (4.1.6) lib/active_support/dependencies.rb:443:in `block in load_file'
659
+ activesupport (4.1.6) lib/active_support/dependencies.rb:633:in `new_constants_in'
660
+ activesupport (4.1.6) lib/active_support/dependencies.rb:442:in `load_file'
661
+ activesupport (4.1.6) lib/active_support/dependencies.rb:342:in `require_or_load'
662
+ activesupport (4.1.6) lib/active_support/dependencies.rb:307:in `depend_on'
663
+ activesupport (4.1.6) lib/active_support/dependencies.rb:225:in `require_dependency'
664
+ /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/controllers/defcon/sessions_controller.rb:1:in `<top (required)>'
665
+ activesupport (4.1.6) lib/active_support/dependencies.rb:443:in `load'
666
+ activesupport (4.1.6) lib/active_support/dependencies.rb:443:in `block in load_file'
667
+ activesupport (4.1.6) lib/active_support/dependencies.rb:633:in `new_constants_in'
668
+ activesupport (4.1.6) lib/active_support/dependencies.rb:442:in `load_file'
669
+ activesupport (4.1.6) lib/active_support/dependencies.rb:342:in `require_or_load'
670
+ activesupport (4.1.6) lib/active_support/dependencies.rb:480:in `load_missing_constant'
671
+ activesupport (4.1.6) lib/active_support/dependencies.rb:180:in `const_missing'
672
+ activesupport (4.1.6) lib/active_support/inflector/methods.rb:240:in `const_get'
673
+ activesupport (4.1.6) lib/active_support/inflector/methods.rb:240:in `block in constantize'
674
+ activesupport (4.1.6) lib/active_support/inflector/methods.rb:236:in `each'
675
+ activesupport (4.1.6) lib/active_support/inflector/methods.rb:236:in `inject'
676
+ activesupport (4.1.6) lib/active_support/inflector/methods.rb:236:in `constantize'
677
+ activesupport (4.1.6) lib/active_support/dependencies.rb:552:in `get'
678
+ activesupport (4.1.6) lib/active_support/dependencies.rb:583:in `constantize'
679
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:78:in `controller_reference'
680
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:68:in `controller'
681
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:46:in `call'
682
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:73:in `block in call'
683
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `each'
684
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `call'
685
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:678:in `call'
686
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
687
+ railties (4.1.6) lib/rails/railtie.rb:194:in `public_send'
688
+ railties (4.1.6) lib/rails/railtie.rb:194:in `method_missing'
689
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:73:in `block in call'
690
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `each'
691
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `call'
692
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:678:in `call'
693
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
694
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
695
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
696
+ actionpack (4.1.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
697
+ actionpack (4.1.6) lib/action_dispatch/middleware/flash.rb:254:in `call'
698
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
699
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
700
+ actionpack (4.1.6) lib/action_dispatch/middleware/cookies.rb:560:in `call'
701
+ activerecord (4.1.6) lib/active_record/query_cache.rb:36:in `call'
702
+ activerecord (4.1.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
703
+ activerecord (4.1.6) lib/active_record/migration.rb:380:in `call'
704
+ actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
705
+ activesupport (4.1.6) lib/active_support/callbacks.rb:82:in `run_callbacks'
706
+ actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
707
+ actionpack (4.1.6) lib/action_dispatch/middleware/reloader.rb:73:in `call'
708
+ actionpack (4.1.6) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
709
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
710
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
711
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
712
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
713
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
714
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
715
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
716
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
717
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
718
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
719
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
720
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
721
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
722
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
723
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
724
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
725
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
726
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
727
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
728
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
729
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
730
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
731
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
732
+
733
+
734
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.1ms)
735
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms)
736
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms)
737
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (26.0ms)
738
+
739
+
740
+ Started GET "/" for 127.0.0.1 at 2014-10-09 10:13:58 -0400
741
+ Processing by Defcon::SessionsController#new as HTML
742
+ Rendered /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/views/defcon/sessions/new.html.erb (1.3ms)
743
+ Completed 200 OK in 8ms (Views: 6.6ms | ActiveRecord: 0.0ms)
744
+
745
+
746
+ Started GET "/" for 127.0.0.1 at 2014-10-09 10:14:02 -0400
747
+ Processing by Defcon::SessionsController#new as HTML
748
+ Rendered /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/views/defcon/sessions/new.html.erb (0.7ms)
749
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.0ms)
750
+
751
+
752
+ Started GET "/" for 127.0.0.1 at 2014-10-09 10:14:45 -0400
753
+ Processing by Defcon::SessionsController#new as HTML
754
+ Rendered /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/views/defcon/sessions/new.html.erb (0.9ms)
755
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.0ms)
756
+
757
+
758
+ Started GET "/" for 127.0.0.1 at 2014-10-09 10:14:46 -0400
759
+ Processing by Defcon::SessionsController#new as HTML
760
+ Rendered /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/views/defcon/sessions/new.html.erb (0.5ms)
761
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
762
+
763
+
764
+ Started GET "/" for 127.0.0.1 at 2014-10-09 10:15:01 -0400
765
+ Processing by Defcon::SessionsController#new as HTML
766
+ Rendered /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/views/defcon/sessions/new.html.erb within layouts/application (0.7ms)
767
+ Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.0ms)
768
+
769
+
770
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-09 10:15:01 -0400
771
+
772
+
773
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-09 10:15:01 -0400
774
+
775
+
776
+ Started GET "/" for 127.0.0.1 at 2014-10-09 10:15:02 -0400
777
+ Processing by Defcon::SessionsController#new as HTML
778
+ Rendered /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/views/defcon/sessions/new.html.erb within layouts/application (0.9ms)
779
+ Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.0ms)
780
+
781
+
782
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-09 10:15:02 -0400
783
+
784
+
785
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-09 10:15:02 -0400
786
+
787
+
788
+ Started GET "/" for 127.0.0.1 at 2014-10-09 10:16:20 -0400
789
+ Processing by Defcon::SessionsController#new as HTML
790
+ Rendered /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/views/defcon/sessions/new.html.erb within layouts/defcon/application (2.2ms)
791
+ Completed 200 OK in 83ms (Views: 72.8ms | ActiveRecord: 0.0ms)
792
+
793
+
794
+ Started GET "/assets/defcon/sessions.css?body=1" for 127.0.0.1 at 2014-10-09 10:16:21 -0400
795
+
796
+
797
+ Started GET "/assets/defcon/application.css?body=1" for 127.0.0.1 at 2014-10-09 10:16:21 -0400
798
+
799
+
800
+ Started GET "/assets/defcon/sessions.js?body=1" for 127.0.0.1 at 2014-10-09 10:16:21 -0400
801
+
802
+
803
+ Started GET "/assets/defcon/application.js?body=1" for 127.0.0.1 at 2014-10-09 10:16:21 -0400
804
+
805
+
806
+ Started GET "/" for 127.0.0.1 at 2014-10-09 10:17:09 -0400
807
+ Processing by Defcon::SessionsController#new as HTML
808
+ Rendered /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/views/defcon/sessions/new.html.erb within layouts/defcon/application (0.7ms)
809
+ Completed 200 OK in 19ms (Views: 18.5ms | ActiveRecord: 0.0ms)
810
+
811
+
812
+ Started GET "/assets/defcon/sessions.css?body=1" for 127.0.0.1 at 2014-10-09 10:17:09 -0400
813
+
814
+
815
+ Started GET "/assets/defcon/sessions.js?body=1" for 127.0.0.1 at 2014-10-09 10:17:09 -0400
816
+
817
+
818
+ Started GET "/assets/defcon/application.js?body=1" for 127.0.0.1 at 2014-10-09 10:17:09 -0400
819
+
820
+
821
+ Started GET "/assets/defcon/application.css?body=1" for 127.0.0.1 at 2014-10-09 10:17:09 -0400
822
+
823
+
824
+ Started GET "/" for 127.0.0.1 at 2014-10-09 10:17:11 -0400
825
+ Processing by Defcon::SessionsController#new as HTML
826
+ Rendered /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/views/defcon/sessions/new.html.erb within layouts/defcon/application (0.6ms)
827
+ Completed 200 OK in 18ms (Views: 17.4ms | ActiveRecord: 0.0ms)
828
+
829
+
830
+ Started GET "/assets/defcon/sessions.css?body=1" for 127.0.0.1 at 2014-10-09 10:17:11 -0400
831
+
832
+
833
+ Started GET "/assets/defcon/application.css?body=1" for 127.0.0.1 at 2014-10-09 10:17:11 -0400
834
+
835
+
836
+ Started GET "/assets/defcon/sessions.js?body=1" for 127.0.0.1 at 2014-10-09 10:17:11 -0400
837
+
838
+
839
+ Started GET "/assets/defcon/application.js?body=1" for 127.0.0.1 at 2014-10-09 10:17:11 -0400
840
+
841
+
842
+ Started GET "/" for 127.0.0.1 at 2014-10-09 10:17:49 -0400
843
+ Processing by Defcon::SessionsController#new as HTML
844
+ Rendered /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/views/defcon/sessions/new.html.erb within layouts/defcon/application (0.7ms)
845
+ Completed 200 OK in 26ms (Views: 25.3ms | ActiveRecord: 0.0ms)
846
+
847
+
848
+ Started GET "/assets/defcon/sessions.css?body=1" for 127.0.0.1 at 2014-10-09 10:17:49 -0400
849
+
850
+
851
+ Started GET "/assets/defcon/sessions.js?body=1" for 127.0.0.1 at 2014-10-09 10:17:49 -0400
852
+
853
+
854
+ Started GET "/assets/defcon/application.css?body=1" for 127.0.0.1 at 2014-10-09 10:17:49 -0400
855
+
856
+
857
+ Started GET "/assets/defcon/application.js?body=1" for 127.0.0.1 at 2014-10-09 10:17:49 -0400
858
+
859
+
860
+ Started POST "/sessions/create" for 127.0.0.1 at 2014-10-09 10:17:55 -0400
861
+ Processing by Defcon::SessionsController#create as HTML
862
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"fde2AwPsDB19M37VUFClr3+ZeJ2geiUBmb9tw7v3QOY=", "username"=>"", "password"=>"[FILTERED]", "commit"=>"Login"}
863
+ Completed 500 Internal Server Error in 142ms
864
+
865
+ LoadError (cannot load such file -- bcrypt):
866
+ activesupport (4.1.6) lib/active_support/dependencies.rb:247:in `require'
867
+ activesupport (4.1.6) lib/active_support/dependencies.rb:247:in `block in require'
868
+ activesupport (4.1.6) lib/active_support/dependencies.rb:230:in `block in load_dependency'
869
+ activesupport (4.1.6) lib/active_support/dependencies.rb:633:in `new_constants_in'
870
+ activesupport (4.1.6) lib/active_support/dependencies.rb:230:in `load_dependency'
871
+ activesupport (4.1.6) lib/active_support/dependencies.rb:247:in `require'
872
+ activemodel (4.1.6) lib/active_model/secure_password.rb:49:in `has_secure_password'
873
+ /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/models/defcon/admin_user.rb:3:in `<class:AdminUser>'
874
+ /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/models/defcon/admin_user.rb:2:in `<module:Defcon>'
875
+ /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/models/defcon/admin_user.rb:1:in `<top (required)>'
876
+ activesupport (4.1.6) lib/active_support/dependencies.rb:443:in `load'
877
+ activesupport (4.1.6) lib/active_support/dependencies.rb:443:in `block in load_file'
878
+ activesupport (4.1.6) lib/active_support/dependencies.rb:633:in `new_constants_in'
879
+ activesupport (4.1.6) lib/active_support/dependencies.rb:442:in `load_file'
880
+ activesupport (4.1.6) lib/active_support/dependencies.rb:342:in `require_or_load'
881
+ activesupport (4.1.6) lib/active_support/dependencies.rb:480:in `load_missing_constant'
882
+ activesupport (4.1.6) lib/active_support/dependencies.rb:180:in `const_missing'
883
+ /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/controllers/defcon/sessions_controller.rb:12:in `create'
884
+ actionpack (4.1.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
885
+ actionpack (4.1.6) lib/abstract_controller/base.rb:189:in `process_action'
886
+ actionpack (4.1.6) lib/action_controller/metal/rendering.rb:10:in `process_action'
887
+ actionpack (4.1.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
888
+ activesupport (4.1.6) lib/active_support/callbacks.rb:113:in `call'
889
+ activesupport (4.1.6) lib/active_support/callbacks.rb:113:in `call'
890
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
891
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `call'
892
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
893
+ activesupport (4.1.6) lib/active_support/callbacks.rb:229:in `call'
894
+ activesupport (4.1.6) lib/active_support/callbacks.rb:229:in `block in halting'
895
+ activesupport (4.1.6) lib/active_support/callbacks.rb:166:in `call'
896
+ activesupport (4.1.6) lib/active_support/callbacks.rb:166:in `block in halting'
897
+ activesupport (4.1.6) lib/active_support/callbacks.rb:86:in `call'
898
+ activesupport (4.1.6) lib/active_support/callbacks.rb:86:in `run_callbacks'
899
+ actionpack (4.1.6) lib/abstract_controller/callbacks.rb:19:in `process_action'
900
+ actionpack (4.1.6) lib/action_controller/metal/rescue.rb:29:in `process_action'
901
+ actionpack (4.1.6) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
902
+ activesupport (4.1.6) lib/active_support/notifications.rb:159:in `block in instrument'
903
+ activesupport (4.1.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
904
+ activesupport (4.1.6) lib/active_support/notifications.rb:159:in `instrument'
905
+ actionpack (4.1.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
906
+ actionpack (4.1.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
907
+ activerecord (4.1.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
908
+ actionpack (4.1.6) lib/abstract_controller/base.rb:136:in `process'
909
+ actionview (4.1.6) lib/action_view/rendering.rb:30:in `process'
910
+ actionpack (4.1.6) lib/action_controller/metal.rb:196:in `dispatch'
911
+ actionpack (4.1.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
912
+ actionpack (4.1.6) lib/action_controller/metal.rb:232:in `block in action'
913
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:82:in `call'
914
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
915
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:50:in `call'
916
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:73:in `block in call'
917
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `each'
918
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `call'
919
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:678:in `call'
920
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
921
+ railties (4.1.6) lib/rails/railtie.rb:194:in `public_send'
922
+ railties (4.1.6) lib/rails/railtie.rb:194:in `method_missing'
923
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:73:in `block in call'
924
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `each'
925
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `call'
926
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:678:in `call'
927
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
928
+ rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
929
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
930
+ actionpack (4.1.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
931
+ actionpack (4.1.6) lib/action_dispatch/middleware/flash.rb:254:in `call'
932
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
933
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
934
+ actionpack (4.1.6) lib/action_dispatch/middleware/cookies.rb:560:in `call'
935
+ activerecord (4.1.6) lib/active_record/query_cache.rb:36:in `call'
936
+ activerecord (4.1.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
937
+ activerecord (4.1.6) lib/active_record/migration.rb:380:in `call'
938
+ actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
939
+ activesupport (4.1.6) lib/active_support/callbacks.rb:82:in `run_callbacks'
940
+ actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
941
+ actionpack (4.1.6) lib/action_dispatch/middleware/reloader.rb:73:in `call'
942
+ actionpack (4.1.6) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
943
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
944
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
945
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
946
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
947
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
948
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
949
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
950
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
951
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
952
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
953
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
954
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
955
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
956
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
957
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
958
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
959
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
960
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
961
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
962
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
963
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
964
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
965
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
966
+
967
+
968
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms)
969
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
970
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
971
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.9ms)
972
+
973
+
974
+ Started GET "/" for 127.0.0.1 at 2014-10-09 10:20:54 -0400
975
+ Processing by Defcon::SessionsController#new as HTML
976
+ Rendered /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/views/defcon/sessions/new.html.erb within layouts/defcon/application (2.1ms)
977
+ Completed 200 OK in 55ms (Views: 44.8ms | ActiveRecord: 0.0ms)
978
+
979
+
980
+ Started GET "/assets/defcon/sessions.css?body=1" for 127.0.0.1 at 2014-10-09 10:20:55 -0400
981
+
982
+
983
+ Started GET "/assets/defcon/sessions.js?body=1" for 127.0.0.1 at 2014-10-09 10:20:55 -0400
984
+
985
+
986
+ Started GET "/assets/defcon/application.css?body=1" for 127.0.0.1 at 2014-10-09 10:20:55 -0400
987
+
988
+
989
+ Started GET "/assets/defcon/application.js?body=1" for 127.0.0.1 at 2014-10-09 10:20:55 -0400
990
+
991
+
992
+ Started POST "/sessions/create" for 127.0.0.1 at 2014-10-09 10:20:56 -0400
993
+ Processing by Defcon::SessionsController#create as HTML
994
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"fde2AwPsDB19M37VUFClr3+ZeJ2geiUBmb9tw7v3QOY=", "username"=>"", "password"=>"[FILTERED]", "commit"=>"Login"}
995
+ Defcon::AdminUser Load (0.2ms) SELECT "defcon_admin_users".* FROM "defcon_admin_users" WHERE "defcon_admin_users"."username" = '' LIMIT 1
996
+ Redirected to http://localhost:3000/admin/login
997
+ Completed 302 Found in 166ms (ActiveRecord: 14.1ms)
998
+
999
+
1000
+ Started GET "/admin/login" for 127.0.0.1 at 2014-10-09 10:20:56 -0400
1001
+ Processing by Defcon::SessionsController#new as HTML
1002
+ Rendered /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/views/defcon/sessions/new.html.erb within layouts/defcon/application (0.7ms)
1003
+ Completed 200 OK in 18ms (Views: 16.8ms | ActiveRecord: 0.0ms)
1004
+
1005
+
1006
+ Started GET "/assets/defcon/sessions.css?body=1" for 127.0.0.1 at 2014-10-09 10:20:56 -0400
1007
+
1008
+
1009
+ Started GET "/assets/defcon/application.css?body=1" for 127.0.0.1 at 2014-10-09 10:20:56 -0400
1010
+
1011
+
1012
+ Started GET "/assets/defcon/application.js?body=1" for 127.0.0.1 at 2014-10-09 10:20:56 -0400
1013
+
1014
+
1015
+ Started GET "/assets/defcon/sessions.js?body=1" for 127.0.0.1 at 2014-10-09 10:20:56 -0400
1016
+
1017
+
1018
+ Started POST "/sessions/create" for 127.0.0.1 at 2014-10-09 10:21:04 -0400
1019
+ Processing by Defcon::SessionsController#create as HTML
1020
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"fde2AwPsDB19M37VUFClr3+ZeJ2geiUBmb9tw7v3QOY=", "username"=>"admin", "password"=>"[FILTERED]", "commit"=>"Login"}
1021
+ Defcon::AdminUser Load (0.2ms) SELECT "defcon_admin_users".* FROM "defcon_admin_users" WHERE "defcon_admin_users"."username" = 'admin' LIMIT 1
1022
+ Redirected to http://localhost:3000/admin/login
1023
+ Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
1024
+
1025
+
1026
+ Started GET "/admin/login" for 127.0.0.1 at 2014-10-09 10:21:04 -0400
1027
+ Processing by Defcon::SessionsController#new as HTML
1028
+ Rendered /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/views/defcon/sessions/new.html.erb within layouts/defcon/application (0.8ms)
1029
+ Completed 200 OK in 20ms (Views: 18.9ms | ActiveRecord: 0.0ms)
1030
+
1031
+
1032
+ Started GET "/assets/defcon/sessions.css?body=1" for 127.0.0.1 at 2014-10-09 10:21:04 -0400
1033
+
1034
+
1035
+ Started GET "/assets/defcon/application.css?body=1" for 127.0.0.1 at 2014-10-09 10:21:04 -0400
1036
+
1037
+
1038
+ Started GET "/assets/defcon/application.js?body=1" for 127.0.0.1 at 2014-10-09 10:21:04 -0400
1039
+
1040
+
1041
+ Started GET "/assets/defcon/sessions.js?body=1" for 127.0.0.1 at 2014-10-09 10:21:04 -0400
1042
+
1043
+
1044
+ Started GET "/admin/login" for 127.0.0.1 at 2014-10-09 10:31:13 -0400
1045
+ Processing by Defcon::SessionsController#new as HTML
1046
+ Completed 500 Internal Server Error in 2ms
1047
+
1048
+ NoMethodError (undefined method `logged_in?' for #<Defcon::SessionsController:0x0000000399bbc0>):
1049
+ /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/controllers/defcon/sessions_controller.rb:54:in `logged_out_check'
1050
+ activesupport (4.1.6) lib/active_support/callbacks.rb:424:in `block in make_lambda'
1051
+ activesupport (4.1.6) lib/active_support/callbacks.rb:143:in `call'
1052
+ activesupport (4.1.6) lib/active_support/callbacks.rb:143:in `block in halting_and_conditional'
1053
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `call'
1054
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
1055
+ activesupport (4.1.6) lib/active_support/callbacks.rb:229:in `call'
1056
+ activesupport (4.1.6) lib/active_support/callbacks.rb:229:in `block in halting'
1057
+ activesupport (4.1.6) lib/active_support/callbacks.rb:166:in `call'
1058
+ activesupport (4.1.6) lib/active_support/callbacks.rb:166:in `block in halting'
1059
+ activesupport (4.1.6) lib/active_support/callbacks.rb:86:in `call'
1060
+ activesupport (4.1.6) lib/active_support/callbacks.rb:86:in `run_callbacks'
1061
+ actionpack (4.1.6) lib/abstract_controller/callbacks.rb:19:in `process_action'
1062
+ actionpack (4.1.6) lib/action_controller/metal/rescue.rb:29:in `process_action'
1063
+ actionpack (4.1.6) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1064
+ activesupport (4.1.6) lib/active_support/notifications.rb:159:in `block in instrument'
1065
+ activesupport (4.1.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1066
+ activesupport (4.1.6) lib/active_support/notifications.rb:159:in `instrument'
1067
+ actionpack (4.1.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1068
+ actionpack (4.1.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
1069
+ activerecord (4.1.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1070
+ actionpack (4.1.6) lib/abstract_controller/base.rb:136:in `process'
1071
+ actionview (4.1.6) lib/action_view/rendering.rb:30:in `process'
1072
+ actionpack (4.1.6) lib/action_controller/metal.rb:196:in `dispatch'
1073
+ actionpack (4.1.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1074
+ actionpack (4.1.6) lib/action_controller/metal.rb:232:in `block in action'
1075
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:82:in `call'
1076
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
1077
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:50:in `call'
1078
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:73:in `block in call'
1079
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `each'
1080
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `call'
1081
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:678:in `call'
1082
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
1083
+ railties (4.1.6) lib/rails/railtie.rb:194:in `public_send'
1084
+ railties (4.1.6) lib/rails/railtie.rb:194:in `method_missing'
1085
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:73:in `block in call'
1086
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `each'
1087
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `call'
1088
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:678:in `call'
1089
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1090
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1091
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1092
+ actionpack (4.1.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1093
+ actionpack (4.1.6) lib/action_dispatch/middleware/flash.rb:254:in `call'
1094
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1095
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1096
+ actionpack (4.1.6) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1097
+ activerecord (4.1.6) lib/active_record/query_cache.rb:36:in `call'
1098
+ activerecord (4.1.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
1099
+ activerecord (4.1.6) lib/active_record/migration.rb:380:in `call'
1100
+ actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1101
+ activesupport (4.1.6) lib/active_support/callbacks.rb:82:in `run_callbacks'
1102
+ actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1103
+ actionpack (4.1.6) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1104
+ actionpack (4.1.6) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1105
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1106
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1107
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
1108
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
1109
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1110
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
1111
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
1112
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
1113
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1114
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1115
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1116
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1117
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1118
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
1119
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1120
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
1121
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
1122
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1123
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1124
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1125
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1126
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1127
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1128
+
1129
+
1130
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms)
1131
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
1132
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms)
1133
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (17.8ms)
1134
+
1135
+
1136
+ Started GET "/" for 127.0.0.1 at 2014-10-09 10:31:35 -0400
1137
+ Processing by Defcon::SessionsController#new as HTML
1138
+ Completed 500 Internal Server Error in 3ms
1139
+
1140
+ NoMethodError (undefined method `logged_in?' for #<Defcon::SessionsController:0x000000051a21d8>):
1141
+ /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/controllers/defcon/sessions_controller.rb:54:in `logged_out_check'
1142
+ activesupport (4.1.6) lib/active_support/callbacks.rb:424:in `block in make_lambda'
1143
+ activesupport (4.1.6) lib/active_support/callbacks.rb:143:in `call'
1144
+ activesupport (4.1.6) lib/active_support/callbacks.rb:143:in `block in halting_and_conditional'
1145
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `call'
1146
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
1147
+ activesupport (4.1.6) lib/active_support/callbacks.rb:229:in `call'
1148
+ activesupport (4.1.6) lib/active_support/callbacks.rb:229:in `block in halting'
1149
+ activesupport (4.1.6) lib/active_support/callbacks.rb:166:in `call'
1150
+ activesupport (4.1.6) lib/active_support/callbacks.rb:166:in `block in halting'
1151
+ activesupport (4.1.6) lib/active_support/callbacks.rb:86:in `call'
1152
+ activesupport (4.1.6) lib/active_support/callbacks.rb:86:in `run_callbacks'
1153
+ actionpack (4.1.6) lib/abstract_controller/callbacks.rb:19:in `process_action'
1154
+ actionpack (4.1.6) lib/action_controller/metal/rescue.rb:29:in `process_action'
1155
+ actionpack (4.1.6) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1156
+ activesupport (4.1.6) lib/active_support/notifications.rb:159:in `block in instrument'
1157
+ activesupport (4.1.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1158
+ activesupport (4.1.6) lib/active_support/notifications.rb:159:in `instrument'
1159
+ actionpack (4.1.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1160
+ actionpack (4.1.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
1161
+ activerecord (4.1.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1162
+ actionpack (4.1.6) lib/abstract_controller/base.rb:136:in `process'
1163
+ actionview (4.1.6) lib/action_view/rendering.rb:30:in `process'
1164
+ actionpack (4.1.6) lib/action_controller/metal.rb:196:in `dispatch'
1165
+ actionpack (4.1.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1166
+ actionpack (4.1.6) lib/action_controller/metal.rb:232:in `block in action'
1167
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:82:in `call'
1168
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
1169
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:50:in `call'
1170
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:73:in `block in call'
1171
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `each'
1172
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `call'
1173
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:678:in `call'
1174
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
1175
+ railties (4.1.6) lib/rails/railtie.rb:194:in `public_send'
1176
+ railties (4.1.6) lib/rails/railtie.rb:194:in `method_missing'
1177
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:73:in `block in call'
1178
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `each'
1179
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `call'
1180
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:678:in `call'
1181
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1182
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1183
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1184
+ actionpack (4.1.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1185
+ actionpack (4.1.6) lib/action_dispatch/middleware/flash.rb:254:in `call'
1186
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1187
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1188
+ actionpack (4.1.6) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1189
+ activerecord (4.1.6) lib/active_record/query_cache.rb:36:in `call'
1190
+ activerecord (4.1.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
1191
+ activerecord (4.1.6) lib/active_record/migration.rb:380:in `call'
1192
+ actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1193
+ activesupport (4.1.6) lib/active_support/callbacks.rb:82:in `run_callbacks'
1194
+ actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1195
+ actionpack (4.1.6) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1196
+ actionpack (4.1.6) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1197
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1198
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1199
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
1200
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
1201
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1202
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
1203
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
1204
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
1205
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1206
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1207
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1208
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1209
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1210
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
1211
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1212
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
1213
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
1214
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1215
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1216
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1217
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1218
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1219
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1220
+
1221
+
1222
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.8ms)
1223
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
1224
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms)
1225
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (19.3ms)
1226
+
1227
+
1228
+ Started GET "/" for 127.0.0.1 at 2014-10-09 10:31:48 -0400
1229
+ Processing by Defcon::SessionsController#new as HTML
1230
+ Completed 500 Internal Server Error in 2ms
1231
+
1232
+ NoMethodError (undefined method `logged_in?' for #<Defcon::SessionsController:0x000000039b5598>):
1233
+ /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/controllers/defcon/sessions_controller.rb:54:in `logged_out_check'
1234
+ activesupport (4.1.6) lib/active_support/callbacks.rb:424:in `block in make_lambda'
1235
+ activesupport (4.1.6) lib/active_support/callbacks.rb:143:in `call'
1236
+ activesupport (4.1.6) lib/active_support/callbacks.rb:143:in `block in halting_and_conditional'
1237
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `call'
1238
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
1239
+ activesupport (4.1.6) lib/active_support/callbacks.rb:229:in `call'
1240
+ activesupport (4.1.6) lib/active_support/callbacks.rb:229:in `block in halting'
1241
+ activesupport (4.1.6) lib/active_support/callbacks.rb:166:in `call'
1242
+ activesupport (4.1.6) lib/active_support/callbacks.rb:166:in `block in halting'
1243
+ activesupport (4.1.6) lib/active_support/callbacks.rb:86:in `call'
1244
+ activesupport (4.1.6) lib/active_support/callbacks.rb:86:in `run_callbacks'
1245
+ actionpack (4.1.6) lib/abstract_controller/callbacks.rb:19:in `process_action'
1246
+ actionpack (4.1.6) lib/action_controller/metal/rescue.rb:29:in `process_action'
1247
+ actionpack (4.1.6) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1248
+ activesupport (4.1.6) lib/active_support/notifications.rb:159:in `block in instrument'
1249
+ activesupport (4.1.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1250
+ activesupport (4.1.6) lib/active_support/notifications.rb:159:in `instrument'
1251
+ actionpack (4.1.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1252
+ actionpack (4.1.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
1253
+ activerecord (4.1.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1254
+ actionpack (4.1.6) lib/abstract_controller/base.rb:136:in `process'
1255
+ actionview (4.1.6) lib/action_view/rendering.rb:30:in `process'
1256
+ actionpack (4.1.6) lib/action_controller/metal.rb:196:in `dispatch'
1257
+ actionpack (4.1.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1258
+ actionpack (4.1.6) lib/action_controller/metal.rb:232:in `block in action'
1259
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:82:in `call'
1260
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
1261
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:50:in `call'
1262
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:73:in `block in call'
1263
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `each'
1264
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `call'
1265
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:678:in `call'
1266
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
1267
+ railties (4.1.6) lib/rails/railtie.rb:194:in `public_send'
1268
+ railties (4.1.6) lib/rails/railtie.rb:194:in `method_missing'
1269
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:73:in `block in call'
1270
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `each'
1271
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `call'
1272
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:678:in `call'
1273
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1274
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1275
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1276
+ actionpack (4.1.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1277
+ actionpack (4.1.6) lib/action_dispatch/middleware/flash.rb:254:in `call'
1278
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1279
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1280
+ actionpack (4.1.6) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1281
+ activerecord (4.1.6) lib/active_record/query_cache.rb:36:in `call'
1282
+ activerecord (4.1.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
1283
+ activerecord (4.1.6) lib/active_record/migration.rb:380:in `call'
1284
+ actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1285
+ activesupport (4.1.6) lib/active_support/callbacks.rb:82:in `run_callbacks'
1286
+ actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1287
+ actionpack (4.1.6) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1288
+ actionpack (4.1.6) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1289
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1290
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1291
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
1292
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
1293
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1294
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
1295
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
1296
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
1297
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1298
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1299
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1300
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1301
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1302
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
1303
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1304
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
1305
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
1306
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1307
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1308
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1309
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1310
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1311
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1312
+
1313
+
1314
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.9ms)
1315
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
1316
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (11.5ms)
1317
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (27.4ms)
1318
+
1319
+
1320
+ Started GET "/" for 127.0.0.1 at 2014-10-09 10:31:50 -0400
1321
+ Processing by Defcon::SessionsController#new as HTML
1322
+ Completed 500 Internal Server Error in 3ms
1323
+
1324
+ NoMethodError (undefined method `logged_in?' for #<Defcon::SessionsController:0x0000000380f1d0>):
1325
+ /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/controllers/defcon/sessions_controller.rb:54:in `logged_out_check'
1326
+ activesupport (4.1.6) lib/active_support/callbacks.rb:424:in `block in make_lambda'
1327
+ activesupport (4.1.6) lib/active_support/callbacks.rb:143:in `call'
1328
+ activesupport (4.1.6) lib/active_support/callbacks.rb:143:in `block in halting_and_conditional'
1329
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `call'
1330
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
1331
+ activesupport (4.1.6) lib/active_support/callbacks.rb:229:in `call'
1332
+ activesupport (4.1.6) lib/active_support/callbacks.rb:229:in `block in halting'
1333
+ activesupport (4.1.6) lib/active_support/callbacks.rb:166:in `call'
1334
+ activesupport (4.1.6) lib/active_support/callbacks.rb:166:in `block in halting'
1335
+ activesupport (4.1.6) lib/active_support/callbacks.rb:86:in `call'
1336
+ activesupport (4.1.6) lib/active_support/callbacks.rb:86:in `run_callbacks'
1337
+ actionpack (4.1.6) lib/abstract_controller/callbacks.rb:19:in `process_action'
1338
+ actionpack (4.1.6) lib/action_controller/metal/rescue.rb:29:in `process_action'
1339
+ actionpack (4.1.6) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1340
+ activesupport (4.1.6) lib/active_support/notifications.rb:159:in `block in instrument'
1341
+ activesupport (4.1.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1342
+ activesupport (4.1.6) lib/active_support/notifications.rb:159:in `instrument'
1343
+ actionpack (4.1.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1344
+ actionpack (4.1.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
1345
+ activerecord (4.1.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1346
+ actionpack (4.1.6) lib/abstract_controller/base.rb:136:in `process'
1347
+ actionview (4.1.6) lib/action_view/rendering.rb:30:in `process'
1348
+ actionpack (4.1.6) lib/action_controller/metal.rb:196:in `dispatch'
1349
+ actionpack (4.1.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1350
+ actionpack (4.1.6) lib/action_controller/metal.rb:232:in `block in action'
1351
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:82:in `call'
1352
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
1353
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:50:in `call'
1354
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:73:in `block in call'
1355
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `each'
1356
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `call'
1357
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:678:in `call'
1358
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
1359
+ railties (4.1.6) lib/rails/railtie.rb:194:in `public_send'
1360
+ railties (4.1.6) lib/rails/railtie.rb:194:in `method_missing'
1361
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:73:in `block in call'
1362
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `each'
1363
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `call'
1364
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:678:in `call'
1365
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1366
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1367
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1368
+ actionpack (4.1.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1369
+ actionpack (4.1.6) lib/action_dispatch/middleware/flash.rb:254:in `call'
1370
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1371
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1372
+ actionpack (4.1.6) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1373
+ activerecord (4.1.6) lib/active_record/query_cache.rb:36:in `call'
1374
+ activerecord (4.1.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
1375
+ activerecord (4.1.6) lib/active_record/migration.rb:380:in `call'
1376
+ actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1377
+ activesupport (4.1.6) lib/active_support/callbacks.rb:82:in `run_callbacks'
1378
+ actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1379
+ actionpack (4.1.6) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1380
+ actionpack (4.1.6) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1381
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1382
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1383
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
1384
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
1385
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1386
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
1387
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
1388
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
1389
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1390
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1391
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1392
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1393
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1394
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
1395
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1396
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
1397
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
1398
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1399
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1400
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1401
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1402
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1403
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1404
+
1405
+
1406
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.6ms)
1407
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
1408
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms)
1409
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (18.4ms)
1410
+
1411
+
1412
+ Started GET "/" for 127.0.0.1 at 2014-10-09 10:31:51 -0400
1413
+ Processing by Defcon::SessionsController#new as HTML
1414
+ Completed 500 Internal Server Error in 3ms
1415
+
1416
+ NoMethodError (undefined method `logged_in?' for #<Defcon::SessionsController:0x00000003a24a88>):
1417
+ /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/controllers/defcon/sessions_controller.rb:54:in `logged_out_check'
1418
+ activesupport (4.1.6) lib/active_support/callbacks.rb:424:in `block in make_lambda'
1419
+ activesupport (4.1.6) lib/active_support/callbacks.rb:143:in `call'
1420
+ activesupport (4.1.6) lib/active_support/callbacks.rb:143:in `block in halting_and_conditional'
1421
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `call'
1422
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
1423
+ activesupport (4.1.6) lib/active_support/callbacks.rb:229:in `call'
1424
+ activesupport (4.1.6) lib/active_support/callbacks.rb:229:in `block in halting'
1425
+ activesupport (4.1.6) lib/active_support/callbacks.rb:166:in `call'
1426
+ activesupport (4.1.6) lib/active_support/callbacks.rb:166:in `block in halting'
1427
+ activesupport (4.1.6) lib/active_support/callbacks.rb:86:in `call'
1428
+ activesupport (4.1.6) lib/active_support/callbacks.rb:86:in `run_callbacks'
1429
+ actionpack (4.1.6) lib/abstract_controller/callbacks.rb:19:in `process_action'
1430
+ actionpack (4.1.6) lib/action_controller/metal/rescue.rb:29:in `process_action'
1431
+ actionpack (4.1.6) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1432
+ activesupport (4.1.6) lib/active_support/notifications.rb:159:in `block in instrument'
1433
+ activesupport (4.1.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1434
+ activesupport (4.1.6) lib/active_support/notifications.rb:159:in `instrument'
1435
+ actionpack (4.1.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1436
+ actionpack (4.1.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
1437
+ activerecord (4.1.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1438
+ actionpack (4.1.6) lib/abstract_controller/base.rb:136:in `process'
1439
+ actionview (4.1.6) lib/action_view/rendering.rb:30:in `process'
1440
+ actionpack (4.1.6) lib/action_controller/metal.rb:196:in `dispatch'
1441
+ actionpack (4.1.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1442
+ actionpack (4.1.6) lib/action_controller/metal.rb:232:in `block in action'
1443
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:82:in `call'
1444
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
1445
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:50:in `call'
1446
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:73:in `block in call'
1447
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `each'
1448
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `call'
1449
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:678:in `call'
1450
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
1451
+ railties (4.1.6) lib/rails/railtie.rb:194:in `public_send'
1452
+ railties (4.1.6) lib/rails/railtie.rb:194:in `method_missing'
1453
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:73:in `block in call'
1454
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `each'
1455
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `call'
1456
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:678:in `call'
1457
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1458
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1459
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1460
+ actionpack (4.1.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1461
+ actionpack (4.1.6) lib/action_dispatch/middleware/flash.rb:254:in `call'
1462
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1463
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1464
+ actionpack (4.1.6) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1465
+ activerecord (4.1.6) lib/active_record/query_cache.rb:36:in `call'
1466
+ activerecord (4.1.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
1467
+ activerecord (4.1.6) lib/active_record/migration.rb:380:in `call'
1468
+ actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1469
+ activesupport (4.1.6) lib/active_support/callbacks.rb:82:in `run_callbacks'
1470
+ actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1471
+ actionpack (4.1.6) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1472
+ actionpack (4.1.6) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1473
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1474
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1475
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
1476
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
1477
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1478
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
1479
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
1480
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
1481
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1482
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1483
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1484
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1485
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1486
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
1487
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1488
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
1489
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
1490
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1491
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1492
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1493
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1494
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1495
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1496
+
1497
+
1498
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.2ms)
1499
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
1500
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms)
1501
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (18.2ms)
1502
+
1503
+
1504
+ Started GET "/" for 127.0.0.1 at 2014-10-09 10:32:58 -0400
1505
+ Processing by Defcon::SessionsController#new as HTML
1506
+ Completed 500 Internal Server Error in 1ms
1507
+
1508
+ NoMethodError (undefined method `logged_in?' for Defcon:Module):
1509
+ /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/controllers/defcon/sessions_controller.rb:54:in `logged_out_check'
1510
+ activesupport (4.1.6) lib/active_support/callbacks.rb:424:in `block in make_lambda'
1511
+ activesupport (4.1.6) lib/active_support/callbacks.rb:143:in `call'
1512
+ activesupport (4.1.6) lib/active_support/callbacks.rb:143:in `block in halting_and_conditional'
1513
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `call'
1514
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
1515
+ activesupport (4.1.6) lib/active_support/callbacks.rb:229:in `call'
1516
+ activesupport (4.1.6) lib/active_support/callbacks.rb:229:in `block in halting'
1517
+ activesupport (4.1.6) lib/active_support/callbacks.rb:166:in `call'
1518
+ activesupport (4.1.6) lib/active_support/callbacks.rb:166:in `block in halting'
1519
+ activesupport (4.1.6) lib/active_support/callbacks.rb:86:in `call'
1520
+ activesupport (4.1.6) lib/active_support/callbacks.rb:86:in `run_callbacks'
1521
+ actionpack (4.1.6) lib/abstract_controller/callbacks.rb:19:in `process_action'
1522
+ actionpack (4.1.6) lib/action_controller/metal/rescue.rb:29:in `process_action'
1523
+ actionpack (4.1.6) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1524
+ activesupport (4.1.6) lib/active_support/notifications.rb:159:in `block in instrument'
1525
+ activesupport (4.1.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1526
+ activesupport (4.1.6) lib/active_support/notifications.rb:159:in `instrument'
1527
+ actionpack (4.1.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1528
+ actionpack (4.1.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
1529
+ activerecord (4.1.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1530
+ actionpack (4.1.6) lib/abstract_controller/base.rb:136:in `process'
1531
+ actionview (4.1.6) lib/action_view/rendering.rb:30:in `process'
1532
+ actionpack (4.1.6) lib/action_controller/metal.rb:196:in `dispatch'
1533
+ actionpack (4.1.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1534
+ actionpack (4.1.6) lib/action_controller/metal.rb:232:in `block in action'
1535
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:82:in `call'
1536
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
1537
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:50:in `call'
1538
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:73:in `block in call'
1539
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `each'
1540
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `call'
1541
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:678:in `call'
1542
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
1543
+ railties (4.1.6) lib/rails/railtie.rb:194:in `public_send'
1544
+ railties (4.1.6) lib/rails/railtie.rb:194:in `method_missing'
1545
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:73:in `block in call'
1546
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `each'
1547
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `call'
1548
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:678:in `call'
1549
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1550
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1551
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1552
+ actionpack (4.1.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1553
+ actionpack (4.1.6) lib/action_dispatch/middleware/flash.rb:254:in `call'
1554
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1555
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1556
+ actionpack (4.1.6) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1557
+ activerecord (4.1.6) lib/active_record/query_cache.rb:36:in `call'
1558
+ activerecord (4.1.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
1559
+ activerecord (4.1.6) lib/active_record/migration.rb:380:in `call'
1560
+ actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1561
+ activesupport (4.1.6) lib/active_support/callbacks.rb:82:in `run_callbacks'
1562
+ actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1563
+ actionpack (4.1.6) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1564
+ actionpack (4.1.6) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1565
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1566
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1567
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
1568
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
1569
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1570
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
1571
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
1572
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
1573
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1574
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1575
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1576
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1577
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1578
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
1579
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1580
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
1581
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
1582
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1583
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1584
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1585
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1586
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1587
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1588
+
1589
+
1590
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.8ms)
1591
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
1592
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms)
1593
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.1ms)
1594
+
1595
+
1596
+ Started GET "/" for 127.0.0.1 at 2014-10-09 10:33:24 -0400
1597
+ Processing by Defcon::SessionsController#new as HTML
1598
+ Completed 500 Internal Server Error in 0ms
1599
+
1600
+ NameError (undefined local variable or method `session' for Defcon:Module):
1601
+ /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/lib/defcon.rb:22:in `logged_in?'
1602
+ /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/controllers/defcon/sessions_controller.rb:54:in `logged_out_check'
1603
+ activesupport (4.1.6) lib/active_support/callbacks.rb:424:in `block in make_lambda'
1604
+ activesupport (4.1.6) lib/active_support/callbacks.rb:143:in `call'
1605
+ activesupport (4.1.6) lib/active_support/callbacks.rb:143:in `block in halting_and_conditional'
1606
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `call'
1607
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
1608
+ activesupport (4.1.6) lib/active_support/callbacks.rb:229:in `call'
1609
+ activesupport (4.1.6) lib/active_support/callbacks.rb:229:in `block in halting'
1610
+ activesupport (4.1.6) lib/active_support/callbacks.rb:166:in `call'
1611
+ activesupport (4.1.6) lib/active_support/callbacks.rb:166:in `block in halting'
1612
+ activesupport (4.1.6) lib/active_support/callbacks.rb:86:in `call'
1613
+ activesupport (4.1.6) lib/active_support/callbacks.rb:86:in `run_callbacks'
1614
+ actionpack (4.1.6) lib/abstract_controller/callbacks.rb:19:in `process_action'
1615
+ actionpack (4.1.6) lib/action_controller/metal/rescue.rb:29:in `process_action'
1616
+ actionpack (4.1.6) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1617
+ activesupport (4.1.6) lib/active_support/notifications.rb:159:in `block in instrument'
1618
+ activesupport (4.1.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1619
+ activesupport (4.1.6) lib/active_support/notifications.rb:159:in `instrument'
1620
+ actionpack (4.1.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1621
+ actionpack (4.1.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
1622
+ activerecord (4.1.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1623
+ actionpack (4.1.6) lib/abstract_controller/base.rb:136:in `process'
1624
+ actionview (4.1.6) lib/action_view/rendering.rb:30:in `process'
1625
+ actionpack (4.1.6) lib/action_controller/metal.rb:196:in `dispatch'
1626
+ actionpack (4.1.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1627
+ actionpack (4.1.6) lib/action_controller/metal.rb:232:in `block in action'
1628
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:82:in `call'
1629
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
1630
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:50:in `call'
1631
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:73:in `block in call'
1632
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `each'
1633
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `call'
1634
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:678:in `call'
1635
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
1636
+ railties (4.1.6) lib/rails/railtie.rb:194:in `public_send'
1637
+ railties (4.1.6) lib/rails/railtie.rb:194:in `method_missing'
1638
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:73:in `block in call'
1639
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `each'
1640
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `call'
1641
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:678:in `call'
1642
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1643
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1644
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1645
+ actionpack (4.1.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1646
+ actionpack (4.1.6) lib/action_dispatch/middleware/flash.rb:254:in `call'
1647
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1648
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1649
+ actionpack (4.1.6) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1650
+ activerecord (4.1.6) lib/active_record/query_cache.rb:36:in `call'
1651
+ activerecord (4.1.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
1652
+ activerecord (4.1.6) lib/active_record/migration.rb:380:in `call'
1653
+ actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1654
+ activesupport (4.1.6) lib/active_support/callbacks.rb:82:in `run_callbacks'
1655
+ actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1656
+ actionpack (4.1.6) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1657
+ actionpack (4.1.6) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1658
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1659
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1660
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
1661
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
1662
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1663
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
1664
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
1665
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
1666
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1667
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1668
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1669
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1670
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1671
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
1672
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1673
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
1674
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
1675
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1676
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1677
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1678
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1679
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1680
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1681
+
1682
+
1683
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
1684
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
1685
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (11.6ms)
1686
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (25.3ms)
1687
+
1688
+
1689
+ Started GET "/" for 127.0.0.1 at 2014-10-09 10:42:46 -0400
1690
+ Processing by Defcon::SessionsController#new as HTML
1691
+ Completed 500 Internal Server Error in 0ms
1692
+
1693
+ NoMethodError (undefined method `session' for Defcon:Module):
1694
+ /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/lib/defcon.rb:23:in `logged_in?'
1695
+ /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/controllers/defcon/sessions_controller.rb:54:in `logged_out_check'
1696
+ activesupport (4.1.6) lib/active_support/callbacks.rb:424:in `block in make_lambda'
1697
+ activesupport (4.1.6) lib/active_support/callbacks.rb:143:in `call'
1698
+ activesupport (4.1.6) lib/active_support/callbacks.rb:143:in `block in halting_and_conditional'
1699
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `call'
1700
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
1701
+ activesupport (4.1.6) lib/active_support/callbacks.rb:229:in `call'
1702
+ activesupport (4.1.6) lib/active_support/callbacks.rb:229:in `block in halting'
1703
+ activesupport (4.1.6) lib/active_support/callbacks.rb:166:in `call'
1704
+ activesupport (4.1.6) lib/active_support/callbacks.rb:166:in `block in halting'
1705
+ activesupport (4.1.6) lib/active_support/callbacks.rb:86:in `call'
1706
+ activesupport (4.1.6) lib/active_support/callbacks.rb:86:in `run_callbacks'
1707
+ actionpack (4.1.6) lib/abstract_controller/callbacks.rb:19:in `process_action'
1708
+ actionpack (4.1.6) lib/action_controller/metal/rescue.rb:29:in `process_action'
1709
+ actionpack (4.1.6) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1710
+ activesupport (4.1.6) lib/active_support/notifications.rb:159:in `block in instrument'
1711
+ activesupport (4.1.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1712
+ activesupport (4.1.6) lib/active_support/notifications.rb:159:in `instrument'
1713
+ actionpack (4.1.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1714
+ actionpack (4.1.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
1715
+ activerecord (4.1.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1716
+ actionpack (4.1.6) lib/abstract_controller/base.rb:136:in `process'
1717
+ actionview (4.1.6) lib/action_view/rendering.rb:30:in `process'
1718
+ actionpack (4.1.6) lib/action_controller/metal.rb:196:in `dispatch'
1719
+ actionpack (4.1.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1720
+ actionpack (4.1.6) lib/action_controller/metal.rb:232:in `block in action'
1721
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:82:in `call'
1722
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
1723
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:50:in `call'
1724
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:73:in `block in call'
1725
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `each'
1726
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `call'
1727
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:678:in `call'
1728
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
1729
+ railties (4.1.6) lib/rails/railtie.rb:194:in `public_send'
1730
+ railties (4.1.6) lib/rails/railtie.rb:194:in `method_missing'
1731
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:73:in `block in call'
1732
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `each'
1733
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `call'
1734
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:678:in `call'
1735
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1736
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1737
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1738
+ actionpack (4.1.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1739
+ actionpack (4.1.6) lib/action_dispatch/middleware/flash.rb:254:in `call'
1740
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1741
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1742
+ actionpack (4.1.6) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1743
+ activerecord (4.1.6) lib/active_record/query_cache.rb:36:in `call'
1744
+ activerecord (4.1.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
1745
+ activerecord (4.1.6) lib/active_record/migration.rb:380:in `call'
1746
+ actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1747
+ activesupport (4.1.6) lib/active_support/callbacks.rb:82:in `run_callbacks'
1748
+ actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1749
+ actionpack (4.1.6) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1750
+ actionpack (4.1.6) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1751
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1752
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1753
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
1754
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
1755
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1756
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
1757
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
1758
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
1759
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1760
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1761
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1762
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1763
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1764
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
1765
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1766
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
1767
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
1768
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1769
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1770
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1771
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1772
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1773
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1774
+
1775
+
1776
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
1777
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
1778
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (11.2ms)
1779
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (25.4ms)
1780
+
1781
+
1782
+ Started GET "/" for 127.0.0.1 at 2014-10-09 10:43:15 -0400
1783
+ Processing by Defcon::SessionsController#new as HTML
1784
+ Completed 500 Internal Server Error in 0ms
1785
+
1786
+ NoMethodError (undefined method `session' for Defcon:Module):
1787
+ /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/lib/defcon.rb:23:in `logged_in?'
1788
+ /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/controllers/defcon/sessions_controller.rb:54:in `logged_out_check'
1789
+ activesupport (4.1.6) lib/active_support/callbacks.rb:424:in `block in make_lambda'
1790
+ activesupport (4.1.6) lib/active_support/callbacks.rb:143:in `call'
1791
+ activesupport (4.1.6) lib/active_support/callbacks.rb:143:in `block in halting_and_conditional'
1792
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `call'
1793
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
1794
+ activesupport (4.1.6) lib/active_support/callbacks.rb:229:in `call'
1795
+ activesupport (4.1.6) lib/active_support/callbacks.rb:229:in `block in halting'
1796
+ activesupport (4.1.6) lib/active_support/callbacks.rb:166:in `call'
1797
+ activesupport (4.1.6) lib/active_support/callbacks.rb:166:in `block in halting'
1798
+ activesupport (4.1.6) lib/active_support/callbacks.rb:86:in `call'
1799
+ activesupport (4.1.6) lib/active_support/callbacks.rb:86:in `run_callbacks'
1800
+ actionpack (4.1.6) lib/abstract_controller/callbacks.rb:19:in `process_action'
1801
+ actionpack (4.1.6) lib/action_controller/metal/rescue.rb:29:in `process_action'
1802
+ actionpack (4.1.6) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1803
+ activesupport (4.1.6) lib/active_support/notifications.rb:159:in `block in instrument'
1804
+ activesupport (4.1.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1805
+ activesupport (4.1.6) lib/active_support/notifications.rb:159:in `instrument'
1806
+ actionpack (4.1.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1807
+ actionpack (4.1.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
1808
+ activerecord (4.1.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1809
+ actionpack (4.1.6) lib/abstract_controller/base.rb:136:in `process'
1810
+ actionview (4.1.6) lib/action_view/rendering.rb:30:in `process'
1811
+ actionpack (4.1.6) lib/action_controller/metal.rb:196:in `dispatch'
1812
+ actionpack (4.1.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1813
+ actionpack (4.1.6) lib/action_controller/metal.rb:232:in `block in action'
1814
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:82:in `call'
1815
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
1816
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:50:in `call'
1817
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:73:in `block in call'
1818
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `each'
1819
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `call'
1820
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:678:in `call'
1821
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
1822
+ railties (4.1.6) lib/rails/railtie.rb:194:in `public_send'
1823
+ railties (4.1.6) lib/rails/railtie.rb:194:in `method_missing'
1824
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:73:in `block in call'
1825
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `each'
1826
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `call'
1827
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:678:in `call'
1828
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1829
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1830
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1831
+ actionpack (4.1.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1832
+ actionpack (4.1.6) lib/action_dispatch/middleware/flash.rb:254:in `call'
1833
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1834
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1835
+ actionpack (4.1.6) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1836
+ activerecord (4.1.6) lib/active_record/query_cache.rb:36:in `call'
1837
+ activerecord (4.1.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
1838
+ activerecord (4.1.6) lib/active_record/migration.rb:380:in `call'
1839
+ actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1840
+ activesupport (4.1.6) lib/active_support/callbacks.rb:82:in `run_callbacks'
1841
+ actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1842
+ actionpack (4.1.6) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1843
+ actionpack (4.1.6) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1844
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1845
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1846
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
1847
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
1848
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1849
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
1850
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
1851
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
1852
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1853
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1854
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1855
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1856
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1857
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
1858
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1859
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
1860
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
1861
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1862
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1863
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1864
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1865
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1866
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1867
+
1868
+
1869
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms)
1870
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
1871
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms)
1872
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (19.7ms)
1873
+
1874
+
1875
+ Started GET "/" for 127.0.0.1 at 2014-10-09 10:43:17 -0400
1876
+ Processing by Defcon::SessionsController#new as HTML
1877
+ Completed 500 Internal Server Error in 0ms
1878
+
1879
+ NoMethodError (undefined method `session' for Defcon:Module):
1880
+ /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/lib/defcon.rb:23:in `logged_in?'
1881
+ /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/controllers/defcon/sessions_controller.rb:54:in `logged_out_check'
1882
+ activesupport (4.1.6) lib/active_support/callbacks.rb:424:in `block in make_lambda'
1883
+ activesupport (4.1.6) lib/active_support/callbacks.rb:143:in `call'
1884
+ activesupport (4.1.6) lib/active_support/callbacks.rb:143:in `block in halting_and_conditional'
1885
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `call'
1886
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
1887
+ activesupport (4.1.6) lib/active_support/callbacks.rb:229:in `call'
1888
+ activesupport (4.1.6) lib/active_support/callbacks.rb:229:in `block in halting'
1889
+ activesupport (4.1.6) lib/active_support/callbacks.rb:166:in `call'
1890
+ activesupport (4.1.6) lib/active_support/callbacks.rb:166:in `block in halting'
1891
+ activesupport (4.1.6) lib/active_support/callbacks.rb:86:in `call'
1892
+ activesupport (4.1.6) lib/active_support/callbacks.rb:86:in `run_callbacks'
1893
+ actionpack (4.1.6) lib/abstract_controller/callbacks.rb:19:in `process_action'
1894
+ actionpack (4.1.6) lib/action_controller/metal/rescue.rb:29:in `process_action'
1895
+ actionpack (4.1.6) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1896
+ activesupport (4.1.6) lib/active_support/notifications.rb:159:in `block in instrument'
1897
+ activesupport (4.1.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1898
+ activesupport (4.1.6) lib/active_support/notifications.rb:159:in `instrument'
1899
+ actionpack (4.1.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1900
+ actionpack (4.1.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
1901
+ activerecord (4.1.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1902
+ actionpack (4.1.6) lib/abstract_controller/base.rb:136:in `process'
1903
+ actionview (4.1.6) lib/action_view/rendering.rb:30:in `process'
1904
+ actionpack (4.1.6) lib/action_controller/metal.rb:196:in `dispatch'
1905
+ actionpack (4.1.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1906
+ actionpack (4.1.6) lib/action_controller/metal.rb:232:in `block in action'
1907
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:82:in `call'
1908
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
1909
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:50:in `call'
1910
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:73:in `block in call'
1911
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `each'
1912
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `call'
1913
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:678:in `call'
1914
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
1915
+ railties (4.1.6) lib/rails/railtie.rb:194:in `public_send'
1916
+ railties (4.1.6) lib/rails/railtie.rb:194:in `method_missing'
1917
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:73:in `block in call'
1918
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `each'
1919
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `call'
1920
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:678:in `call'
1921
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1922
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1923
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1924
+ actionpack (4.1.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1925
+ actionpack (4.1.6) lib/action_dispatch/middleware/flash.rb:254:in `call'
1926
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1927
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1928
+ actionpack (4.1.6) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1929
+ activerecord (4.1.6) lib/active_record/query_cache.rb:36:in `call'
1930
+ activerecord (4.1.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
1931
+ activerecord (4.1.6) lib/active_record/migration.rb:380:in `call'
1932
+ actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1933
+ activesupport (4.1.6) lib/active_support/callbacks.rb:82:in `run_callbacks'
1934
+ actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1935
+ actionpack (4.1.6) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1936
+ actionpack (4.1.6) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1937
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1938
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1939
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
1940
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
1941
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1942
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
1943
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
1944
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
1945
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1946
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1947
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1948
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1949
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1950
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
1951
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1952
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
1953
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
1954
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1955
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1956
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1957
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1958
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1959
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1960
+
1961
+
1962
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms)
1963
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
1964
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms)
1965
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (17.1ms)
1966
+
1967
+
1968
+ Started GET "/" for 127.0.0.1 at 2014-10-09 10:46:00 -0400
1969
+ Processing by Defcon::SessionsController#new as HTML
1970
+ Rendered /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/views/defcon/sessions/new.html.erb within layouts/defcon/application (2.1ms)
1971
+ Completed 200 OK in 44ms (Views: 33.7ms | ActiveRecord: 0.0ms)
1972
+
1973
+
1974
+ Started GET "/assets/defcon/sessions.css?body=1" for 127.0.0.1 at 2014-10-09 10:46:00 -0400
1975
+
1976
+
1977
+ Started GET "/assets/defcon/application.css?body=1" for 127.0.0.1 at 2014-10-09 10:46:00 -0400
1978
+
1979
+
1980
+ Started GET "/assets/defcon/sessions.js?body=1" for 127.0.0.1 at 2014-10-09 10:46:00 -0400
1981
+
1982
+
1983
+ Started GET "/assets/defcon/application.js?body=1" for 127.0.0.1 at 2014-10-09 10:46:00 -0400
1984
+
1985
+
1986
+ Started POST "/sessions/create" for 127.0.0.1 at 2014-10-09 10:46:01 -0400
1987
+ Processing by Defcon::SessionsController#create as HTML
1988
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"fde2AwPsDB19M37VUFClr3+ZeJ2geiUBmb9tw7v3QOY=", "username"=>"", "password"=>"[FILTERED]", "commit"=>"Login"}
1989
+ Defcon::AdminUser Load (0.2ms) SELECT "defcon_admin_users".* FROM "defcon_admin_users" WHERE "defcon_admin_users"."username" = '' LIMIT 1
1990
+ Redirected to http://localhost:3000/admin/login
1991
+ Completed 302 Found in 75ms (ActiveRecord: 1.6ms)
1992
+
1993
+
1994
+ Started GET "/admin/login" for 127.0.0.1 at 2014-10-09 10:46:02 -0400
1995
+ Processing by Defcon::SessionsController#new as HTML
1996
+ Rendered /home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/defcon/app/views/defcon/sessions/new.html.erb within layouts/defcon/application (0.7ms)
1997
+ Completed 200 OK in 19ms (Views: 18.0ms | ActiveRecord: 0.0ms)
1998
+
1999
+
2000
+ Started GET "/assets/defcon/sessions.css?body=1" for 127.0.0.1 at 2014-10-09 10:46:02 -0400
2001
+
2002
+
2003
+ Started GET "/assets/defcon/application.css?body=1" for 127.0.0.1 at 2014-10-09 10:46:02 -0400
2004
+
2005
+
2006
+ Started GET "/assets/defcon/sessions.js?body=1" for 127.0.0.1 at 2014-10-09 10:46:02 -0400
2007
+
2008
+
2009
+ Started GET "/assets/defcon/application.js?body=1" for 127.0.0.1 at 2014-10-09 10:46:02 -0400