module GlobalID::Identification

Public Instance Methods

to_gid()
Alias for: to_global_id
to_global_id() click to toggle source
# File lib/global_id/identification.rb, line 7
def to_global_id
  @global_id ||= GlobalID.create(self)
end
Also aliased as: to_gid
to_sgid(options = {})
Alias for: to_signed_global_id
to_signed_global_id(options = {}) click to toggle source
# File lib/global_id/identification.rb, line 12
def to_signed_global_id(options = {})
  @signed_global_id ||= SignedGlobalID.create(self, options)
end
Also aliased as: to_sgid