Sha256: 1459b85f65404725e2c152483429c8438c4a1eea724cfe024e11be1e74fc12a2
Contents?: true
Size: 548 Bytes
Versions: 1
Compression:
Stored size: 548 Bytes
Contents
require "wordify_djungst/version" require "wordify_djungst/greetings" module WordifyDjungst 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 |
---|---|
wordify_djungst-1.1.0 | lib/wordify_djungst.rb |