aesthetify

aesthetify makes it simple to take any string and transform it for the AESTHETIC. In addition, it also makes creating Fullwidth text just as simple.

aesthetify comes with regular methods and bang versions of those methods for in-place string modification.

Examples

Using String#aesthetify:

text = "vaporwave"
text.aesthetify!
puts text
#=> VAPORWAVE

Using String#fullwidth:

text = "long boy"
text.fullwidth!
puts text
#=> long boy

Using concatenation:

text = "This is the " + "sad boys ".aesthetify + "club"
puts text
#=> This is the SAD BOYS club

License

aesthetify is released under the MIT License.