Created
June 28, 2013 21:05
-
-
Save inkel/5888108 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Posts < Cuba | |
| define do | |
| # HERE BY DRAGONS | |
| end | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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