Sha256: 306a9b9ea3dee78d440630a6e30eb278968556e3d9e35c20f7a9f70d2ec74e5c
Contents?: true
Size: 299 Bytes
Versions: 7
Compression:
Stored size: 299 Bytes
Contents
require 'facebooker/model' module Facebooker ## # A simple representation of a photo album. class FriendList include Model attr_accessor :flid, :name # We need this to be an integer, so do the conversion def flid=(f) @flid= ( f.nil? ? nil : f.to_i) end end end
Version data entries
7 entries across 7 versions & 3 rubygems