Created
August 9, 2013 01:48
-
-
Save jessereynolds/6190523 to your computer and use it in GitHub Desktop.
writing hashes in ruby, stylee
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
@last_error = { | |
:code => response.code, | |
:body => response.body | |
} | |
# vs | |
@last_error = {:code => response.code, | |
:body => response.body} | |
# vs | |
@last_error = {:code => response.code, | |
:body => response.body} |
ghost
commented
Aug 9, 2013
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment