lib/run_loop/xcode.rb in run_loop-2.0.10.pre1 vs lib/run_loop/xcode.rb in run_loop-2.1.0.pre1
- old
+ new
@@ -173,13 +173,15 @@
# @return [Boolean] `true` if the current Xcode version is >= 6.0
def version_gte_6?
version >= v60
end
+ # @deprecated 2.1.0
# Is the active Xcode version 5.1 or above?
#
# @return [Boolean] `true` if the current Xcode version is >= 5.1
def version_gte_51?
+ RunLoop.deprecated("2.1.0", "No replacement")
version >= v51
end
# Returns the current version of Xcode.
#