Skip to content

Instantly share code, notes, and snippets.

@mayra-cabrera
Created December 15, 2015 21:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mayra-cabrera/1cbd7fa3beb729ff3df2 to your computer and use it in GitHub Desktop.
Save mayra-cabrera/1cbd7fa3beb729ff3df2 to your computer and use it in GitHub Desktop.
class NumberStrategy
def run
make_a_numeric_operation
end
end
class StringStrategy
def run
check_grammar
end
end
class SomethingElseStrategy
def run
do_something_else
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment