route66 0.0.2 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +1,3 @@
1
1
  module Route66
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
@@ -1,6 +1,14 @@
1
1
  require File.expand_path('../boot', __FILE__)
2
2
 
3
- require 'rails/all'
3
+ #require 'rails/all'
4
+ #require "active_model/railtie"
5
+ #require "active_record/railtie"
6
+ require "action_controller/railtie"
7
+ #require "action_view/railtie"
8
+ require "action_mailer/railtie"
9
+ require "active_resource/railtie"
10
+ require "rails/test_unit/railtie"
11
+ require "sprockets/railtie"
4
12
 
5
13
  Bundler.require
6
14
  require "route66"
@@ -47,7 +55,7 @@ module Dummy
47
55
  # This will create an empty whitelist of attributes available for mass-assignment for all models
48
56
  # in your app. As such, your models will need to explicitly whitelist or blacklist accessible
49
57
  # parameters by using an attr_accessible or attr_protected declaration.
50
- config.active_record.whitelist_attributes = true
58
+ #config.active_record.whitelist_attributes = true
51
59
 
52
60
  # Enable the asset pipeline
53
61
  config.assets.enabled = true
@@ -23,11 +23,11 @@ Dummy::Application.configure do
23
23
  config.action_dispatch.best_standards_support = :builtin
24
24
 
25
25
  # Raise exception on mass assignment protection for Active Record models
26
- config.active_record.mass_assignment_sanitizer = :strict
26
+ #config.active_record.mass_assignment_sanitizer = :strict
27
27
 
28
28
  # Log the query plan for queries taking more than this (works
29
29
  # with SQLite, MySQL, and PostgreSQL)
30
- config.active_record.auto_explain_threshold_in_seconds = 0.5
30
+ #config.active_record.auto_explain_threshold_in_seconds = 0.5
31
31
 
32
32
  # Do not compress assets
33
33
  config.assets.compress = false
@@ -1,405 +1,88 @@
1
1
 
2
2
 
3
- Started GET "/" for 75.17.232.157 at 2012-11-03 01:33:31 +0000
4
- Connecting to database specified by database.yml
5
-
6
- ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
7
- activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:404:in `retrieve_connection'
8
- activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:170:in `retrieve_connection'
9
- activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:144:in `connection'
10
- activerecord (3.2.8) lib/active_record/query_cache.rb:67:in `rescue in call'
11
- activerecord (3.2.8) lib/active_record/query_cache.rb:61:in `call'
12
- activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
13
- actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
14
- activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__3721565116151558823__call__3840965541952761643__callbacks'
15
- activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
16
- activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
17
- activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
18
- actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
19
- actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
20
- actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
21
- actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
22
- actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
23
- railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
24
- railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
25
- actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
26
- rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
27
- rack (1.4.1) lib/rack/runtime.rb:17:in `call'
28
- activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
29
- rack (1.4.1) lib/rack/lock.rb:15:in `call'
30
- actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
31
- railties (3.2.8) lib/rails/engine.rb:479:in `call'
32
- railties (3.2.8) lib/rails/application.rb:223:in `call'
33
- rack (1.4.1) lib/rack/content_length.rb:14:in `call'
34
- railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
35
- rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
36
- /usr/local/rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
37
- /usr/local/rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
38
- /usr/local/rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
3
+ Started GET "/route66" for 75.17.232.157 at 2012-11-10 01:24:01 +0000
4
+ Processing by Route66Controller#index as HTML
5
+ Rendered /home/ubuntu/projects/route66/app/views/route66/index.html.erb within layouts/application (6.7ms)
6
+ Completed 500 Internal Server Error in 149ms
7
+
8
+ ActionView::Template::Error (couldn't find file 'jquery'
9
+ (in /home/ubuntu/projects/route66/test/dummy/app/assets/javascripts/application.js:13)):
10
+ 3: <head>
11
+ 4: <title>Dummy</title>
12
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
13
+ 6: <%= javascript_include_tag "application" %>
14
+ 7: <%= csrf_meta_tags %>
15
+ 8: </head>
16
+ 9: <body>
17
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___875685525129585076_23967220'
39
18
 
40
19
 
41
20
  Rendered /usr/local/rvm/gems/ruby-1.9.3-p125@route66/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
