Sha256: 0a110aded0f721f1a2af7f499371e1371f3c03419db1ad8e84d4de3bbc4682e1
Contents?: true
Size: 1.18 KB
Versions: 1
Compression:
Stored size: 1.18 KB
Contents
# -*- encoding: utf-8 -*- require 'fileutils' module Genit # Web site "compiler". class Compiler # Public: Constructor. # # working_dir - The String working directory, where live the project. def initialize working_dir @working_dir = working_dir end # Public: Compile the web site. def compile if genit_project_folder? compile_site else puts 'Not a genit project folder' end end private def genit_project_folder? File.exist?(File.join(@working_dir, '.genit')) end def compile_site compile_pages FileUtils.cp_r File.join(@working_dir, 'styles'), File.join(@working_dir, 'www') end def compile_pages Dir.foreach(File.join(@working_dir, 'pages')) do |file| next if (file == ".") or (file == "..") @filename = file compile_page end end def compile_page pc = PageCompiler.new @working_dir, @filename @page = pc.compile save_file_as_xhtml end def save_file_as_xhtml doc_writer = DocumentWriter.new @working_dir doc_writer.save_as_xhtml @page, @filename end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
genit-0.4.1 | lib/genit/compiler.rb |