Last active
May 15, 2018 13:17
-
-
Save mleszcz/e825bbc72ca91987cce28fbac20d1bd2 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
| class Api | |
| def self.recent_orders | |
| Order.recent | |
| end | |
| end | |
| client1 = Api.recent_orders | |
| client2 = Api.recent_orders | |
| client3 = Api.recent_orders |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment