mirror of
https://github.com/danbee/inny
synced 2025-03-04 08:59:10 +00:00
12 lines
120 B
Ruby
12 lines
120 B
Ruby
require "inny/version"
|
|
|
|
module Inny
|
|
def in?(*list)
|
|
list.include?(self)
|
|
end
|
|
end
|
|
|
|
class Object
|
|
include Inny
|
|
end
|