picombo 0.3.4 → 0.3.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/lib/classes/router.rb +4 -0
  2. data/lib/core/core.rb +1 -1
  3. metadata +2 -2
@@ -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
@@ -74,7 +74,7 @@ module Picombo
74
74
  class Core
75
75
  @@cli = false
76
76
 
77
- VERSION = '0.3.4'
77
+ VERSION = '0.3.5'
78
78
 
79
79
  # Determines if the request was made on the CLI or not
80
80
  def self.cli
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 3
8
- - 4
9
- version: 0.3.4
8
+ - 5
9
+ version: 0.3.5
10
10
  platform: ruby
11
11
  authors:
12
12
  - Jeremy Bush