Guest User

Untitled

a guest
Jul 16th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. suscribers = { :user_1 => '1', :user_2 => '0', :user_3 => '1' }
  2.  
  3. if suscribers
  4. suscribers.each do |user, checked|
  5. puts user.to_s if checked == '1'
  6. end
  7. end
Add Comment
Please, Sign In to add comment