Sha256: 03b200595dd428ac390ea44fd1badeea590c8dfcfa2305d2187bf89475adc0ef
Contents?: true
Size: 1.74 KB
Versions: 2
Compression:
Stored size: 1.74 KB
Contents
module Kitabu class Exporter class Base # The e-book directory. # attr_accessor :root_dir # Where the text files are stored. # attr_accessor :source def self.export(root_dir) new(root_dir).export end def initialize(root_dir) @root_dir = Pathname.new(root_dir) @source = root_dir.join("text") end # # def source_list @source_list ||= SourceList.new(root_dir) end # Return directory's basename. # def name File.basename(root_dir) end # Return the configuration file. # def config Kitabu.config(root_dir) end # Render a eRb template using +locals+ as data seed. # def render_template(file, locals = {}) context = OpenStruct.new(locals).extend(Helpers) ERB.new(File.read(file), 0, "%<>", "@_output").result context.instance_eval { binding } end def spawn_command(command) begin stdout_and_stderr, status = Open3.capture2e(*command) rescue Errno::ENOENT => e puts e.message else puts stdout_and_stderr unless status.success? status.success? end end def ui @ui ||= Thor::Base.shell.new end def handle_error(error) ui.say "#{error.class}: #{error.message}", :red ui.say error.backtrace.join("\n"), :white end def copy_directory(source, target) return unless root_dir.join(source).directory? source = root_dir.join("#{source}/.") target = root_dir.join(target) FileUtils.mkdir_p target FileUtils.cp_r source, target, remove_destination: true end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
kitabu-2.1.0 | lib/kitabu/exporter/base.rb |
kitabu-2.0.4 | lib/kitabu/exporter/base.rb |