class SimCtl::DeviceType
Attributes
identifier[R]
name[R]
Public Instance Methods
==(other)
click to toggle source
# File lib/simctl/device_type.rb, line 7 def ==(other) return false if other.nil? return false unless other.is_a? DeviceType other.identifier == identifier end