picombo 0.3.4 → 0.3.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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