olag 0.1.13 → 0.1.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/ChangeLog +8 -0
- data/codnar.html +26 -11
- data/lib/olag/rake.rb +10 -0
- data/lib/olag/version.rb +1 -1
- metadata +5 -5
data/ChangeLog
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
2012-01-07 Oren Ben-Kiki <github-oren@ben-kiki.org>
|
|
2
|
+
|
|
3
|
+
* Add default configurations for Haskell code.
|
|
4
|
+
|
|
5
|
+
2011-09-13 Oren Ben-Kiki <github-oren@ben-kiki.org>
|
|
6
|
+
|
|
7
|
+
* Support GraphViz documentation.
|
|
8
|
+
|
|
1
9
|
2011-08-25 Oren Ben-Kiki <github-oren@ben-kiki.org>
|
|
2
10
|
|
|
3
11
|
* Utilities for verifing number of arguments.
|
data/codnar.html
CHANGED
|
@@ -352,16 +352,6 @@ table.layout td.html {
|
|
|
352
352
|
background-color: Beige;
|
|
353
353
|
}
|
|
354
354
|
|
|
355
|
-
/* Colors for GVim classes */
|
|
356
|
-
|
|
357
|
-
span.Constant { color: Crimson; }
|
|
358
|
-
span.Identifier { color: Teal; }
|
|
359
|
-
span.PreProc { color: Indigo; }
|
|
360
|
-
span.Special { color: Navy; }
|
|
361
|
-
span.Statement { color: Maroon; }
|
|
362
|
-
span.Type { color: Green; }
|
|
363
|
-
span.Comment { color: Purple; }
|
|
364
|
-
|
|
365
355
|
/* Fonts */
|
|
366
356
|
|
|
367
357
|
body {
|
|
@@ -1680,6 +1670,31 @@ splitting but slow viewing. Using GVim is the reverse.
|
|
|
1680
1670
|
<td class='html'>
|
|
1681
1671
|
<div class='rdoc comment markup'>
|
|
1682
1672
|
<p>
|
|
1673
|
+
Configurations for splitting Haskell files. Not that ruby gems tend to
|
|
1674
|
+
contain Haskell files, but it allows more easily adding a Rakefile for
|
|
1675
|
+
generating codnar documentation into a Haskell project.
|
|
1676
|
+
</p>
|
|
1677
|
+
</div>
|
|
1678
|
+
</td>
|
|
1679
|
+
</tr>
|
|
1680
|
+
</table>
|
|
1681
|
+
<pre class='ruby code syntax'>
|
|
1682
|
+
<span class="Special">"</span><span class="Constant">.*\.hs</span><span class="Special">"</span>,
|
|
1683
|
+
<span class="Special">"</span><span class="Constant">classify_source_code:haskell</span><span class="Special">"</span>,
|
|
1684
|
+
<span class="Special">"</span><span class="Constant">format_code_gvim_css:haskell</span><span class="Special">"</span>,
|
|
1685
|
+
<span class="Special">"</span><span class="Constant">classify_haddock_comments</span><span class="Special">"</span>,
|
|
1686
|
+
<span class="Special">"</span><span class="Constant">format_haddock_comments</span><span class="Special">"</span>,
|
|
1687
|
+
<span class="Special">"</span><span class="Constant">chunk_by_vim_regions</span><span class="Special">"</span>,
|
|
1688
|
+
], [
|
|
1689
|
+
</pre>
|
|
1690
|
+
<table class='layout'>
|
|
1691
|
+
<tr>
|
|
1692
|
+
<td class='indentation'>
|
|
1693
|
+
<pre> </pre>
|
|
1694
|
+
</td>
|
|
1695
|
+
<td class='html'>
|
|
1696
|
+
<div class='rdoc comment markup'>
|
|
1697
|
+
<p>
|
|
1683
1698
|
Configurations for GraphViz diagram files.
|
|
1684
1699
|
</p>
|
|
1685
1700
|
</div>
|
|
@@ -2013,7 +2028,7 @@ number of Git commits by running <tt>rake version</tt>.
|
|
|
2013
2028
|
</tr>
|
|
2014
2029
|
</table>
|
|
2015
2030
|
<pre class='ruby code syntax'>
|
|
2016
|
-
<span class="Type">VERSION</span> = <span class="Special">"</span><span class="Constant">0.1.
|
|
2031
|
+
<span class="Type">VERSION</span> = <span class="Special">"</span><span class="Constant">0.1.15</span><span class="Special">"</span>
|
|
2017
2032
|
|
|
2018
2033
|
end
|
|
2019
2034
|
</pre>
|
data/lib/olag/rake.rb
CHANGED
|
@@ -160,6 +160,16 @@ module Olag
|
|
|
160
160
|
"classify_shell_comments",
|
|
161
161
|
"format_rdoc_comments",
|
|
162
162
|
"chunk_by_vim_regions",
|
|
163
|
+
], [
|
|
164
|
+
# Configurations for splitting Haskell files. Not that ruby gems tend
|
|
165
|
+
# to contain Haskell files, but it allows more easily adding a Rakefile
|
|
166
|
+
# for generating codnar documentation into a Haskell project.
|
|
167
|
+
".*\.hs",
|
|
168
|
+
"classify_source_code:haskell",
|
|
169
|
+
"format_code_gvim_css:haskell",
|
|
170
|
+
"classify_haddock_comments",
|
|
171
|
+
"format_haddock_comments",
|
|
172
|
+
"chunk_by_vim_regions",
|
|
163
173
|
], [
|
|
164
174
|
# Configurations for GraphViz diagram files.
|
|
165
175
|
".*\.dot",
|
data/lib/olag/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: olag
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 5
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 0.1.
|
|
9
|
+
- 15
|
|
10
|
+
version: 0.1.15
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Oren Ben-Kiki
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date:
|
|
18
|
+
date: 2012-01-07 00:00:00 Z
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|
|
21
21
|
name: Saikuro
|
|
@@ -202,7 +202,7 @@ licenses: []
|
|
|
202
202
|
post_install_message:
|
|
203
203
|
rdoc_options:
|
|
204
204
|
- --title
|
|
205
|
-
- Olag 0.1.
|
|
205
|
+
- Olag 0.1.15
|
|
206
206
|
- --main
|
|
207
207
|
- README.rdoc
|
|
208
208
|
- --line-numbers
|