glyph 0.5.2 → 0.5.3.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (47) hide show
  1. checksums.yaml +7 -0
  2. data/AUTHORS.textile +1 -0
  3. data/CHANGELOG.textile +104 -59
  4. data/Gemfile.lock +46 -0
  5. data/LICENSE.textile +1 -1
  6. data/README.textile +106 -120
  7. data/book/lib/layouts/bookindex.glyph +6 -106
  8. data/book/lib/layouts/bookpage.glyph +8 -108
  9. data/book/lib/layouts/project.glyph +0 -1
  10. data/book/text/acknowledgements.glyph +1 -0
  11. data/book/text/changelog.glyph +7 -1
  12. data/glyph.gemspec +10 -10
  13. data/lib/glyph.rb +1 -1
  14. data/spec/files/test.scss +1 -1
  15. data/spec/lib/analyzer_spec.rb +60 -61
  16. data/spec/lib/bookmark_spec.rb +21 -21
  17. data/spec/lib/commands_spec.rb +53 -54
  18. data/spec/lib/config_spec.rb +16 -16
  19. data/spec/lib/document_spec.rb +35 -35
  20. data/spec/lib/glyph_spec.rb +32 -32
  21. data/spec/lib/interpreter_spec.rb +8 -8
  22. data/spec/lib/macro_spec.rb +51 -49
  23. data/spec/lib/macro_validators_spec.rb +14 -14
  24. data/spec/lib/node_spec.rb +25 -25
  25. data/spec/lib/parser_spec.rb +26 -26
  26. data/spec/lib/reporter_spec.rb +32 -32
  27. data/spec/lib/syntax_node_spec.rb +33 -33
  28. data/spec/macros/core_spec.rb +95 -95
  29. data/spec/macros/filters_spec.rb +9 -8
  30. data/spec/macros/html5_spec.rb +17 -17
  31. data/spec/macros/macros_spec.rb +33 -33
  32. data/spec/macros/textile_spec.rb +15 -15
  33. data/spec/macros/web5_spec.rb +3 -3
  34. data/spec/macros/web_spec.rb +19 -19
  35. data/spec/macros/xml_spec.rb +15 -15
  36. data/spec/tasks/generate_spec.rb +34 -34
  37. data/spec/tasks/load_spec.rb +15 -15
  38. data/spec/tasks/project_spec.rb +15 -15
  39. data/styles/coderay.css +2 -0
  40. data/styles/coderay.css.map +7 -0
  41. data/styles/default.css +9 -7
  42. data/styles/default.css.map +7 -0
  43. data/styles/pagination.css +18 -23
  44. data/styles/pagination.css.map +7 -0
  45. data/tasks/generate.rake +12 -5
  46. metadata +47 -68
  47. data/glyph-0.5.1.gem +0 -0
@@ -14,59 +14,59 @@ describe "load" do
14
14
 
15
15
  it "should raise an error unless PROJECT is a valid project directory" do
16
16
  delete_project
17
- lambda { Glyph.run! 'load:all' }.should raise_error
17
+ expect { Glyph.run! 'load:all' }.to raise_error
18
18
  end
19
19
 
20
20
  it "[macros] should load macro definitions" do
21
- lambda { Glyph.run! 'load:macros'}.should_not raise_error
22
- Glyph::MACROS[:note].blank?.should == false
23
- Glyph::MACROS[:"#"].blank?.should == false
21
+ expect { Glyph.run! 'load:macros'}.not_to raise_error
22
+ expect(Glyph::MACROS[:note].blank?).to eq(false)
23
+ expect(Glyph::MACROS[:"#"].blank?).to eq(false)
24
24
  end
25
25
 
26
26
  it "[macros] should be able to load only core macros" do
27
27
  language 'core'
28
- output_for("$:[options.macro_set|glyph]").blank?.should == true
29
- Glyph['options.macro_set'].should == 'glyph'
28
+ expect(output_for("$:[options.macro_set|glyph]").blank?).to eq(true)
29
+ expect(Glyph['options.macro_set']).to eq('glyph')
30
30
  end
31
31
 
32
32
  it "[macros] should be able to load only filter macros" do
33
33
  language 'filters'
34
- output_for("textile[*test*]").should == "<p><strong>test</strong></p>"
34
+ expect(output_for("textile[*test*]")).to eq("<p><strong>test</strong></p>")
35
35
  end
36
36
 
37
37
  it "[config] should load configuration files and apply overrides" do
38
38
  Glyph.config_refresh
39
- lambda { Glyph.run! 'load:config'}.should_not raise_error
39
+ expect { Glyph.run! 'load:config'}.not_to raise_error
40
40
  Glyph['system.quiet'] = true
41
- Glyph::PROJECT_CONFIG.blank?.should == false
42
- Glyph::SYSTEM_CONFIG.blank?.should == false
43
- Glyph['system.structure.headers'].class.to_s.should == "Array"
41
+ expect(Glyph::PROJECT_CONFIG.blank?).to eq(false)
42
+ expect(Glyph::SYSTEM_CONFIG.blank?).to eq(false)
43
+ expect(Glyph['system.structure.headers'].class.to_s).to eq("Array")
44
44
  end
45
45
 
46
46
  it "[macros] should load HTML macros as well when generating web output" do
47
47
  Glyph['document.output'] = 'web'
48
48
  Glyph.run! 'load:macros'
49
- Glyph::MACROS[:section].blank?.should == false
49
+ expect(Glyph::MACROS[:section].blank?).to eq(false)
50
50
  end
51
51
 
52
52
  it "[layouts] should load layouts" do
53
53
  Glyph['document.output'] = 'web'
54
54
  Glyph.run! 'load:macros'
55
- Glyph::MACROS[:"layout/topic"].blank?.should == false
55
+ expect(Glyph::MACROS[:"layout/topic"].blank?).to eq(false)
56
56
  end
57
57
 
58
58
  it "[tasks] should load tasks" do
59
59
  reset_quiet
60
60
  file_copy Glyph::PROJECT/"../files/custom_tasks.rake", Glyph::PROJECT/"lib/tasks/custom_tasks.rake"
61
61
  Glyph.run 'load:all'
62
- stdout_for { Glyph.run 'custom:hello'}.should == "Hello, World!\n"
62
+ expect(stdout_for { Glyph.run 'custom:hello'}).to eq("Hello, World!\n")
63
63
  end
64
64
 
65
65
  it "[commands] should load tasks" do
66
66
  reset_quiet
67
67
  file_copy Glyph::PROJECT/"../files/custom_command.rb", Glyph::PROJECT/"lib/commands/custom_command.rb"
68
68
  Glyph.run 'load:all'
69
- run_command(['hello']).should == "Hello, World!\n"
69
+ expect(run_command(['hello'])).to eq("Hello, World!\n")
70
70
  end
71
71
 
72
72
  end
@@ -12,24 +12,24 @@ describe "project:create" do
12
12
  end
13
13
 
14
14
  it "should not create a new project if no valid directory is supplied" do
15
- lambda { Glyph.run! 'project:create', 'test_dir' }.should raise_error
15
+ expect { Glyph.run! 'project:create', 'test_dir' }.to raise_error
16
16
  end
17
17
 
18
18
  it "should create a new project if an existing empty directory is supplied" do
19
- lambda { Glyph.run! 'project:create', Glyph::PROJECT }.should_not raise_error
20
- (Glyph::PROJECT/'lib').exist?.should == true
21
- (Glyph::PROJECT/'document.glyph').exist?.should == true
22
- (Glyph::PROJECT/'config.yml').exist?.should == true
23
- (Glyph::PROJECT/'text').exist?.should == true
24
- (Glyph::PROJECT/'styles').exist?.should == true
25
- (Glyph::PROJECT/'images').exist?.should == true
26
- (Glyph::PROJECT/'output').exist?.should == true
19
+ expect { Glyph.run! 'project:create', Glyph::PROJECT }.not_to raise_error
20
+ expect((Glyph::PROJECT/'lib').exist?).to eq(true)
21
+ expect((Glyph::PROJECT/'document.glyph').exist?).to eq(true)
22
+ expect((Glyph::PROJECT/'config.yml').exist?).to eq(true)
23
+ expect((Glyph::PROJECT/'text').exist?).to eq(true)
24
+ expect((Glyph::PROJECT/'styles').exist?).to eq(true)
25
+ expect((Glyph::PROJECT/'images').exist?).to eq(true)
26
+ expect((Glyph::PROJECT/'output').exist?).to eq(true)
27
27
  end
28
28
 
29
29
  it "should create a project in a directory containing just Gemfiles or hidden files" do
30
30
  file_write Glyph::PROJECT/".test", "..."
31
31
  file_write Glyph::PROJECT/"Gemfile", "..."
32
- lambda { Glyph.run! 'project:create', Glyph::PROJECT }.should_not raise_error
32
+ expect { Glyph.run! 'project:create', Glyph::PROJECT }.not_to raise_error
33
33
  end
34
34
  end
35
35
 
@@ -46,11 +46,11 @@ describe "project:add" do
46
46
 
47
47
  it "should add new files to project" do
48
48
  create_project
49
- lambda { Glyph.run 'project:add', 'test.textile'}.should_not raise_error
50
- (Glyph::PROJECT/'text/test.textile').exist?.should == true
51
- lambda { Glyph.run 'project:add', 'test.textile'}.should raise_error
52
- lambda { Glyph.run 'project:add', 'chapter1/test.textile'}.should_not raise_error
53
- (Glyph::PROJECT/'text/chapter1/test.textile').exist?.should == true
49
+ expect { Glyph.run 'project:add', 'test.textile'}.not_to raise_error
50
+ expect((Glyph::PROJECT/'text/test.textile').exist?).to eq(true)
51
+ expect { Glyph.run 'project:add', 'test.textile'}.to raise_error
52
+ expect { Glyph.run 'project:add', 'chapter1/test.textile'}.not_to raise_error
53
+ expect((Glyph::PROJECT/'text/chapter1/test.textile').exist?).to eq(true)
54
54
  end
