Skip to content

Instantly share code, notes, and snippets.

@arietis
Created October 18, 2012 20:25
Show Gist options
  • Save arietis/c18c66a4da4b0f8a006f to your computer and use it in GitHub Desktop.
Save arietis/c18c66a4da4b0f8a006f to your computer and use it in GitHub Desktop.
params.each_value do |value|
if value == ""
@field = params.key(value)
erb :error
end
end
@burningTyger
Copy link

if params.delete_if { |k, v| v.empty? }
  erb :error
else
  #more code
end

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment