Skip to content

Commit

Permalink
Rendered frontmatter/backmatter; added PrinceXML support on Windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
h3rald committed Feb 15, 2010
1 parent c937484 commit 45b05bd
Show file tree
Hide file tree
Showing 8 changed files with 184 additions and 110 deletions.
1 change: 1 addition & 0 deletions Rakefile
Expand Up @@ -32,6 +32,7 @@ begin
s.add_dependency 'treetop', '>= 0.4.3'
s.add_dependency 'rake', '>= 0.8.7'
s.add_development_dependency 'rspec'
s.add_development_dependency 'yard'
end
Jeweler::GemcutterTasks.new
rescue LoadError
Expand Down
27 changes: 15 additions & 12 deletions glyph.gemspec
@@ -1,6 +1,6 @@
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
# Instead, edit Jeweler::Tasks in rakefile, and run the gemspec command
# -*- encoding: utf-8 -*-

Gem::Specification.new do |s|
Expand All @@ -9,7 +9,7 @@ Gem::Specification.new do |s|

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Fabio Cevasco"]
s.date = %q{2010-02-14}
s.date = %q{2010-02-15}
s.default_executable = %q{glyph}
s.description = %q{Glyph is a framework for structured document authoring.}
s.email = %q{h3rald@h3rald.com}
Expand Down Expand Up @@ -80,19 +80,19 @@ Gem::Specification.new do |s|
s.rubygems_version = %q{1.3.5}
s.summary = %q{Glyph -- A Ruby-powered Document Authoring Framework}
s.test_files = [
"spec/macros/filters_spec.rb",
"spec/macros/macros_spec.rb",
"spec/lib/interpreter_spec.rb",
"spec/lib/commands_spec.rb",
"spec/lib/node_spec.rb",
"spec/lib/macro_spec.rb",
"spec/lib/commands_spec.rb",
"spec/lib/config_spec.rb",
"spec/lib/glyph_spec.rb",
"spec/lib/document_spec.rb",
"spec/tasks/load_spec.rb",
"spec/lib/glyph_spec.rb",
"spec/lib/interpreter_spec.rb",
"spec/lib/macro_spec.rb",
"spec/lib/node_spec.rb",
"spec/macros/filters_spec.rb",
"spec/macros/macros_spec.rb",
"spec/spec_helper.rb",
"spec/tasks/generate_spec.rb",
"spec/tasks/project_spec.rb",
"spec/spec_helper.rb"
"spec/tasks/load_spec.rb",
"spec/tasks/project_spec.rb"
]

if s.respond_to? :specification_version then
Expand All @@ -105,19 +105,22 @@ Gem::Specification.new do |s|
s.add_runtime_dependency(%q<treetop>, [">= 0.4.3"])
s.add_runtime_dependency(%q<rake>, [">= 0.8.7"])
s.add_development_dependency(%q<rspec>, [">= 0"])
s.add_development_dependency(%q<yard>, [">= 0"])
else
s.add_dependency(%q<gli>, [">= 0.3.1"])
s.add_dependency(%q<extlib>, [">= 0.9.12"])
s.add_dependency(%q<treetop>, [">= 0.4.3"])
s.add_dependency(%q<rake>, [">= 0.8.7"])
s.add_dependency(%q<rspec>, [">= 0"])
s.add_dependency(%q<yard>, [">= 0"])
end
else
s.add_dependency(%q<gli>, [">= 0.3.1"])
s.add_dependency(%q<extlib>, [">= 0.9.12"])
s.add_dependency(%q<treetop>, [">= 0.4.3"])
s.add_dependency(%q<rake>, [">= 0.8.7"])
s.add_dependency(%q<rspec>, [">= 0"])
s.add_dependency(%q<yard>, [">= 0"])
end
end

4 changes: 3 additions & 1 deletion handbook/document.glyph
@@ -1,12 +1,14 @@
document[
head[
style[default.css]
style[css3.css]]
style[css3.css]
]
body[
titlepage[
title[]
author[]
pubdate[]
]
frontmatter[
toc[]
introduction[
Expand Down

0 comments on commit 45b05bd

Please sign in to comment.