55
55
 
56
56
  end
@@ -347,3 +347,5 @@ ol.CodeRay li {
347
347
 
348
348
  .CodeRay .head .head {
349
349
  color: #f4f; }
350
+
351
+ /*# sourceMappingURL=coderay.css.map */
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "mappings": "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",
4
+ "sources": ["coderay.scss"],
5
+ "names": [],
6
+ "file": "coderay.css"
7
+ }
@@ -103,7 +103,7 @@ blockquote {
103
103
  color: #121212; }
104
104
 
105
105
  table {
106
- border: 1px solid black; }
106
+ border: 1px solid #000; }
107
107
 
108
108
  th {
109
109
  background: #EEE; }
@@ -112,7 +112,7 @@ tr, td, th {
112
112
  padding: 5px; }
113
113
 
114
114
  td, tr, th {
115
- border: 1px solid black; }
115
+ border: 1px solid #000; }
116
116
 
117
117
  sup {
118
118
  font-size: 0.7em;
@@ -133,8 +133,8 @@ sup {
133
133
  text-align: center; }
134
134
 
135
135
  .note, .important, .tip, .caution, .box {
136
- border-top: 1px solid black;
137
- border-bottom: 1px solid black;
136
+ border-top: 1px solid #000;
137
+ border-bottom: 1px solid #000;
138
138
  display: block;
139
139
  min-height: 50px;
140
140
  margin: 1em auto;
@@ -213,10 +213,10 @@ em {
213
213
  font-style: italic; }
214
214
 
215
215
  a {
216
- color: #007bc4;
216
+ color: #007BC4;
217
217
  text-decoration: none; }
218
218
  a:hover {
219
- color: #005b91; }
219
+ color: #005B91; }
220
220
 
221
221
  .code > pre {
222
222
  -webkit-border-radius: 5px;
@@ -238,7 +238,7 @@ nav, .navigation {
238
238
  display: block;
239
239
  margin: 1em auto;
240
240
  text-align: center;
241
- border: 1px solid black; }
241
+ border: 1px solid #000; }
242
242
 
243
243
  nav.contents {
244
244
  margin: auto;
@@ -270,3 +270,5 @@ body {
270
270
 
271
271
  code, pre {
272
272
  font-family: "Inconsolata", Monospace; }
273
+
274
+ /*# sourceMappingURL=default.css.map */
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "mappings": "AAuRQ,wGAAgG;AArRxG,CAAE;EACA,WAAW,EAAE,OAAO;EACpB,MAAM,EAAE,IAAI;EACZ,SAAS,EAAE,IAAI;EACf,UAAU,EAAE,OAAO;EACnB,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;;AAEZ,IAAK;EACH,UAAU,EAAE,IAAI;;AAElB,MAAO;EACL,MAAM,EAAE,OAAO;;AAEjB,KAAM;EACJ,eAAe,EAAE,QAAQ;EACzB,cAAc,EAAE,CAAC;EACjB,MAAM,EAAE,IAAI;EACZ,UAAU,EAAE,GAAG;;AAEjB,IAAK;EACH,WAAW,EAAE,KAAK;EAClB,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;EACV,OAAO,EAAE,KAAK;EACd,UAAU,EAAE,OAAO;;;AAIrB,cAAe;EACb,MAAM,EAAE,IAAI;EACZ,UAAU,EAAE,MAAM;;AAEpB,UAAW;EACT,MAAM,EAAE,IAAI;EACZ,UAAU,EAAE,MAAM;EAClB,aAAG;IACD,WAAW,EAAE,CAAC;IACd,WAAW,EAAE,KAAK;IAClB,SAAS,EAAE,GAAG;IACd,UAAU,EAAE,MAAM;IAClB,WAAW,EAAE,MAAM;EAGrB,aAAG;IACD,WAAW,EAAE,CAAC;IACd,WAAW,EAAE,KAAK;IAClB,SAAS,EAAE,KAAK;IAChB,WAAW,EAAE,MAAM;IACnB,aAAa,EAAE,KAAK;IACpB,qBAAqB,EAAE,IAAI;;AAK7B,iBAAG;EACD,WAAW,EAAE,CAAC;EACd,SAAS,EAAE,GAAG;EACd,WAAW,EAAE,MAAM;EACnB,WAAW,EAAE,KAAK;EAClB,UAAU,EAAE,MAAM;EAClB,aAAa,EAAE,KAAK;AACtB,iBAAG;EACD,WAAW,EAAE,CAAC;EACd,SAAS,EAAE,KAAK;EAChB,WAAW,EAAE,MAAM;EACnB,WAAW,EAAE,KAAK;EAClB,qBAAqB,EAAE,IAAI;;AAE/B,OAAQ;EACN,SAAS,EAAE,GAAG;;AAEhB,QAAS;EACP,SAAS,EAAE,KAAK;;AAElB,EAAG;EACD,MAAM,EAAE,CAAC;EACT,WAAW,EAAE,KAAK;;AAGlB,KAAG;EACD,eAAe,EAAE,IAAI;EACrB,QAAG;IACD,eAAe,EAAE,MAAM;IACvB,WAAG;MACD,eAAe,EAAE,MAAM;;AAM/B,KAAM;EACJ,eAAe,EAAE,OAAO;;AAE1B,YAAa;EACX,eAAe,EAAE,IAAI;;AAEvB,GAAI;EACF,MAAM,EAAE,KAAK;EACb,OAAO,EAAE,GAAG;EACZ,SAAS,EAAE,KAAK;;AAGlB,EAAG;EACD,WAAW,EAAE,IAAI;EACjB,UAAU,EAAE,GAAG;;AAEjB,EAAG;EACD,UAAU,EAAE,MAAM;;AAEpB,UAAW;EACT,MAAM,EAAE,OAAO;EACf,UAAU,EAAE,MAAM;EAClB,KAAK,EAAE,OAAO;;AAEhB,KAAM;EChHL,MAAM,EAAE,cAAuB;;ADmHhC,EAAG;EACD,UAAU,EAAE,IAAI;;AAElB,UAAW;EACT,OAAO,EAAE,GAAG;;AAEd,UAAW;ECzHV,MAAM,EAAE,cAAuB;;AD4HhC,GAAI;EACF,SAAS,EAAE,KAAK;EAChB,WAAW,EAAE,IAAI;EACjB,WAAW,EAAE,MAAM;;;AAIrB,OAAQ;EACN,MAAM,EAAE,IAAI;EACZ,UAAU,EAAE,MAAM;;AAEpB,KAAM;EACJ,MAAM,EAAE,IAAI;EACZ,UAAU,EAAE,IAAI;;AAElB,MAAO;EACL,MAAM,EAAE,IAAI;EACZ,UAAU,EAAE,MAAM;;AAEpB,uCAAwC;EACtC,UAAU,EAAE,cAAuB;EACnC,aAAa,EAAE,cAAuB;EACtC,OAAO,EAAE,KAAK;EACd,UAAU,EAAE,IAAI;EAChB,MAAM,EAAE,QAAQ;EAChB,OAAO,EAAE,WAAW;EACpB,KAAK,EAAE,KAAK;EACZ,KAAK,EAAE,IAAI;;AAEb,iDAA0C;EACxC,OAAO,EAAE,KAAK;EACd,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;;AAEZ,WAAY;EACV,OAAO,EAAE,KAAK;EACd,cAAc,EAAE,MAAM;EACtB,WAAW,EAAE,IAAI;EACjB,YAAY,EAAE,UAAU;EACxB,YAAY,EAAE,GAAG;;AAEnB,UAAW;EACT,OAAO,EAAE,KAAK;EACd,UAAU,EAAE,MAAM;EAClB,YAAY,EAAE,UAAU;EACxB,WAAW,EAAE,IAAI;;AAEnB,QAAS;EACP,OAAO,EAAE,KAAK;EACd,MAAM,EAAE,iBAAiB;EACzB,UAAU,EAAE,OAAO;EACnB,OAAO,EAAE,GAAG;EACZ,MAAM,EAAE,GAAG;EACX,qBAAa;IACX,KAAK,EAAE,OAAO;;AAElB,KAAM;EACJ,OAAO,EAAE,KAAK;EACd,MAAM,EAAE,iBAAiB;EACzB,UAAU,EAAE,OAAO;EACnB,OAAO,EAAE,GAAG;EACZ,MAAM,EAAE,GAAG;EACX,eAAU;IACR,KAAK,EAAE,OAAO;;;AAIlB,IAAK;EACH,KAAK,EAAE,IAAI;EACX,SAAS,EAAE,GAAG;;AAEhB,6CAA8C;EAC5C,OAAO,EAAE,KAAK;EACd,SAAS,EAAE,GAAG;EACd,WAAW,EAAE,IAAI;EACjB,MAAM,EAAE,KAAK;;AAEf,sCAAuC;EACrC,SAAS,EAAE,KAAK;EAChB,WAAW,EAAE,IAAI;EACjB,MAAM,EAAE,WAAW;;AAErB,8CAA+C;EAC7C,SAAS,EAAE,KAAK;EAChB,WAAW,EAAE,IAAI;EACjB,MAAM,EAAE,WAAW;;AAErB,sDAAuD;EACrD,SAAS,EAAE,KAAK;EAChB,WAAW,EAAE,IAAI;EACjB,MAAM,EAAE,WAAW;;AAErB,8DAA+D;EAC7D,SAAS,EAAE,KAAK;EAChB,WAAW,EAAE,IAAI;EACjB,MAAM,EAAE,WAAW;;AAErB,EAAG;EACD,UAAU,EAAE,MAAM;;AAEpB,CAAE;EACA,KAAK,ECrOM,OAAO;EDsOlB,eAAe,EAAE,IAAI;EACrB,OAAQ;IACN,KAAK,ECvOU,OAAO;;ADyO1B,WAAY;EClOV,qBAAqB,EAAE,GAAG;EAC1B,kBAAkB,EAAE,GAAG;EACvB,aAAa,EAAE,GAAG;EAClB,KAAK,EAAE,IAAI;EACX,OAAO,EAAE,IAAI;EACb,QAAQ,EAAE,WAAW;EACrB,MAAM,EAAE,aAAa;;AD+NvB,cAAe;EACb,SAAS,EAAE,KAAK;;AAElB,iBAAkB;EAChB,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,GAAG;;AAEd,gBAAiB;EACf,OAAO,EAAE,KAAK;EACd,MAAM,EAAE,QAAQ;EAChB,UAAU,EAAE,MAAM;ECnPnB,MAAM,EAAE,cAAuB;;ADuP9B,YAAW;EACT,MAAM,EAAE,IAAI;EACZ,UAAU,EAAE,IAAI;EAChB,MAAM,EAAE,IAAI;AACd,KAAE;EACA,MAAM,EAAE,GAAG;;AAEf,aAAc;EACZ,MAAM,EAAE,GAAG;;AAEb,cAAe;EACb,MAAM,EAAE,CAAC;;AAEX,IAAK;EACH,WAAW,EAAE,MAAM;EACnB,UAAU,EAAE,MAAM;EAClB,UAAU,EAAE,IAAI;;AAGhB,kBAAU;EACR,MAAM,EAAE,CAAC;;AAEb,MAAO;EACL,MAAM,EAAE,QAAQ;;;AAMlB,IAAK;EACH,WAAW,EAAE,qBAAqB;;AAEpC,SAAU;EACR,WAAW,EAAE,wBAAwB",
4
+ "sources": ["default.scss","definitions.scss"],
5
+ "names": [],
6
+ "file": "default.css"
7
+ }
@@ -4,29 +4,23 @@
4
4
  @top {
5
5
  content: string(book-title) " - " string(chapter-title);
6
6
  font-style: italic; }
7
-
8
7
  @bottom {
9
- content: counter(page, decimal); } }
10
-
8
+ content: counter(page,decimal); } }
11
9
  .bodymatter > :nth-child(1) {
12
10
  counter-reset: page 1; }
13
11
 
14
12
  @page frontmatter {
15
13
  @bottom {
16
- content: counter(page, lower-roman); } }
17
-
14
+ content: counter(page,lower-roman); } }
18
15
  @page backmatter {
19
16
  @bottom {
20
- content: counter(page, decimal); } }
21
-
17
+ content: counter(page,decimal); } }
22
18
  @page :first {
23
19
  padding-top: 10%;
24
20
  @top {
25
21
  content: normal; }
26
-
27
22
  @bottom {
28
23
  content: normal; } }
29
-
30
24
  ol.toc {
31
25
  margin-left: 1.5em; }
32
26
 
@@ -66,7 +60,7 @@ ol.toc {
66
60
  .toc > li[class~=chapter]::before {
67
61
  content: counter(toc1) ". "; }
68
62
  .toc > li[class~=appendix]::before {
69
- content: counter(appendix1, upper-latin) ". "; }
63
+ content: counter(appendix1,upper-latin) ". "; }
70
64
  .toc > li[class] {
71
65
  margin: 1em 0; }
72
66
  .toc ol li[class]::before {
@@ -82,19 +76,19 @@ ol.toc {
82
76
  .toc ol li[class~=bodymatter]::before {
83
77
  content: counter(toc1) "." counter(toc2) " "; }
84
78
  .toc ol li[class~=appendix]::before {
85
- content: counter(appendix1, upper-latin) "." counter(toc2) " "; }
79
+ content: counter(appendix1,upper-latin) "." counter(toc2) " "; }
86
80
  .toc ol ol li[class~=bodymatter]::before {
87
81
  content: counter(toc1) "." counter(toc2) "." counter(toc3) " "; }
88
82
  .toc ol ol li[class~=appendix]::before {
89
- content: counter(appendix1, upper-latin) "." counter(toc2) "." counter(toc3) " "; }
83
+ content: counter(appendix1,upper-latin) "." counter(toc2) "." counter(toc3) " "; }
90
84
  .toc ol ol ol li[class~=bodymatter]::before {
91
85
  content: counter(toc1) "." counter(toc2) "." counter(toc3) "." counter(toc4) " "; }
92
86
  .toc ol ol ol li[class~=appendix]::before {
93
- content: counter(appendix1, upper-latin) "." counter(toc2) "." counter(toc3) "." counter(toc4) " "; }
87
+ content: counter(appendix1,upper-latin) "." counter(toc2) "." counter(toc3) "." counter(toc4) " "; }
94
88
  .toc ol ol ol ol li[class~=bodymatter]::before {
95
89
  content: counter(toc1) "." counter(toc2) "." counter(toc3) "." counter(toc4) "." counter(toc5) " "; }
96
90
  .toc ol ol ol ol li[class~=appendix]::before {
97
- content: counter(appendix1, upper-latin) "." counter(toc2) "." counter(toc3) "." counter(toc4) "." counter(toc5) " "; }
91
+ content: counter(appendix1,upper-latin) "." counter(toc2) "." counter(toc3) "." counter(toc4) "." counter(toc5) " "; }
98
92
 
99
93
  div.frontmatter {
100
94
  page: frontmatter; }
@@ -102,35 +96,35 @@ div.backmatter {
102
96
  page: backmatter; }
103
97
 
104
98
  .bodymatter h2::before, .bodymatter h1:before {
105
- content: "Chapter " counter(h2, upper-roman) ": ";
99
+ content: "Chapter " counter(h2,upper-roman) ": ";
106
100
  counter-reset: footnote; }
107
101
 
108
102
  .backmatter h2::before {
109
- content: "Appendix " counter(a2, upper-latin) ": "; }
103
+ content: "Appendix " counter(a2,upper-latin) ": "; }
110
104
 
111
105
  .bodymatter section h1:before {
112
- content: "Appendix " counter(a2, upper-latin) ": "; }
106
+ content: "Appendix " counter(a2,upper-latin) ": "; }
113
107
  .bodymatter h3::before, .bodymatter section h1:before {
114
108
  content: counter(h2) "." counter(h3) " "; }
