Skip to content

Instantly share code, notes, and snippets.

@kitop
Created April 11, 2014 22:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kitop/10507343 to your computer and use it in GitHub Desktop.
Save kitop/10507343 to your computer and use it in GitHub Desktop.
nested routes
Cuba.define do
on "posts" do
run Posts
end
end
class Posts < Cuba
define do
on ":id" do |id|
post = Post[id]
# some methods
on "comments" do
run Comments
end
end
end
end
class Comments < Cuba
define do
# some routes
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment