module KA_CHING
Public Class Methods
say(string)
click to toggle source
# File lib/KA_CHING.rb, line 6 def self.say(string) new = string.gsub("s", "$").gsub("S","$") puts new end
this(string)
click to toggle source
# File lib/KA_CHING.rb, line 2 def self.this(string) string.gsub!("s", "$").gsub!("S","$") end