Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add leading / to Radix::Tree #21

Merged
merged 1 commit into from
Jan 16, 2018
Merged

add leading / to Radix::Tree #21

merged 1 commit into from
Jan 16, 2018

Conversation

stakach
Copy link

@stakach stakach commented Jan 16, 2018

Radix doesn’t find some paths otherwise

For example - running the following code in crystal play

require "radix"

tree = Radix::Tree(Symbol).new
tree.add "GET/params/:id", :get_params
tree.add "GET/params/:id/test/:test_id", :get_test
tree.add "POST/post_test", :post_test
tree.add "PUT/put_test", :put_test
tree.add "GET/", :index

result = tree.find "PUT/put_test"

if result.found?
  puts result.payload
else
  puts "error!"  # => error!
end

however this code works

require "radix"

tree = Radix::Tree(Symbol).new
tree.add "/GET/params/:id", :get_params
tree.add "/GET/params/:id/test/:test_id", :get_test
tree.add "/POST/post_test", :post_test
tree.add "/PUT/put_test", :put_test
tree.add "/GET/", :index

result = tree.find "/PUT/put_test"

if result.found?
  puts result.payload  # => put_test
else
  puts "error!"
end

Radix doesn’t find some paths otherwise
@stakach
Copy link
Author

stakach commented Jan 16, 2018

Came across this issue writing a cool extension for this project: https://github.com/aca-labs/hyperloop/tree/master/action-controller

It's a macro DSL for generating router.cr code that looks a lot like a Rails controller however obviously way way faster :)

Copy link
Owner

@tbrand tbrand left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Awesome!! 🎉

@tbrand tbrand merged commit d8a2a2d into tbrand:master Jan 16, 2018
@tbrand
Copy link
Owner

tbrand commented Jan 16, 2018

https://github.com/tbrand/router.cr/releases/tag/v0.2.1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants