Sha256: 53600940b007dae7f720126df976f1da74f4f19ac27a3c42f74dc54d90649fe3

Contents?: true

Size: 295 Bytes

Versions: 2

Compression:

Stored size: 295 Bytes

Contents

# frozen_string_literal: true

module Kitabu
  class Exporter
    class CSS < Base
      attr_reader :root_dir

      def export
        super

        FileUtils.cp_r(
          root_dir.join("templates/styles").to_s,
          root_dir.join("output").to_s
        )
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
kitabu-3.1.0 lib/kitabu/exporter/css.rb
kitabu-3.0.3 lib/kitabu/exporter/css.rb