Sha256: 5634cdbcf6805c34fa40ca12b2b25d50b5fe555d48e24d4c15c74abc7277d51c

Contents?: true

Size: 512 Bytes

Versions: 1

Compression:

Stored size: 512 Bytes

Contents

require "wordify_djungst/version"

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.0.0 lib/wordify_djungst.rb