module EPUB::Inspector::PublicationModel
Constants
- TEMPLATE
Public Class Methods
included(mod)
click to toggle source
# File lib/epub/inspector.rb, line 30 def included(mod) mod.__send__ :include, Inspector end
Public Instance Methods
inspect()
click to toggle source
# File lib/epub/inspector.rb, line 35 def inspect TEMPLATE % { :class => self.class, :package => package.inspect_simply, :object_id => inspect_object_id, :attributes => inspect_instance_variables(exclude: [:@package]) } end