module MeadStringHelper::Greetings

Public Class Methods

greet_user(user, greeting = 'Hello') click to toggle source
# File lib/mead_string_helper/greetings.rb, line 3
def self.greet_user(user, greeting = 'Hello')
 "#{greeting} #{user}"
end