115
109
 
116
110
  .backmatter h3.toc::before {
117
- content: counter(a2, upper-latin) "." counter(h3) " "; }
111
+ content: counter(a2,upper-latin) "." counter(h3) " "; }
118
112
 
119
113
  .bodymatter section section h1.toc:before {
120
- content: counter(a2, upper-latin) "." counter(h3) " "; }
114
+ content: counter(a2,upper-latin) "." counter(h3) " "; }
121
115
  .bodymatter h4.toc::before, .bodymatter section section h1.toc:before {
122
116
  content: counter(h2) "." counter(h3) "." counter(h4) " "; }
123
117
 
124
118
  .backmatter h4.toc::before {
125
- content: counter(a2, upper-latin) "." counter(h3) "." counter(h4) " "; }
119
+ content: counter(a2,upper-latin) "." counter(h3) "." counter(h4) " "; }
126
120
 
127
121
  .bodymatter section section section h2.toc:before {
128
- content: counter(a2, upper-latin) "." counter(h3) "." counter(h4) " "; }
122
+ content: counter(a2,upper-latin) "." counter(h3) "." counter(h4) " "; }
129
123
  .bodymatter h5.toc::before, .bodymatter section section section section h2.toc:before {
130
124
  content: counter(h2) "." counter(h3) "." counter(h4) "." counter(h5) " "; }
