Skip to content

Instantly share code, notes, and snippets.

@plonk
Created August 21, 2013 12:16
Show Gist options
  • Select an option

  • Save plonk/6293740 to your computer and use it in GitHub Desktop.

Select an option

Save plonk/6293740 to your computer and use it in GitHub Desktop.
AかBかCならば
class Object
def is_either?(*ary)
ary.include? self
end
end
value = :a
if value.is_either? :a, :b, :c
puts true
else
puts false
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment