Created
January 24, 2017 05:56
-
-
Save awesome/f800d91055b8d8c375c98e98eab0a9a5 to your computer and use it in GitHub Desktop.
Add attributes to an object.
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
| def add_attrs(obj, attrs) | |
| attrs.each do |k,v| | |
| obj.send("#{k}=", v) | |
| end | |
| return obj | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment