Guest User

Untitled

a guest
Jul 19th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. >> Deployment.find(:all, :order=>:deployed_at).select {|d| !d.deployed_by.blank?}.count
  2. => 7
  3. >> Deployment.find(:all, :order=>:deployed_at).select {|d| d.deployed_by.blank?}.count
  4. => 88
  5. >> Deployment.find(:all, :order=>:deployed_at).select {|d| !d.deployed_by.blank?}.first.deployed_at
  6. => Fri, 29 Oct 2010 12:44:40 UTC +00:00
  7. >> Deployment.find(:all, :order=>:deployed_at).select {|d| !d.deployed_by.blank?}.last.deployed_at
  8. => Fri, 29 Oct 2010 13:09:12 UTC +00:00
  9. >>
Add Comment
Please, Sign In to add comment