Sha256: 39ce321625d077b019e5ba67266ba5b6650d350565ed8511aa9dd88c501b7306

Contents?: true

Size: 527 Bytes

Versions: 1

Compression:

Stored size: 527 Bytes

Contents

require "str_methods_djungst/version"

module StrMethodsDjungst
  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
str_methods_djungst-1.0.0 lib/str_methods_djungst.rb