lib/backports/1.8.7/integer/ord.rb



unless Integer.method_defined? :ord
  class Integer
    def ord
      self
    end
  end
end