Sha256: 7ec6a2c4ec57cbb5b32d9f15cf6950319040da6d6d827db12037b8f4158609ca

Contents?: true

Size: 577 Bytes

Versions: 5

Compression:

Stored size: 577 Bytes

Contents

require_relative 'fillable-pdf/itext'

class Field
  # PdfName has a constant "A" and a constant "a". Unfortunately, RJB does not differentiate
  # between these constants and tries to create the same constant ("A") for both, which causes
  # an annoying warning "already initialized constant Rjb::Com_itextpdf_kernel_pdf_PdfName::A".
  # As long as RJB has not fixed this issue, this warning will remain suppressed.

  BUTTON = ITEXT::PdfName.Btn.toString
  CHOICE = ITEXT::PdfName.Ch.toString
  SIGNATURE = ITEXT::PdfName.Sig.toString
  TEXT = ITEXT::PdfName.Tx.toString
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
fillable-pdf-0.9.5.2 lib/field.rb
fillable-pdf-0.9.5.1 lib/field.rb
fillable-pdf-0.9.5 lib/field.rb
fillable-pdf-0.9.4 lib/field.rb
fillable-pdf-0.9.3 lib/field.rb