Sha256: 12a184aa4b0911b911284fc744e2ec02c2da7c3e1d2763eb1f25a1589f446746
Contents?: true
Size: 1.97 KB
Versions: 2
Compression:
Stored size: 1.97 KB
Contents
require 'active_support/concern' require 'active_model/callbacks' module Ripple # Adds lifecycle callbacks to {Ripple::Document} models, in the typical # ActiveModel fashion. module Callbacks extend ActiveSupport::Concern CALLBACK_TYPES = [:create, :update, :save, :destroy, :validation] included do extend ActiveModel::Callbacks define_model_callbacks *(CALLBACK_TYPES - [:validation]) define_callbacks :validation, :terminator => "result == false", :scope => [:kind, :name] end module ClassMethods # Defines a callback to be run before validations. def before_validation(*args, &block) options = args.last if options.is_a?(Hash) && options[:on] options[:if] = Array(options[:if]) options[:if] << "@_on_validate == :#{options[:on]}" end set_callback(:validation, :before, *args, &block) end # Defines a callback to be run after validations. def after_validation(*args, &block) options = args.extract_options! options[:prepend] = true options[:if] = Array(options[:if]) options[:if] << "!halted && value != false" options[:if] << "@_on_validate == :#{options[:on]}" if options[:on] set_callback(:validation, :after, *(args << options), &block) end end # @private module InstanceMethods # @private def really_save(*args, &block) run_save_callbacks do super end end def run_save_callbacks state = new? ? :create : :update run_callbacks(:save) do run_callbacks(state) do yield end end end # @private def destroy(*args, &block) run_callbacks(:destroy) do super end end # @private def valid?(*args, &block) @_on_validate = new? ? :create : :update run_callbacks(:validation) do super end end end end end
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
seomoz-ripple-1.0.0.pre | lib/ripple/callbacks.rb |
ripple-1.0.0.beta | lib/ripple/callbacks.rb |