class Array

@private

def none?(&block)

Supports +none?+ on early patch levels of Ruby 1.8.6
def none?(&block)
  !any?(&block)
end