Skip to content

Instantly share code, notes, and snippets.

@adampats
Created July 7, 2015 20:31
Show Gist options
  • Save adampats/c59e77eb3f56e6d0bce3 to your computer and use it in GitHub Desktop.
Save adampats/c59e77eb3f56e6d0bce3 to your computer and use it in GitHub Desktop.
skipping item in enumerable
@panels = @servicelist.map do |service|
next if service[:hidden] == "true"
{
title: service[:title],
panel_name: __method__.to_s,
icon: service[:logo],
query_string: {},
id: service[:id]
}
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment