Sha256: 296da35e7a8c4fa398acc20385f478665f6a95d6a7a03efcbc5e0c7ede58fc79

Contents?: true

Size: 323 Bytes

Versions: 2

Compression:

Stored size: 323 Bytes

Contents

module Verku
  module Parser
    class Mobi < Base
      def parse
        puts "-- Exporting MOBI"
        spawn_command ["kindlegen", epub_file.to_s,]
        true
      rescue Exception
        p $!, $@
        false
      end
      def epub_file
        root_dir.join("builds/#{name}.epub")
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
verku-0.8.1.0 lib/verku/parser/mobi.rb
verku-0.8.0.p lib/verku/parser/mobi.rb