42
- Rendered /usr/local/rvm/gems/ruby-1.9.3-p125@route66/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.8ms)
43
- Rendered /usr/local/rvm/gems/ruby-1.9.3-p125@route66/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.1ms)
44
-
45
-
46
- Started GET "/" for 75.17.232.157 at 2012-11-03 01:33:39 +0000
47
-
48
- ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
49
- activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:404:in `retrieve_connection'
50
- activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:170:in `retrieve_connection'
51
- activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:144:in `connection'
52
- activerecord (3.2.8) lib/active_record/query_cache.rb:67:in `rescue in call'
53
- activerecord (3.2.8) lib/active_record/query_cache.rb:61:in `call'
54
- activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
55
- actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
56
- activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__3721565116151558823__call__3840965541952761643__callbacks'
57
- activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
58
- activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
59
- activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
60
- actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
61
- actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
62
- actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
63
- actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
64
- actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
65
- railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
66
- railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
67
- actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
68
- rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
69
- rack (1.4.1) lib/rack/runtime.rb:17:in `call'
70
- activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
71
- rack (1.4.1) lib/rack/lock.rb:15:in `call'
72
- actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
73
- railties (3.2.8) lib/rails/engine.rb:479:in `call'
74
- railties (3.2.8) lib/rails/application.rb:223:in `call'
75
- rack (1.4.1) lib/rack/content_length.rb:14:in `call'
76
- railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
77
- rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
78
- /usr/local/rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
79
- /usr/local/rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
80
- /usr/local/rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
81
-
82
-
83
- Rendered /usr/local/rvm/gems/ruby-1.9.3-p125@route66/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
84
- Rendered /usr/local/rvm/gems/ruby-1.9.3-p125@route66/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
85
- Rendered /usr/local/rvm/gems/ruby-1.9.3-p125@route66/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.6ms)
86
-
87
-
88
- Started GET "/routes" for 75.17.232.157 at 2012-11-03 01:33:44 +0000
89
-
90
- ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
91
- activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:404:in `retrieve_connection'
92
- activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:170:in `retrieve_connection'
93
- activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:144:in `connection'
94
- activerecord (3.2.8) lib/active_record/query_cache.rb:67:in `rescue in call'
95
- activerecord (3.2.8) lib/active_record/query_cache.rb:61:in `call'
96
- activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
97
- actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
98
- activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__3721565116151558823__call__3840965541952761643__callbacks'
99
- activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
100
- activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
101
- activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
102
- actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
103
- actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
104
- actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
105
- actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
106
- actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
107
- railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
108
- railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
109
- actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
110
- rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
111
- rack (1.4.1) lib/rack/runtime.rb:17:in `call'
112
- activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
113
- rack (1.4.1) lib/rack/lock.rb:15:in `call'
114
- actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
115
- railties (3.2.8) lib/rails/engine.rb:479:in `call'
116
- railties (3.2.8) lib/rails/application.rb:223:in `call'
117
- rack (1.4.1) lib/rack/content_length.rb:14:in `call'
118
- railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
119
- rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
120
- /usr/local/rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
121
- /usr/local/rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
122
- /usr/local/rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
123
-
124
-
125
- Rendered /usr/local/rvm/gems/ruby-1.9.3-p125@route66/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
126
21
  Rendered /usr/local/rvm/gems/ruby-1.9.3-p125@route66/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
