compat/hardware: cleanup style.

This commit is contained in:
Mike McQuaid 2016-07-16 22:15:42 +01:00
parent e107c86aec
commit b950966bdd

View File

@ -1,32 +1,42 @@
module Hardware
class << self
# We won't change the name because of backward compatibility.
# So disable rubocop here.
def is_32_bit? # rubocop:disable Style/PredicateName
def is_32_bit?
odeprecated "Hardware.is_32_bit?", "Hardware::CPU.is_32_bit?"
!CPU.is_64_bit?
end
# We won't change the name because of backward compatibility.
# So disable rubocop here.
def is_64_bit? # rubocop:disable Style/PredicateName
def is_64_bit?
odeprecated "Hardware.is_64_bit?", "Hardware::CPU.is_64_bit?"
CPU.is_64_bit?
end
def bits
odeprecated "Hardware.bits", "Hardware::CPU.bits"
Hardware::CPU.bits
end
def cpu_type
odeprecated "Hardware.cpu_type", "Hardware::CPU.type"
Hardware::CPU.type
end
def cpu_family
odeprecated "Hardware.cpu_family", "Hardware::CPU.family"
Hardware::CPU.family
end
def intel_family
odeprecated "Hardware.intel_family", "Hardware::CPU.family"
Hardware::CPU.family
end
def ppc_family
odeprecated "Hardware.ppc_family", "Hardware::CPU.family"
Hardware::CPU.family
end
alias_method :intel_family, :cpu_family
alias_method :ppc_family, :cpu_family
def processor_count
odeprecated "Hardware.processor_count", "Hardware::CPU.cores"
Hardware::CPU.cores
end
end