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
[:name,:quantity,:price,:percent_deposit,:amount_deposit,:weight ].select{ |attr| original.send(attr) != current.send(attr) } | |
比较original 和 current两个对象 attr的变化 |
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 Test | |
def hello | |
p "hello world" | |
end | |
end |