Created
February 5, 2010 21:46
-
-
Save mdkent/296295 to your computer and use it in GitHub Desktop.
This file contains 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
(rdb:1) eval node.attribute[:foo][:bar] = "baz" | |
"baz" | |
(rdb:1) eval node.attribute[:foo].has_key?(:bar) | |
true | |
(rdb:1) eval node.attribute[:foo].delete(:bar) | |
"baz" | |
(rdb:1) eval node.attribute[:foo].has_key?(:bar) | |
false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment