1
0
mirror of https://github.com/danbee/inny synced 2025-03-04 08:59:10 +00:00
inny/lib/inny.rb
2015-09-21 21:56:49 +01:00

12 lines
120 B
Ruby

require "inny/version"
module Inny
def in?(*list)
list.include?(self)
end
end
class Object
include Inny
end