Class: MergeExpo

Inherits:
Struct
  • Object
show all
Defined in:
lib/presenters/merge_expo.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#blockObject

Returns the value of attribute block

Returns:

  • (Object)

    the current value of block



1
2
3
# File 'lib/presenters/merge_expo.rb', line 1

def block
  @block
end

#presenterObject

Returns the value of attribute presenter

Returns:

  • (Object)

    the current value of presenter



1
2
3
# File 'lib/presenters/merge_expo.rb', line 1

def presenter
  @presenter
end

#sub_expoObject

Returns the value of attribute sub_expo

Returns:

  • (Object)

    the current value of sub_expo



1
2
3
# File 'lib/presenters/merge_expo.rb', line 1

def sub_expo
  @sub_expo
end

Instance Method Details

#go(object, context, index = nil) ⇒ Object



2
3
4
5
6
7
8
9
10
# File 'lib/presenters/merge_expo.rb', line 2

def go(object, context, index=nil)
  associated = self.presenter.to_proc.call(object)
  sub = Expo2.new(self.sub_expo, &self.block)
  if associated
    sub.expo(associated, context, index)
  else
    {}
  end
end

#inspectObject



11
12
13
# File 'lib/presenters/merge_expo.rb', line 11

def inspect
  "<Expo2::MergeExpo>"
end