Sha256: 9cb107fd467d85091e23085fbda7cb16471df3b858da3406028ba52db6489c06

Contents?: true

Size: 1.36 KB

Versions: 1

Compression:

Stored size: 1.36 KB

Contents

module Representable
  # Created at class compile time. Keeps configuration options for one property.
  class Definition
    attr_reader :name, :options
    alias_method :getter, :name
    
    def initialize(sym, options={})
      @name     = sym.to_s
      @options  = options
      
      @options[:default] ||= [] if array?  # FIXME: move to CollectionBinding!
    end
    
    def clone
      self.class.new(name, options.clone) # DISCUSS: make generic Definition.cloned_attribute that passes list to constructor.
    end

    def setter
      :"#{name}="
    end
    
    def typed?
      sought_type.is_a?(Class) or representer_module  # also true if only :extend is set, for people who want solely rendering.
    end
    
    def array?
      options[:collection]
    end
    
    def hash?
      options[:hash]
    end
    
    def sought_type
      options[:class]
    end
    
    def from
      (options[:from] || name).to_s
    end
    
    def default_for(value)
      return default if skipable_nil_value?(value)
      value
    end
    
    def has_default?
      options.has_key?(:default)
    end
    
    def representer_module
      options[:extend]
    end
    
    def attribute
      options[:attribute]
    end
    
    def skipable_nil_value?(value)
      value.nil? and not options[:render_nil]
    end
    
    def default
      options[:default]
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
representable-1.2.8 lib/representable/definition.rb