picombo 0.3.4 → 0.3.5
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/classes/router.rb +4 -0
- data/lib/core/core.rb +1 -1
- metadata +2 -2
data/lib/classes/router.rb
CHANGED
@@ -119,6 +119,10 @@ module Picombo
|
|
119
119
|
return Picombo::Controllers::Error_404.new.run_error(@@req.path)
|
120
120
|
end
|
121
121
|
else
|
122
|
+
puts uri[:controller]+' did not include '+uri[:method]+'!!'
|
123
|
+
puts 'Heres some debugging info: controller_methods: '+controller_methods.inspect
|
124
|
+
puts 'uri: '+uri.inspect
|
125
|
+
puts 'controller: '+controller.inspect
|
122
126
|
return Picombo::Controllers::Error_404.new.run_error(@@req.path)
|
123
127
|
end
|
124
128
|
Picombo::Event.run('system.post_controller')
|
data/lib/core/core.rb
CHANGED