Guest User

Untitled

a guest
Jul 12th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. def adolescent_nouns
  2. case @transport.client.gender
  3. when 'Male'
  4. @client_type, @client_pronoun, @client_possesive_pronoun, @client_objective_pronoun, @client_reflective_pronoun = "son", "he", "his", "him", "himself"
  5. when 'Female'
  6. @client_type, @client_pronoun, @client_possesive_pronoun, @client_objective_pronoun, @client_reflective_pronoun = "daughter", "she", "her", "her", "herself"
  7. else
  8. @errors << "No client gender selected."
  9. end
  10. end
Add Comment
Please, Sign In to add comment