class Integer

Public Class Methods

new(numeric) click to toggle source
# File lib/bart_api/core_ext/integer.rb, line 2
def self.new numeric
  numeric.to_i if numeric.respond_to? :to_i
end