Class: Prawn::Repeater

Inherits:
Object
  • Object
show all
Defined in:
lib/prawn/repeater.rb

Overview

:nodoc:

Class Attribute Summary collapse

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(document, page_filter, dynamic = false, &block) ⇒ Repeater

Returns a new instance of Repeater.



92
93
94
95
96
97
98
99
100
101
102
# File 'lib/prawn/repeater.rb', line 92

def initialize(document, page_filter, dynamic = false, &block)
  @document    = document
  @page_filter = page_filter
  @dynamic = dynamic
  @stamp_name  = "prawn_repeater(#{Repeater.count})"
  @document.create_stamp(@stamp_name, &block) unless dynamic
  @block = block if dynamic
  @graphic_state = document.state.page.graphic_state.dup

  Repeater.count += 1
end

Class Attribute Details

.countObject



85
86
87
# File 'lib/prawn/repeater.rb', line 85

def count
  @count ||= 0
end

Instance Attribute Details

#nameObject (readonly)

Returns the value of attribute name.



90
91
92
# File 'lib/prawn/repeater.rb', line 90

def name
  @name
end

Instance Method Details

#match?(page_number) ⇒ Boolean

Returns:

  • (Boolean)


104
105
106
# File 'lib/prawn/repeater.rb', line 104

def match?(page_number)
  @document.page_match?(@page_filter, page_number)
end

#run(page_number) ⇒ Object



108
109
110
111
112
113
114
115
116
117
# File 'lib/prawn/repeater.rb', line 108

def run(page_number)
  if !@dynamic
    @document.stamp(@stamp_name) if match?(page_number)
  elsif @block && match?(page_number)
    @document.save_graphics_state(@graphic_state) do
      @document.send(:freeze_stamp_graphics)
      @block.call
    end
  end
end