Created
May 11, 2015 07:47
-
-
Save lengshuiyulangcn/1bbc40172a9339221146 to your computer and use it in GitHub Desktop.
rails tips
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
@Issue_checked=Issue.where(:checked=>true) | |
print @Issue_checked.size | |
#=>3 (for example) | |
@Issue_unchecked=Issue.where(:checked=>false) | |
@Issue_checked.update(:checked=>false) | |
print @Issue_checked.size | |
#=>0 | |
#!!!! what a fuck |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment