Project

aesthetify

0.0
Low commit activity in last 3 years
No release in over a year
aesthetify is a gem that lets you transform ASCII text into fullwidth text of 2 distinct flavors: regular Fullwidth and AESTHETIC
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

 Project Readme

aesthetify

Gem Version Build Status

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.

Usage

require "aesthetify"

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

CLI usage

Simply call either the aesthetify or fullwidth commands and enter your text after.

$ aesthetify macintosh plus
MACINTOSH PLUS

Supported Ruby versions

aesthetify supports all of the currently supported versions of Ruby. As of 2022-11-17 these are:

  • Ruby 2.6 - 2.6.10
  • Ruby 2.7 - 2.7.9
  • Ruby 3.0 - 3.0.4
  • Ruby 3.1 - 3.1.2

License

aesthetify is licensed under the MIT License.