Method: Origami::Signature::BuildProperties#pre_build
- Defined in:
- lib/origami/signature.rb
#pre_build ⇒ Object
:nodoc:
513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 |
# File 'lib/origami/signature.rb', line 513 def pre_build #:nodoc: self.Filter ||= BuildData.new self.Filter.Name ||= :"Adobe.PPKLite" self.Filter.R ||= 0x20020 self.Filter.V ||= 2 self.Filter.Date ||= Time.now.to_s self.PubSec ||= BuildData.new self.PubSec.NonEFontNoWarn ||= true self.PubSec.Date ||= Time.now.to_s self.PubSec.R ||= 0x20021 self.App ||= AppData.new self.App.Name ||= :Reader self.App.REx = "11.0.8" self.App.TrustedMode ||= true self.App.OS ||= [ :Win ] self.App.R ||= 0xb0008 super end |