class String

Constants

GOTH
GOTHER
VANILLA

Public Instance Methods

goth()
Alias for: gothify
goth!()
Alias for: gothify!
gother() click to toggle source
# File lib/gothify.rb, line 16
def gother
  tr(GOTH, GOTHER) \
    .tr(VANILLA, GOTHER)
end
gother!() click to toggle source
# File lib/gothify.rb, line 21
def gother!
  tr!(VANILLA, GOTHER)
  self.tr!(GOTH, GOTHER)
end
gothify() click to toggle source
# File lib/gothify.rb, line 6
def gothify
  tr(GOTHER, GOTH) \
    .tr(VANILLA, GOTH)
end
Also aliased as: goth
gothify!() click to toggle source
# File lib/gothify.rb, line 11
def gothify!
  tr!(VANILLA, GOTH)
  self.tr!(GOTHER, GOTH)
end
Also aliased as: goth!
normie()
Alias for: vanilla
normie!()
Alias for: vanilla!
vanilla() click to toggle source
# File lib/gothify.rb, line 26
def vanilla
  tr(GOTH, VANILLA) \
    .tr(GOTHER, VANILLA)
end
Also aliased as: normie
vanilla!() click to toggle source
# File lib/gothify.rb, line 31
def vanilla!
  tr!(GOTH, VANILLA)
  self.tr!(GOTHER, VANILLA)
end
Also aliased as: normie!