class BrDanfe::CceLib::Footer

Public Class Methods

new(pdf) click to toggle source
# File lib/br_danfe/cce_lib/footer.rb, line 4
def initialize(pdf)
  @pdf = pdf
end

Public Instance Methods

render() click to toggle source
# File lib/br_danfe/cce_lib/footer.rb, line 8
def render
  @pdf.box(height: 110) do
    @pdf.text I18n.t('cce.legal_note')
  end
end