Class: Preflight::Rules::NoPrivateData
- Inherits:
-
Object
- Object
- Preflight::Rules::NoPrivateData
- Defined in:
- lib/preflight/rules/no_private_data.rb
Overview
Ensure the target file contains no private application data.
PDF generating apps (like Adobe Illustrator) can embed their own private data in saved PDFs. This data is generally harmless and ignored by all other PDF consumers, but it can lead to large increases in file size.
Arguments: none
Usage:
class MyPreflight
include Preflight::Profile
rule Preflight::Rules::NoPrivateData
end
Instance Attribute Summary collapse
-
#issues ⇒ Object
readonly
Returns the value of attribute issues.
Instance Method Summary collapse
Instance Attribute Details
#issues ⇒ Object (readonly)
Returns the value of attribute issues.
24 25 26 |
# File 'lib/preflight/rules/no_private_data.rb', line 24 def issues @issues end |