module DaveStringHelper::Greetings

Public Class Methods

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