lib/simctl/runtime.rb in simctl-1.6.2 vs lib/simctl/runtime.rb in simctl-1.6.3
- old
+ new
@@ -9,18 +9,18 @@
@type ||= name.split("\s").first.downcase.to_sym
end
def ==(other)
return false if other.nil?
- return false unless other.kind_of? Runtime
+ return false unless other.is_a? Runtime
other.identifier == identifier
end
# Returns the latest available runtime
#
# @param name [String] type (ios, watchos, tvos)
# @return [SimCtl::Runtime] the latest available runtime
def self.latest(type)
- Naturally.sort_by(SimCtl.list_runtimes.where(name: %r|#{type}|i), :version).last
+ Naturally.sort_by(SimCtl.list_runtimes.where(name: /#{type}/i), :version).last
end
end
end