Class: ActiveSupport::Callbacks::CallbackChain

Inherits:
Array show all
Defined in:
lib/active_support/callbacks.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Array

#as_json, #to_json

Methods included from ActiveSupport::CoreExtensions::Array::Wrapper

#wrap

Methods included from ActiveSupport::CoreExtensions::Array::RandomAccess

#rand, #random_element, #sample

Methods included from ActiveSupport::CoreExtensions::Array::Grouping

#in_groups, #in_groups_of, #split

Methods included from ActiveSupport::CoreExtensions::Array::ExtractOptions

#extract_options!

Methods included from ActiveSupport::CoreExtensions::Array::Conversions

included, #to_formatted_s, #to_param, #to_query, #to_sentence, #to_xml

Methods included from ActiveSupport::CoreExtensions::Array::Access

#fifth, #forty_two, #fourth, #from, #second, #third, #to

Class Method Details

.build(kind, *methods, &block) ⇒ Object



80
81
82
83
84
# File 'lib/active_support/callbacks.rb', line 80

def self.build(kind, *methods, &block)
  methods, options = extract_options(*methods, &block)
  methods.map! { |method| Callback.new(kind, method, options) }
  new(methods)
end

Instance Method Details

#delete(callback) ⇒ Object



113
114
115
# File 'lib/active_support/callbacks.rb', line 113

def delete(callback)
  super(callback.is_a?(Callback) ? callback : find(callback))
end

#find(callback, &block) ⇒ Object



109
110
111
# File 'lib/active_support/callbacks.rb', line 109

def find(callback, &block)
  select { |c| c == callback && (!block_given? || yield(c)) }.first
end

#replace_or_append!(chain) ⇒ Object

TODO: Decompose into more Array like behavior



100
101
102
103
104
105
106
107
# File 'lib/active_support/callbacks.rb', line 100

def replace_or_append!(chain)
  if index = index(chain)
    self[index] = chain
  else
    self << chain
  end
  self
end

#run(object, options = {}, &terminator) ⇒ Object



86
87
88
89
90
91
92
93
94
95
96
97
# File 'lib/active_support/callbacks.rb', line 86

def run(object, options = {}, &terminator)
  enumerator = options[:enumerator] || :each

  unless block_given?
    send(enumerator) { |callback| callback.call(object) }
  else
    send(enumerator) do |callback|
      result = callback.call(object)
      break result if terminator.call(result, object)
    end
  end
end