Class: ActiveRecord::DynamicFinderMatch

Inherits:
Object
  • Object
show all
Defined in:
lib/active_record/dynamic_finder_match.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(method) ⇒ DynamicFinderMatch

Returns a new instance of DynamicFinderMatch.



8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# File 'lib/active_record/dynamic_finder_match.rb', line 8

def initialize(method)
  @finder = :first
  case method.to_s
  when /^find_(all_by|last_by|by)_([_a-zA-Z]\w*)$/
    @finder = :last if $1 == 'last_by'
    @finder = :all if $1 == 'all_by'
    names = $2
  when /^find_by_([_a-zA-Z]\w*)\!$/
    @bang = true
    names = $1
  when /^find_or_(initialize|create)_by_([_a-zA-Z]\w*)$/
    @instantiator = $1 == 'initialize' ? :new : :create
    names = $2
  else
    @finder = nil
  end
  @attribute_names = names && names.split('_and_')
end

Instance Attribute Details

#attribute_namesObject (readonly)

Returns the value of attribute attribute_names.



27
28
29
# File 'lib/active_record/dynamic_finder_match.rb', line 27

def attribute_names
  @attribute_names
end

#finderObject (readonly)

Returns the value of attribute finder.



27
28
29
# File 'lib/active_record/dynamic_finder_match.rb', line 27

def finder
  @finder
end

#instantiatorObject (readonly)

Returns the value of attribute instantiator.



27
28
29
# File 'lib/active_record/dynamic_finder_match.rb', line 27

def instantiator
  @instantiator
end

Class Method Details

.match(method) ⇒ Object



3
4
5
6
# File 'lib/active_record/dynamic_finder_match.rb', line 3

def self.match(method)
  df_match = self.new(method)
  df_match.finder ? df_match : nil
end

Instance Method Details

#bang?Boolean

Returns:

  • (Boolean)


37
38
39
# File 'lib/active_record/dynamic_finder_match.rb', line 37

def bang?
  @bang
end

#finder?Boolean

Returns:

  • (Boolean)


29
30
31
# File 'lib/active_record/dynamic_finder_match.rb', line 29

def finder?
  !@finder.nil? && @instantiator.nil?
end

#instantiator?Boolean

Returns:

  • (Boolean)


33
34
35
# File 'lib/active_record/dynamic_finder_match.rb', line 33

def instantiator?
  @finder == :first && !@instantiator.nil?
end