gerbil 1.0.0 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +23 -12
- data/bin/gerbil +5 -4
- data/doc/api/classes/RDoc.html +164 -0
- data/doc/api/classes/RDoc.src/M000004.html +26 -0
- data/doc/api/classes/RDoc.src/M000005.html +59 -0
- data/doc/api/classes/RDoc/DummyMarkup.html +119 -0
- data/doc/api/classes/RDoc/DummyMixin.html +131 -0
- data/doc/api/classes/RDoc/DummyMixin.src/M000006.html +18 -0
- data/doc/api/classes/RDoc/DummyOptions.html +144 -0
- data/doc/api/classes/RDoc/DummyOptions.src/M000007.html +18 -0
- data/doc/api/classes/String.html +212 -0
- data/doc/api/classes/String.src/M000001.html +35 -0
- data/doc/api/classes/String.src/M000002.html +44 -0
- data/doc/api/classes/String.src/M000003.html +38 -0
- data/doc/api/created.rid +1 -0
- data/doc/api/files/lib/gerbil/html_rb.html +124 -0
- data/doc/api/files/lib/gerbil/rdoc_rb.html +116 -0
- data/doc/api/files/lib/gerbil_rb.html +125 -0
- data/doc/api/fr_class_index.html +31 -0
- data/doc/api/fr_file_index.html +29 -0
- data/doc/api/fr_method_index.html +33 -0
- data/doc/api/index.html +24 -0
- data/doc/api/rdoc-style.css +208 -0
- data/doc/guide.erb +13 -6
- data/doc/guide.html +144 -122
- data/fmt/html.yaml +14 -0
- data/lib/gerbil.rb +3 -3
- data/lib/gerbil/rdoc.rb +2 -2
- metadata +35 -4
data/fmt/html.yaml
CHANGED
@@ -739,6 +739,20 @@ styles:
|
|
739
739
|
border : none;
|
740
740
|
}
|
741
741
|
|
742
|
+
/*
|
743
|
+
mark external links with a symbol to help the user
|
744
|
+
distinguish between internal and external links
|
745
|
+
*/
|
746
|
+
a:after
|
747
|
+
{
|
748
|
+
content: "∗";
|
749
|
+
}
|
750
|
+
|
751
|
+
a[href^="#"]:after
|
752
|
+
{
|
753
|
+
content: "";
|
754
|
+
}
|
755
|
+
|
742
756
|
/* source code */
|
743
757
|
|
744
758
|
tt,
|
data/lib/gerbil.rb
CHANGED
@@ -2,10 +2,10 @@
|
|
2
2
|
|
3
3
|
Gerbil = {
|
4
4
|
:name => 'Gerbil',
|
5
|
-
:version => '1.
|
6
|
-
:release => '2008-01-
|
5
|
+
:version => '1.1.0',
|
6
|
+
:release => '2008-01-22',
|
7
7
|
:website => 'http://gerbil.rubyforge.org',
|
8
8
|
:home => File.expand_path(File.join(File.dirname(__FILE__), '..'))
|
9
9
|
}
|
10
|
-
Gerbil[:format_home]
|
10
|
+
Gerbil[:format_home] = File.join(Gerbil[:home], 'fmt')
|
11
11
|
Gerbil[:format_files] = Dir[File.join(Gerbil[:format_home], '*.yaml')]
|
data/lib/gerbil/rdoc.rb
CHANGED
@@ -38,7 +38,7 @@ module RDoc
|
|
38
38
|
info.requires.map do |r|
|
39
39
|
f = r.name
|
40
40
|
f << '.rb' unless File.exist? f
|
41
|
-
|
41
|
+
gen_parse_trees f if File.exist? f
|
42
42
|
end.flatten.compact << info
|
43
43
|
end
|
44
44
|
|
@@ -46,7 +46,7 @@ module RDoc
|
|
46
46
|
# given parse trees (which are produced by RDoc::gen_parse_trees).
|
47
47
|
def self.gen_method_infos *aParseTrees
|
48
48
|
meths = aParseTrees.map do |i|
|
49
|
-
i
|
49
|
+
[i, i.classes, i.modules].flatten.map {|j| j.method_list }
|
50
50
|
end.flatten.uniq
|
51
51
|
|
52
52
|
meths.map do |m|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gerbil
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors: []
|
7
7
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2008-01-
|
12
|
+
date: 2008-01-22 00:00:00 -08:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -69,7 +69,38 @@ files:
|
|
69
69
|
- doc/guide.html
|
70
70
|
- doc/guide.erb
|
71
71
|
- doc/HelloWorld.spec
|
72
|
-
|
72
|
+
- doc/api
|
73
|
+
- doc/api/classes
|
74
|
+
- doc/api/classes/RDoc.html
|
75
|
+
- doc/api/classes/String.src
|
76
|
+
- doc/api/classes/String.src/M000001.html
|
77
|
+
- doc/api/classes/String.src/M000003.html
|
78
|
+
- doc/api/classes/String.src/M000002.html
|
79
|
+
- doc/api/classes/String.html
|
80
|
+
- doc/api/classes/RDoc.src
|
81
|
+
- doc/api/classes/RDoc.src/M000005.html
|
82
|
+
- doc/api/classes/RDoc.src/M000004.html
|
83
|
+
- doc/api/classes/RDoc
|
84
|
+
- doc/api/classes/RDoc/DummyMixin.src
|
85
|
+
- doc/api/classes/RDoc/DummyMixin.src/M000006.html
|
86
|
+
- doc/api/classes/RDoc/DummyOptions.src
|
87
|
+
- doc/api/classes/RDoc/DummyOptions.src/M000007.html
|
88
|
+
- doc/api/classes/RDoc/DummyMarkup.html
|
89
|
+
- doc/api/classes/RDoc/DummyOptions.html
|
90
|
+
- doc/api/classes/RDoc/DummyMixin.html
|
91
|
+
- doc/api/fr_method_index.html
|
92
|
+
- doc/api/rdoc-style.css
|
93
|
+
- doc/api/files
|
94
|
+
- doc/api/files/lib
|
95
|
+
- doc/api/files/lib/gerbil_rb.html
|
96
|
+
- doc/api/files/lib/gerbil
|
97
|
+
- doc/api/files/lib/gerbil/rdoc_rb.html
|
98
|
+
- doc/api/files/lib/gerbil/html_rb.html
|
99
|
+
- doc/api/created.rid
|
100
|
+
- doc/api/index.html
|
101
|
+
- doc/api/fr_file_index.html
|
102
|
+
- doc/api/fr_class_index.html
|
103
|
+
has_rdoc: true
|
73
104
|
homepage: http://gerbil.rubyforge.org
|
74
105
|
post_install_message:
|
75
106
|
rdoc_options: []
|
@@ -90,7 +121,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
90
121
|
version:
|
91
122
|
requirements: []
|
92
123
|
|
93
|
-
rubyforge_project:
|
124
|
+
rubyforge_project: gerbil
|
94
125
|
rubygems_version: 1.0.1
|
95
126
|
signing_key:
|
96
127
|
specification_version: 2
|