Sha256: 2f565a48394e70469f620f59ba72eaaf07d28f9c145864ec34c4ebc95578b1fa

Contents?: true

Size: 1.53 KB

Versions: 4

Compression:

Stored size: 1.53 KB

Contents

require File.dirname(__FILE__) + '/simple_property'

module CouchPotato
  module Persistence
    module Properties
      def self.included(base)
        base.extend ClassMethods
        base.class_eval do
          def self.properties
            @properties ||= {}
            @properties[self.name] ||= []
          end
        end
      end
      
      module ClassMethods
        # returns all the property names of a model class that have been defined using the #property method
        #
        # example:
        #  class Book
        #    property :title
        #    property :year
        #  end
        #  Book.property_names # => [:title, :year]
        def property_names
          properties.map(&:name)
        end

        def json_create(json) #:nodoc:
          return if json.nil?
          instance = super
          instance.send(:assign_attribute_copies_for_dirty_tracking)
          instance
        end

        # Declare a proprty on a model class. properties are not typed by default. You can use any of the basic types by JSON (String, Integer, Fixnum, Array, Hash). If you want a property to be of a custom class you have to define it using the :class option.
        #
        # example:
        #  class Book
        #    property :title
        #    property :year
        #    property :publisher, :class => Publisher
        #  end
        def property(name, options = {})
          clazz = options.delete(:class)
          properties << (clazz || SimpleProperty).new(self, name, options)
        end

      end
    end
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
langalex-couch_potato-0.2.11 lib/couch_potato/persistence/properties.rb
langalex-couch_potato-0.2.12 lib/couch_potato/persistence/properties.rb
langalex-couch_potato-0.2.9 lib/couch_potato/persistence/properties.rb
couch_potato-0.2.12 lib/couch_potato/persistence/properties.rb