# File lib/rhc/rest/cartridge.rb, line 129 def <=>(other) return -1 if other.type == 'standalone' && type != 'standalone' return 1 if type == 'standalone' && other.type != 'standalone' name <=> other.name end