127
- Rendered /usr/local/rvm/gems/ruby-1.9.3-p125@route66/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.1ms)
128
-
129
-
130
- Started GET "/" for 75.17.232.157 at 2012-11-03 01:35:46 +0000
131
- Connecting to database specified by database.yml
132
-
133
- ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
134
- activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:404:in `retrieve_connection'
135
- activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:170:in `retrieve_connection'
136
- activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_specification.rb:144:in `connection'
137
- activerecord (3.2.8) lib/active_record/query_cache.rb:67:in `rescue in call'
138
- activerecord (3.2.8) lib/active_record/query_cache.rb:61:in `call'
139
- activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
140
- actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
141
- activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__1005539221496493551__call__3424746824352460237__callbacks'
142
- activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
143
- activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
144
- activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
145
- actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
146
- actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
147
- actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
148
- actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
149
- actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
150
- railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
151
- railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
152
- actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
153
- rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
154
- rack (1.4.1) lib/rack/runtime.rb:17:in `call'
155
- activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
156
- rack (1.4.1) lib/rack/lock.rb:15:in `call'
157
- actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
158
- railties (3.2.8) lib/rails/engine.rb:479:in `call'
159
- railties (3.2.8) lib/rails/application.rb:223:in `call'
160
- rack (1.4.1) lib/rack/content_length.rb:14:in `call'
161
- railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
162
- rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
163
- /usr/local/rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
164
- /usr/local/rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
165
- /usr/local/rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
166
-
167
-
168
- Rendered /usr/local/rvm/gems/ruby-1.9.3-p125@route66/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
169
- Rendered /usr/local/rvm/gems/ruby-1.9.3-p125@route66/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.0ms)
170
- Rendered /usr/local/rvm/gems/ruby-1.9.3-p125@route66/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.5ms)
171
-
172
-
173
- Started GET "/" for 75.17.232.157 at 2012-11-03 01:39:36 +0000
174
- Connecting to database specified by database.yml
175
-
176
- ActionController::RoutingError (No route matches [GET] "/"):
177
- actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
178
- actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
179
- railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
180
- railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
181
- actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
182
- rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
183
- rack (1.4.1) lib/rack/runtime.rb:17:in `call'
184
- activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
185
- rack (1.4.1) lib/rack/lock.rb:15:in `call'
186
- actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
187
- railties (3.2.8) lib/rails/engine.rb:479:in `call'
188
- railties (3.2.8) lib/rails/application.rb:223:in `call'
189
- rack (1.4.1) lib/rack/content_length.rb:14:in `call'
190
- railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
191
- rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
192
- /usr/local/rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
193
- /usr/local/rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
194
- /usr/local/rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
195
-
196
-
197
- Rendered /usr/local/rvm/gems/ruby-1.9.3-p125@route66/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (3.0ms)
198
-
199
-
200
- Started GET "/routes" for 75.17.232.157 at 2012-11-03 01:39:41 +0000
201
-
202
- LoadError (Expected /home/ubuntu/projects/route66/app/controllers/routes_controller.rb to define RoutesController):
203
- activesupport (3.2.8) lib/active_support/dependencies.rb:503:in `load_missing_constant'
204
- activesupport (3.2.8) lib/active_support/dependencies.rb:192:in `block in const_missing'
205
- activesupport (3.2.8) lib/active_support/dependencies.rb:190:in `each'
206
- activesupport (3.2.8) lib/active_support/dependencies.rb:190:in `const_missing'
207
- activesupport (3.2.8) lib/active_support/inflector/methods.rb:230:in `block in constantize'
208
- activesupport (3.2.8) lib/active_support/inflector/methods.rb:229:in `each'
209
- activesupport (3.2.8) lib/active_support/inflector/methods.rb:229:in `constantize'
210
- activesupport (3.2.8) lib/active_support/dependencies.rb:554:in `get'
211
- actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
212
- actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:54:in `controller'
213
- actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:32:in `call'
214
- journey (1.0.4) lib/journey/router.rb:68:in `block in call'
215
- journey (1.0.4) lib/journey/router.rb:56:in `each'
216
- journey (1.0.4) lib/journey/router.rb:56:in `call'
217
- actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:600:in `call'
218
- actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
219
- rack (1.4.1) lib/rack/etag.rb:23:in `call'
220
- rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
221
- actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
222
- actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
223
- actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
224
- rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
225
- rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
226
- actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
227
- activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
228
- activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
229
- actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
230
- activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__3729744924981610426__call__4296180410514091618__callbacks'
231
- activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
232
- activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
233
- activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
234
- actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
235
- actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
236
- actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
237
- actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
238
- actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
239
- railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
240
- railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
241
- actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
242
- rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
243
- rack (1.4.1) lib/rack/runtime.rb:17:in `call'
244
- activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
245
- rack (1.4.1) lib/rack/lock.rb:15:in `call'
246
- actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
247
- railties (3.2.8) lib/rails/engine.rb:479:in `call'
248
- railties (3.2.8) lib/rails/application.rb:223:in `call'
249
- rack (1.4.1) lib/rack/content_length.rb:14:in `call'
250
- railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
251
- rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
252
- /usr/local/rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
253
- /usr/local/rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
254
- /usr/local/rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
22
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p125@route66/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.9ms)
255
23
 
256
24
 
257
- Rendered /usr/local/rvm/gems/ruby-1.9.3-p125@route66/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
258
- Rendered /usr/local/rvm/gems/ruby-1.9.3-p125@route66/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (94.8ms)
259
- Rendered /usr/local/rvm/gems/ruby-1.9.3-p125@route66/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (102.4ms)
260
-
261
-
262
- Started GET "/routes" for 75.17.232.157 at 2012-11-03 01:40:28 +0000
263
- Connecting to database specified by database.yml
264
- Processing by RoutesController#index as HTML
265
- Rendered /home/ubuntu/projects/route66/app/views/routes/index.html.erb within layouts/application (102.4ms)
266
- Completed 500 Internal Server Error in 117ms
267
-
268
- ActionView::Template::Error (undefined method `[]' for nil:NilClass):
269
- 1: This is an erb file
270
- 2: Route 1: <% @route[1] %>
271
- /home/ubuntu/projects/route66/app/views/routes/index.html.erb:2:in `__home_ubuntu_projects_route___app_views_routes_index_html_erb___1181125215297746853_18052800'
272
- actionpack (3.2.8) lib/action_view/template.rb:145:in `block in render'
273
- activesupport (3.2.8) lib/active_support/notifications.rb:125:in `instrument'
274
- actionpack (3.2.8) lib/action_view/template.rb:143:in `render'
275
- actionpack (3.2.8) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
276
- actionpack (3.2.8) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
277
- activesupport (3.2.8) lib/active_support/notifications.rb:123:in `block in instrument'
278
- activesupport (3.2.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
279
- activesupport (3.2.8) lib/active_support/notifications.rb:123:in `instrument'
280
- actionpack (3.2.8) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
281
- actionpack (3.2.8) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
282
- actionpack (3.2.8) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
283
- actionpack (3.2.8) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
284
- actionpack (3.2.8) lib/action_view/renderer/template_renderer.rb:18:in `render'
285
- actionpack (3.2.8) lib/action_view/renderer/renderer.rb:36:in `render_template'
286
- actionpack (3.2.8) lib/action_view/renderer/renderer.rb:17:in `render'
287
- actionpack (3.2.8) lib/abstract_controller/rendering.rb:110:in `_render_template'
288
- actionpack (3.2.8) lib/action_controller/metal/streaming.rb:225:in `_render_template'
289
- actionpack (3.2.8) lib/abstract_controller/rendering.rb:103:in `render_to_body'
290
- actionpack (3.2.8) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
291
- actionpack (3.2.8) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
292
- actionpack (3.2.8) lib/abstract_controller/rendering.rb:88:in `render'
293
- actionpack (3.2.8) lib/action_controller/metal/rendering.rb:16:in `render'
294
- actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
295
- activesupport (3.2.8) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
296
- /usr/local/rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
297
- activesupport (3.2.8) lib/active_support/core_ext/benchmark.rb:5:in `ms'
298
- actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
299
- actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
300
- activerecord (3.2.8) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
301
- actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:39:in `render'
302
- actionpack (3.2.8) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
303
- actionpack (3.2.8) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
304
- actionpack (3.2.8) lib/abstract_controller/base.rb:167:in `process_action'
305
- actionpack (3.2.8) lib/action_controller/metal/rendering.rb:10:in `process_action'
306
- actionpack (3.2.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
307
- activesupport (3.2.8) lib/active_support/callbacks.rb:414:in `_run__2322141882835392599__process_action__3853978697962037170__callbacks'
308
- activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
309
- activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
310
- activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
311
- actionpack (3.2.8) lib/abstract_controller/callbacks.rb:17:in `process_action'
312
- actionpack (3.2.8) lib/action_controller/metal/rescue.rb:29:in `process_action'
313
- actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
314
- activesupport (3.2.8) lib/active_support/notifications.rb:123:in `block in instrument'
315
- activesupport (3.2.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
316
- activesupport (3.2.8) lib/active_support/notifications.rb:123:in `instrument'
317
- actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
318
- actionpack (3.2.8) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
319
- activerecord (3.2.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
320
- actionpack (3.2.8) lib/abstract_controller/base.rb:121:in `process'
321
- actionpack (3.2.8) lib/abstract_controller/rendering.rb:45:in `process'
322
- actionpack (3.2.8) lib/action_controller/metal.rb:203:in `dispatch'
323
- actionpack (3.2.8) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
324
- actionpack (3.2.8) lib/action_controller/metal.rb:246:in `block in action'
325
- actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `call'
326
- actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
327
- actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:36:in `call'
328
- journey (1.0.4) lib/journey/router.rb:68:in `block in call'
329
- journey (1.0.4) lib/journey/router.rb:56:in `each'
330
- journey (1.0.4) lib/journey/router.rb:56:in `call'
331
- actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:600:in `call'
332
- actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
333
- rack (1.4.1) lib/rack/etag.rb:23:in `call'
334
- rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
335
- actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
336
- actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
337
- actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
338
- rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
339
- rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
340
- actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
341
- activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
342
- activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
343
- actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
344
- activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__748438053396333301__call__1636368224643088579__callbacks'
345
- activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
346
- activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
347
- activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
348
- actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
349
- actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
350
- actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
351
- actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
352
- actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
353
- railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
354
- railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
355
- actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
356
- rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
357
- rack (1.4.1) lib/rack/runtime.rb:17:in `call'
358
- activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
359
- rack (1.4.1) lib/rack/lock.rb:15:in `call'
360
- actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
361
- railties (3.2.8) lib/rails/engine.rb:479:in `call'
362
- railties (3.2.8) lib/rails/application.rb:223:in `call'
363
- rack (1.4.1) lib/rack/content_length.rb:14:in `call'
364
- railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
365
- rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
366
- /usr/local/rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
367
- /usr/local/rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
368
- /usr/local/rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
25
+ Started GET "/route66" for 75.17.232.157 at 2012-11-10 01:27:11 +0000
26
+ Processing by Route66Controller#index as HTML
27
+ Rendered /home/ubuntu/projects/route66/app/views/route66/index.html.erb within layouts/application (3.9ms)
28
+ Completed 200 OK in 113ms (Views: 112.5ms)
369
29
 
370
30
 
371
- Rendered /usr/local/rvm/gems/ruby-1.9.3-p125@route66/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
372
- Rendered /usr/local/rvm/gems/ruby-1.9.3-p125@route66/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
373
- Rendered /usr/local/rvm/gems/ruby-1.9.3-p125@route66/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.0ms)
31
+ Started GET "/assets/application.css?body=1" for 75.17.232.157 at 2012-11-10 01:27:12 +0000
32
+ Served asset /application.css - 304 Not Modified (3ms)
33
+
34
+
35
+ Started GET "/assets/jquery.js?body=1" for 75.17.232.157 at 2012-11-10 01:27:12 +0000
36
+ Served asset /jquery.js - 304 Not Modified (4ms)
37
+
38
+
39
+ Started GET "/assets/application.js?body=1" for 75.17.232.157 at 2012-11-10 01:27:12 +0000
40
+ Served asset /application.js - 304 Not Modified (6ms)
41
+
42
+
43
+ Started GET "/assets/jquery_ujs.js?body=1" for 75.17.232.157 at 2012-11-10 01:27:12 +0000
44
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
45
+
46
+
47
+ Started GET "/route66" for 75.17.232.157 at 2012-11-10 01:27:30 +0000
48
+ Processing by Route66Controller#index as HTML
49
+ Rendered /home/ubuntu/projects/route66/app/views/route66/index.html.erb within layouts/application (1.3ms)
50
+ Completed 200 OK in 98ms (Views: 97.3ms)
51
+
52
+
53
+ Started GET "/assets/application.css?body=1" for 75.17.232.157 at 2012-11-10 01:27:30 +0000
54
+ Served asset /application.css - 304 Not Modified (0ms)
55
+
56
+
57
+ Started GET "/assets/jquery.js?body=1" for 75.17.232.157 at 2012-11-10 01:27:30 +0000
58
+ Served asset /jquery.js - 304 Not Modified (0ms)
59
+
60
+
61
+ Started GET "/assets/jquery_ujs.js?body=1" for 75.17.232.157 at 2012-11-10 01:27:30 +0000
62
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
63
+
64
+
65
+ Started GET "/assets/application.js?body=1" for 75.17.232.157 at 2012-11-10 01:27:30 +0000
66
+ Served asset /application.js - 304 Not Modified (1ms)
374
67
 
375
68
 
376
- Started GET "/routes" for 75.17.232.157 at 2012-11-03 01:41:18 +0000
377
- Connecting to database specified by database.yml
378
- Processing by RoutesController#index as HTML
379
- Rendered /home/ubuntu/projects/route66/app/views/routes/index.html.erb within layouts/application (25.8ms)
380
- Compiled application.css (0ms) (pid 22811)
381
- Compiled jquery.js (4ms) (pid 22811)
382
- Compiled jquery_ujs.js (96ms) (pid 22811)
383
- Compiled application.js (153ms) (pid 22811)
384
- Completed 200 OK in 289ms (Views: 288.3ms | ActiveRecord: 0.0ms)
69
+ Started GET "/route66" for 75.17.232.157 at 2012-11-10 01:27:47 +0000
70
+ Processing by Route66Controller#index as HTML
71
+ Rendered /home/ubuntu/projects/route66/app/views/route66/index.html.erb within layouts/application (1.2ms)
72
+ Completed 200 OK in 19ms (Views: 18.7ms)
385
73
 
386
74
 
387
- Started GET "/assets/application.css?body=1" for 75.17.232.157 at 2012-11-03 01:41:20 +0000
388
- Served asset /application.css - 200 OK (2ms)
75
+ Started GET "/assets/application.css?body=1" for 75.17.232.157 at 2012-11-10 01:27:47 +0000
76
+ Served asset /application.css - 304 Not Modified (0ms)
389
77
 
390
78
 
391
- Started GET "/assets/jquery.js?body=1" for 75.17.232.157 at 2012-11-03 01:41:20 +0000
392
- Served asset /jquery.js - 200 OK (3ms)
79
+ Started GET "/assets/jquery.js?body=1" for 75.17.232.157 at 2012-11-10 01:27:47 +0000
80
+ Served asset /jquery.js - 304 Not Modified (0ms)
393
81
 
394
82
 
395
- Started GET "/assets/jquery_ujs.js?body=1" for 75.17.232.157 at 2012-11-03 01:41:20 +0000
396
- Served asset /jquery_ujs.js - 200 OK (2ms)
83
+ Started GET "/assets/jquery_ujs.js?body=1" for 75.17.232.157 at 2012-11-10 01:27:47 +0000
84
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
397
85
 
398
86
 
399
- Started GET "/assets/application.js?body=1" for 75.17.232.157 at 2012-11-03 01:41:20 +0000
400
- Served asset /application.js - 200 OK (4ms)
401
- Connecting to database specified by database.yml
402
- Connecting to database specified by database.yml
403
- Connecting to database specified by database.yml
404
- Connecting to database specified by database.yml
405
- Connecting to database specified by database.yml
87
+ Started GET "/assets/application.js?body=1" for 75.17.232.157 at 2012-11-10 01:27:47 +0000
88
+ Served asset /application.js - 304 Not Modified (1ms)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: route66
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,40 +9,24 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-11-06 00:00:00.000000000 Z
12
+ date: 2012-11-10 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
16
- requirement: !ruby/object:Gem::Requirement
17
- none: false
18
- requirements:
19
- - - ~>
20
- - !ruby/object:Gem::Version
21
- version: 3.2.8
22
- type: :runtime
23
- prerelease: false
24
- version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
- requirements:
27
- - - ~>
28
- - !ruby/object:Gem::Version
29
- version: 3.2.8
30
- - !ruby/object:Gem::Dependency
31
- name: sqlite3
32
16
  requirement: !ruby/object:Gem::Requirement
33
17
  none: false
34
18
  requirements:
35
19
  - - ! '>='
36
20
  - !ruby/object:Gem::Version
37
- version: '0'
38
- type: :development
21
+ version: 3.2.0
22
+ type: :runtime
39
23
  prerelease: false
40
24
  version_requirements: !ruby/object:Gem::Requirement
41
25
  none: false
42
26
  requirements:
43
27
  - - ! '>='
44
28
  - !ruby/object:Gem::Version
45
- version: '0'
29
+ version: 3.2.0
46
30
  description: Displays routes at <your-app>/route66
47
31
  email:
48
32
  - lance.hampton@gmail.com
@@ -118,7 +102,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
118
102
  version: '0'
119
103
  segments:
120
104
  - 0
121
- hash: -3980582478689202735
105
+ hash: 2994702463919116634
122
106
  required_rubygems_version: !ruby/object:Gem::Requirement
123
107
  none: false
124
108
  requirements:
@@ -127,7 +111,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
127
111
  version: '0'
128
112
  segments:
129
113
  - 0
130
- hash: -3980582478689202735
114
+ hash: 2994702463919116634
131
115
  requirements: []
132
116
  rubyforge_project:
133
117
  rubygems_version: 1.8.21