131
125
 
132
126
  .backmatter h5.toc::before, .bodymatter section section section section h2.toc:before {
133
- content: counter(a2, upper-latin) "." counter(h3) "." counter(h4) "." counter(h5) " "; }
127
+ content: counter(a2,upper-latin) "." counter(h3) "." counter(h4) "." counter(h5) " "; }
134
128
 
135
129
  h2, section h1 {
136
130
  padding-top: 2em;
@@ -169,7 +163,6 @@ h1, h2, h3, h4, h5 {
169
163
  @page {
170
164
  @footnotes {
171
165
  border-top: 1px solid #000; } }
172
-
173
166
  .fn {
174
167
  font-size: 85%;
175
168
  margin-left: 1.5em;
@@ -185,3 +178,5 @@ h1, h2, h3, h4, h5 {
185
178
  .fn:footnote-marker {
186
179
  font-weight: bold;
187
180
  margin-right: 0.5em; }
181
+
182
+ /*# sourceMappingURL=pagination.css.map */
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "mappings": "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",
4
+ "sources": ["pagination.scss"],
5
+ "names": [],
6
+ "file": "pagination.css"
7
+ }
@@ -25,12 +25,19 @@ namespace :generate do
25
25
  subdir = f.parent.relative_path_from(styles_dir).to_s.gsub(/^\./, '')
26
26
  dir = out_dir/subdir
27
27
  dir.mkpath
28
- case
29
- when f.extname == ".css" then
28
+ case f.extname
29
+ when ".css" then
30
30
  file_copy f, dir/f.basename
31
- when f.extname == ".sass" then
32
- style = Sass::Engine.new(file_load(f.to_s)).render
33
- out_file = dir/f.basename.to_s.gsub(/\.sass$/, '.css')
31
+ when ".sass", ".scss" then
32
+ begin
33
+ require 'sass'
34
+ style = Sass::Engine.new(file_load(f.to_s), :syntax => f.extname.gsub(/^\./, '').to_sym).render
35
+ rescue LoadError
36
+ macro_error "Sass is not installed. Please run: gem install sass"
37
+ rescue Exception
38
+ raise
39
+ end
40
+ out_file = dir/f.basename.to_s.gsub(/\.s[ac]ss$/, '.css')
34
41
  file_write out_file, style
35
42
  else
36
43
  raise RuntimeError, "Unsupported stylesheet: '#{f.basename}'"
metadata CHANGED
@@ -1,176 +1,155 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: glyph
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.2
5
- prerelease:
4
+ version: 0.5.3.1
6
5
  platform: ruby
7
6
  authors:
8
7
  - Fabio Cevasco
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2012-11-10 00:00:00.000000000 Z
11
+ date: 2014-10-04 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: gli
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ! '>='
17
+ - - '>='
20
18
  - !ruby/object:Gem::Version
21
- version: 2.4.1
19
+ version: 2.12.2
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ! '>='
24
+ - - '>='
28
25
  - !ruby/object:Gem::Version
29
- version: 2.4.1
26
+ version: 2.12.2
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: extlib
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
- - - ! '>='
31
+ - - '>='
36
32
  - !ruby/object:Gem::Version
37
- version: 0.9.15
33
+ version: 0.9.16
38
34
  type: :runtime
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
- - - ! '>='
38
+ - - '>='
44
39
  - !ruby/object:Gem::Version
45
- version: 0.9.15
40
+ version: 0.9.16
46
41
  - !ruby/object:Gem::Dependency
47
42
  name: rake
48
43
  requirement: !ruby/object:Gem::Requirement
49
- none: false
50
44
  requirements:
51
- - - ! '>='
45
+ - - '>='
52
46
  - !ruby/object:Gem::Version
53
- version: 0.9.2.2
47
+ version: 10.3.2
54
48
  type: :runtime
55
49
  prerelease: false
56
50
  version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
51
  requirements:
59
- - - ! '>='
52
+ - - '>='
60
53
  - !ruby/object:Gem::Version
61
- version: 0.9.2.2
54
+ version: 10.3.2
62
55
  - !ruby/object:Gem::Dependency
63
56
  name: rspec
64
57
  requirement: !ruby/object:Gem::Requirement
65
- none: false
66
58
  requirements:
67
- - - ! '>='
59
+ - - '>='
68
60
  - !ruby/object:Gem::Version
69
- version: 2.11.0
61
+ version: 3.1.0
70
62
  type: :development
71
63
  prerelease: false
72
64
  version_requirements: !ruby/object:Gem::Requirement
73
- none: false
74
65
  requirements:
75
- - - ! '>='
66
+ - - '>='
76
67
  - !ruby/object:Gem::Version
77
- version: 2.11.0
68
+ version: 3.1.0
78
69
  - !ruby/object:Gem::Dependency
79
70
  name: yard
80
71
  requirement: !ruby/object:Gem::Requirement
81
- none: false
82
72
  requirements:
83
- - - ! '>='
73
+ - - '>='
84
74
  - !ruby/object:Gem::Version
85
- version: 0.8.3
75
+ version: 0.8.7.4
86
76
  type: :development
87
77
  prerelease: false
88
78
  version_requirements: !ruby/object:Gem::Requirement
89
- none: false
90
79
  requirements:
91
- - - ! '>='
80
+ - - '>='
92
81
  - !ruby/object:Gem::Version
93
- version: 0.8.3
82
+ version: 0.8.7.4
94
83
  - !ruby/object:Gem::Dependency
95
84
  name: directory_watcher
96
85
  requirement: !ruby/object:Gem::Requirement
97
- none: false
98
86
  requirements:
99
- - - ! '>='
87
+ - - '>='
100
88
  - !ruby/object:Gem::Version
101
- version: 1.4.1
89
+ version: 1.5.1
102
90
  type: :development
103
91
  prerelease: false
104
92
  version_requirements: !ruby/object:Gem::Requirement
105
- none: false
106
93
  requirements:
107
- - - ! '>='
94
+ - - '>='
108
95
  - !ruby/object:Gem::Version
109
- version: 1.4.1
96
+ version: 1.5.1
110
97
  - !ruby/object:Gem::Dependency
111
98
  name: sass
112
99
  requirement: !ruby/object:Gem::Requirement
113
- none: false
114
100
  requirements:
115
- - - ! '>='
101
+ - - '>='
116
102
  - !ruby/object:Gem::Version
117
- version: 3.2.1
103
+ version: 3.4.5
118
104
  type: :development
119
105
  prerelease: false
120
106
  version_requirements: !ruby/object:Gem::Requirement
121
- none: false
122
107
  requirements:
123
- - - ! '>='
108
+ - - '>='
124
109
  - !ruby/object:Gem::Version
125
- version: 3.2.1
110
+ version: 3.4.5
126
111
  - !ruby/object:Gem::Dependency
127
112
  name: RedCloth
128
113
  requirement: !ruby/object:Gem::Requirement
129
- none: false
130
114
  requirements:
131
- - - ! '>='
115
+ - - '>='
132
116
  - !ruby/object:Gem::Version
133
117
  version: 4.2.9
134
118
  type: :development
135
119
  prerelease: false
136
120
  version_requirements: !ruby/object:Gem::Requirement
137
- none: false
138
121
  requirements:
139
- - - ! '>='
122
+ - - '>='
140
123
  - !ruby/object:Gem::Version
141
124
  version: 4.2.9
142
125
  - !ruby/object:Gem::Dependency
143
126
  name: bluecloth
144
127
  requirement: !ruby/object:Gem::Requirement
145
- none: false
146
128
  requirements:
147
- - - ! '>='
129
+ - - '>='
148
130
  - !ruby/object:Gem::Version
149
131
  version: 2.2.0
150
132
  type: :development
151
133
  prerelease: false
152
134
  version_requirements: !ruby/object:Gem::Requirement
153
- none: false
154
135
  requirements:
155
- - - ! '>='
136
+ - - '>='
156
137
  - !ruby/object:Gem::Version
157
138
  version: 2.2.0
158
139
  - !ruby/object:Gem::Dependency
159
140
  name: coderay
160
141
  requirement: !ruby/object:Gem::Requirement
161
- none: false
162
142
  requirements:
163
- - - ! '>='
143
+ - - '>='
164
144
  - !ruby/object:Gem::Version
165
- version: 1.0.8
145
+ version: 1.1.0
166
146
  type: :development
167
147
  prerelease: false
168
148
  version_requirements: !ruby/object:Gem::Requirement
169
- none: false
170
149
  requirements:
171
- - - ! '>='
150
+ - - '>='
172
151
  - !ruby/object:Gem::Version
173
- version: 1.0.8
152
+ version: 1.1.0
174
153
  description: Glyph is a framework for structured document authoring.
175
154
  email: h3rald@h3rald.com
176
155
  executables:
@@ -188,8 +167,7 @@ files:
188
167
  - CHANGELOG.textile
189
168
  - config.yml
190
169
  - document.glyph
191
- - glyph-0.5.1.gem
192
- - glyph-0.5.2.gem
170
+ - Gemfile.lock
193
171
  - glyph.gemspec
194
172
  - LICENSE.textile
195
173
  - README.textile
@@ -347,12 +325,15 @@ files:
347
325
  - spec/tasks/load_spec.rb
348
326
  - spec/tasks/project_spec.rb
349
327
  - styles/coderay.css
328
+ - styles/coderay.css.map
350
329
  - styles/coderay.scss
351
330
  - styles/default.css
331
+ - styles/default.css.map
352
332
  - styles/default.scss
353
333
  - styles/definitions.scss
354
334
  - styles/generate
355
335
  - styles/pagination.css
336
+ - styles/pagination.css.map
356
337
  - styles/pagination.scss
357
338
  - styles/ultraviolet/active4d.css
358
339
  - styles/ultraviolet/all_hallows_eve.css
@@ -381,27 +362,26 @@ files:
381
362
  homepage: http://www.h3rald.com/glyph/
382
363
  licenses:
383
364
  - MIT
365
+ metadata: {}
384
366
  post_install_message:
385
367
  rdoc_options: []
386
368
  require_paths:
387
369
  - lib
388
370
  required_ruby_version: !ruby/object:Gem::Requirement
389
- none: false
390
371
  requirements:
391
- - - ! '>='
372
+ - - '>='
392
373
  - !ruby/object:Gem::Version
393
374
  version: '0'
394
375
  required_rubygems_version: !ruby/object:Gem::Requirement
395
- none: false
396
376
  requirements:
397
- - - ! '>='
377
+ - - '>='
398
378
  - !ruby/object:Gem::Version
399
379
  version: '0'
400
380
  requirements: []
401
381
  rubyforge_project:
402
- rubygems_version: 1.8.24
382
+ rubygems_version: 2.0.14
403
383
  signing_key:
404
- specification_version: 3
384
+ specification_version: 4
405
385
  summary: Glyph -- A Ruby-powered Document Authoring Framework
406
386
  test_files:
407
387
  - spec/config.yml
@@ -446,4 +426,3 @@ test_files:
446
426
  - spec/tasks/generate_spec.rb
447
427
  - spec/tasks/load_spec.rb
448
428
  - spec/tasks/project_spec.rb
449
- has_rdoc: