Skip to content

Instantly share code, notes, and snippets.

@brianjlandau
Created June 24, 2011 15:32
Show Gist options
  • Save brianjlandau/1045033 to your computer and use it in GitHub Desktop.
Save brianjlandau/1045033 to your computer and use it in GitHub Desktop.
module Enumerable
def reject_blanks
reject do |i|
i.blank? || (i.respond_to?(:values) && i.values.all?(&:blank?))
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment