app-routes 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. data/lib/app-routes.rb +0 -2
  2. metadata +1 -1
data/lib/app-routes.rb CHANGED
@@ -19,13 +19,11 @@ class AppRoutes
19
19
  result = nil
20
20
 
21
21
  @route.each do |key, block|
22
- p 'key : ' + key.inspect
23
22
  match = request.match(key)
24
23
 
25
24
  if match then
26
25
 
27
26
  args = match.captures
28
- p args
29
27
  @params[:captures] = *args
30
28
 
31
29
  if @route[key][:s] then
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: app-routes
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors: []
7
7