Sha256: 0f4158070ceb1ad2166b746eb44450ddaaacd4fd36fc4bd61bb5db2be94a28d4
Contents?: true
Size: 912 Bytes
Versions: 1
Compression:
Stored size: 912 Bytes
Contents
module Drafting module BaseClassMethods ALLOWED_DRAFT_OPTION_KEYS = [ :parent ] def has_drafts(options={}) raise ArgumentError unless options.is_a?(Hash) raise ArgumentError unless options.keys.all? { |k| ALLOWED_DRAFT_OPTION_KEYS.include?(k) } class_attribute :draft_parent if options[:parent] parent_class = self.reflect_on_all_associations(:belongs_to).find { |a| a.name == options[:parent] }.try(:klass) raise ArgumentError unless parent_class unless parent_class.method_defined? :drafts parent_class.send :define_method, :drafts do |user| Draft.where(:user => user, :parent => self) end end self.draft_parent = options[:parent] end include Drafting::InstanceMethods extend Drafting::ClassMethods attr_accessor :draft_id after_create :clear_draft end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
drafting-0.1.1 | lib/drafting/base_class_methods.rb |