module EPUBMeta

Public Class Methods

get(path) click to toggle source

Parses an epub file and returns a Book instance. @return [EPUBMeta::Models::Book] a model representation of the epub file

# File lib/epubmeta.rb, line 16
def self.get(path)
  parser = EPUBMeta::Parser.parse(path)
  EPUBMeta::Models::Book.new(parser)
end