Skip to content

Instantly share code, notes, and snippets.

@lengshuiyulangcn
Created May 11, 2015 07:47
Show Gist options
  • Save lengshuiyulangcn/1bbc40172a9339221146 to your computer and use it in GitHub Desktop.
Save lengshuiyulangcn/1bbc40172a9339221146 to your computer and use it in GitHub Desktop.
rails tips
@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