# -*- encoding : utf-8 -*- class Object # just cause its so damm handy def to_a self.respond_to?(:to_ary) ? self.to_ary : [self] end end