lib/simctl/runtime.rb in simctl-1.1.0 vs lib/simctl/runtime.rb in simctl-1.2.0

- old
+ new

@@ -1,7 +1,11 @@ require 'simctl/object' module SimCtl class Runtime < Object attr_reader :availability, :buildversion, :identifier, :name, :version + + def ==(other) + other.identifier == identifier + end end end