Guest User

Untitled

a guest
May 24th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. def if_provided(value,display=value)
  2. if value.to_s.blank?
  3. not_available
  4. elsif block_given?
  5. yield
  6. else
  7. display
  8. end
  9. end
  10.  
  11. def not_available
  12. content_tag(:span, "Not available", :class => "not_available")
  13. end
Add Comment
Please, Sign In to add comment