Sha256: 6572cee87ded74aeebd5d85d455cdf3294e07ec9b363e227796c19d871ff3c5e
Contents?: true
Size: 1.36 KB
Versions: 20
Compression:
Stored size: 1.36 KB
Contents
class NSString # This method will be removed in iOS 9 def document NSLog('Warning: SugarCube\'s String#document method has been deprecated in favor of String#document_path') self.document_path end # This method will be removed in iOS 9 def cache NSLog('Warning: SugarCube\'s String#cache method has been deprecated in favor of String#cache_path') self.cache_path end # This method will be removed in iOS 9 def app_support NSLog('Warning: SugarCube\'s String#app_support method has been deprecated in favor of String#app_support_path') self.app_support_path end # This method will be removed in iOS 9 def temporary NSLog('Warning: SugarCube\'s String#temporary method has been deprecated in favor of String#temporary_path') self.temporary_path end # This method will be removed in iOS 9 def exists? NSLog('Warning: SugarCube\'s String#exists? method has been deprecated in favor of String#file_exists?') self.file_exists? end # This method will be removed in iOS 9 def remove! NSLog('Warning: SugarCube\'s String#remove! method has been deprecated in favor of String#remove_file!') self.remove_file! end # This method will be removed in iOS 9 def resource NSLog('Warning: SugarCube\'s String#resource method has been deprecated in favor of String#resource_path') self.resource_path end end
Version data entries
20 entries across 20 versions & 1 rubygems