class SerializationComplete
Public Class Methods
attributes()
click to toggle source
# File lib/serialization-complete.rb, line 3 def self.attributes @attributes = {} return @attributes end
serializable_attributes(&args)
click to toggle source
# File lib/serialization-complete.rb, line 8 def self.serializable_attributes(&args) args.each { |a| self.attributes.add({a => 'nil'}) } end