aboutsummaryrefslogblamecommitdiffstats
path: root/activemodel/test/models/contact.rb
blob: c25be28e1d933ff590db61c9500994bad8a54da7 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
             
                            

                                 
                                                                     
 




                      
                    

     


                                                          
 



                
                
      
     
   
class Contact
  extend ActiveModel::Naming
  include ActiveModel::Conversion

  attr_accessor :id, :name, :age, :created_at, :awesome, :preferences

  def social
    %w(twitter github)
  end

  def network
    { git: :github }
  end

  def initialize(options = {})
    options.each { |name, value| send("#{name}=", value) }
  end

  def pseudonyms
    nil
  end

  def persisted?
    id
  end
end