class CbrToEpub::Output::Content::Metadata

Constants

DEFAULT_AUTHOR
DEFAULT_TITLE

Attributes

author[R]
title[R]
uuid[R]

Public Class Methods

new(author, title) click to toggle source
# File lib/cbr_to_epub/output/content/metadata.rb, line 12
def initialize(author, title)
  @author = author || DEFAULT_AUTHOR
  @title = title || DEFAULT_TITLE
  @uuid = SecureRandom.uuid
end