Skip to content

Instantly share code, notes, and snippets.

@seanrclayton
Created April 29, 2014 18:20
Show Gist options
  • Save seanrclayton/11408067 to your computer and use it in GitHub Desktop.
Save seanrclayton/11408067 to your computer and use it in GitHub Desktop.
require 'pp'
instances = "bags bread shit blah"
in_scope = ["cookies", "salad", "bags"]
if in_scope.find {|e| /#{e}/ =~ instances }
print "happy day"
else
print "I'm sad"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment