Guest User

Untitled

a guest
Jul 16th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. ## app/models/profile.rb
  2.  
  3. class Profile < ActiveRecord::Base
  4. has_many :employments
  5. has_many :educations
  6.  
  7. # t.string :languages
  8.  
  9. def speaks? language
  10. languages =~ language
  11. end
  12. end
Add Comment
Please, Sign In to add comment