/owoify_rb

Turning your worst nightmare into a Ruby gem. https://codepen.io/newbeetf2/pen/yLLaNPZ

Primary LanguageRubyMIT LicenseMIT

owoify_rb

Turning your worst nightmare into a Ruby gem.

This is a Ruby port of mohan-cao's owoify-js, which will help you turn any string into nonsensical babyspeak similar to LeafySweet's infamous Chrome extension.

Just like my other Owoify ports, three levels of owoness are available:

  1. owo (default): The most vanilla one.
  2. uwu: The moderate one.
  3. uvu: Litewawwy unweadabwal.

Please refer to the original owoify-js repository for more information.

Seriously, if you have seen my other ports, you probably have already known the details.

Reason for development

Because RubyGems.org doesn't have any owoify package. And since I have already ported it to several languages, I might as well just keep porting it.

Install instructions

Add it to your Gemfile file:

gem 'owoify_rb', '~> 1.1.0'

Or run this command in your command line:

gem install owoify_rb

Usage

owoify_rb is implemented as a function inside the module Owoify. That means you don't need to create an instance of any class; instead, just call the method owoify with the module name.

require 'owoify_rb'

puts Owoify.owoify 'This is the string to owo! Kinda cute isn\'t it?'
puts Owoify.owoify('This is the string to owo! Kinda cute isn\'t it?', 'uvu')

# Output:
# This is teh stwing two owo! Kinda cute isn't it?
# fwis is teh stwing two owowowo (*^.^*) Kinda cute isn't it?

Disclaimer

As usual, I'm writing this package for both practicing and bots' needs. Performance is NOT guaranteed.

That being said, all regular expressions are declared beforehand rather than being declared inside a function. That should be able to avoid the performance cost of building regular expressions every time the method is called.

See also

  • owoify-js - The original owoify-js repository.
  • Owoify.Net - The C# port of Owoify written by me.
  • Owoify++ - The C++ header-only port of Owoify written by me.
  • owoify_rs - The Rust port of Owoify written by me.
  • owoify-py - The Python port of Owoify written by me.
  • owoify_dart - The Dart port of Owoify written by me.