Module: Preflight::Profile

Included in:
Preflight::Profiles::PDFA1A, Preflight::Profiles::PDFX1A
Defined in:
lib/preflight/profile.rb

Overview

base functionality for all profiles.

Defined Under Namespace

Modules: ClassMethods, InstanceMethods

Class Method Summary collapse

Class Method Details

.included(base) ⇒ Object

:nodoc:



9
10
11
12
13
14
# File 'lib/preflight/profile.rb', line 9

def self.included(base) # :nodoc:
  base.class_eval do
    extend  Preflight::Profile::ClassMethods
    include InstanceMethods
  end
end