1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activemodel/test/models/contact.rb
Neeraj Singh 883f27aa9a test cases for record.to_xml [#458 state:resolved]
Signed-off-by: José Valim <jose.valim@gmail.com>
2010-04-30 13:19:30 +02:00

21 lines
337 B
Ruby

class Contact
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 persisted?
id
end
end