Skip to content

Instantly share code, notes, and snippets.

@inkel
Created June 28, 2013 21:05
Show Gist options
  • Save inkel/5888108 to your computer and use it in GitHub Desktop.
Save inkel/5888108 to your computer and use it in GitHub Desktop.
require_relative "./users"
require_relative "./posts"
Cuba.use JSONAllTheThings
Cuba.define do
on "users" do
run Users
end
on "posts" do
run Posts
end
end
class Posts < Cuba
define do
# HERE BY DRAGONS
end
end
class Users < Cuba
define do
# MAGIC
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment