0.0
No commit activity in last 3 years
No release in over 3 years
Enables capsize() and capsize!() on String objects, for the same functionality as upcase() and upcase!() respectively.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies
 Project Readme

CAPSIZE

IF YOU WANT SOMETHING IN ALL CAPS THEN IT'S TIME TO CAPSIZE!

HOW TO USE CAPSIZE

$ gem install capsize-upcase

include 'rubygems'
include 'capsize-upcase'

capsize is only available for String objects.

capsize and capsize! have the same functionality as upcase and upcase!.

capsize returns your string in ALL CAPS.

capsize! will change your string in place to ALL CAPS.

a_string = "What's going on?"
another_string = "Holy crap, a talking string!"

a_string.capsize
puts a_string

sleep 3

puts a_string.capsize

sleep 1

another_string.capsize!
puts another_string

WHY?!

Once, I forgot the word for 'capitalize' and said 'capsize' instead, but it's ok now because it's a method... Alias.

I will go down with this ship.