class Credential

Public Instance Methods

<=>(other) click to toggle source
# File lib/rattic/credential.rb, line 2
def <=> other
  sort_key <=> other.sort_key
end
sort_key() click to toggle source
# File lib/rattic/credential.rb, line 7
def sort_key
  [ title, user, group ].join('---')
end