Skip to content

Instantly share code, notes, and snippets.

@mayra-cabrera
Last active August 29, 2015 14:28
Show Gist options
  • Save mayra-cabrera/502377625ff8d18fd69c to your computer and use it in GitHub Desktop.
Save mayra-cabrera/502377625ff8d18fd69c to your computer and use it in GitHub Desktop.
class Report
...
def generate
@data = extract_data
case
when @data.are_numbers?
make_a_numeric_operation
when @data.are_strings?
check_grammar
when @data.is_something_else?
do_something_else
end
present_results
end
...
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment