Sha256: 124268d9615a8654ae0627ea5c208b5aad57ac00a517c6a2b16d7984eb21c084
Contents?: true
Size: 507 Bytes
Versions: 1
Compression:
Stored size: 507 Bytes
Contents
require "words_djungst/version" module WordsDjungst def self.reversify(str) str.split("").reverse.join("") end def self.casify(str) to_case = [:upcase, :downcase] arr = str.split("") arr.each_with_index do |letter, i| this_case = to_case[rand(2)] arr[i] = letter.send(this_case) end arr.join("") end def self.spacify(str, spaces = 0) new_string = str spaces.times do new_string = new_string.split("").join(" ") end new_string end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
words_djungst-0.1.1 | lib/words_djungst.rb |