Sha256: 2765b2c04eb8d177bbc40e691ec53606ab1a5d7b28a1280e57575f270f0be307

Contents?: true

Size: 521 Bytes

Versions: 1

Compression:

Stored size: 521 Bytes

Contents

module Hyla
  class Training
    def initialize(config)
      self.config = config.clone
      self.source = File.expand_path(config['source'])
      self.dest = File.expand_path(config['destination'])
    end

    # Public: Generate HTML5 from Asciidoctor files (Training) to output.
    #
    # Returns nothing.
    def process
      self.generate
    end

    #
    # Generate
    #
    def generate
      # Here is where we will call AsciiDoctor
      Hyla.logger.info 'Transforming Asciidoc files'
    end

  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
hyla-1.0 lib/hyla/training.rb