class SandwhichMaker

Public Instance Methods

make_me_a_sandwich(user) click to toggle source
# File lib/reneedv_gem_test.rb, line 2
def make_me_a_sandwich(user)
  return 'Peanut Butter Jelly Time!' if user=='root'
  'No'
end