yard_klippstein_template 0.0.19 → 0.0.20
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/History.rdoc +14 -0
- data/Manifest.txt +2 -0
- data/Rakefile.rb +7 -6
- data/templates/default/layout/html/footer.erb +10 -0
- data/version.rb +1 -1
- metadata +7 -3
data/History.rdoc
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
== 0.0.19 2012-10-26
|
|
2
|
+
* rdoc def list: show as table
|
|
3
|
+
* source code is always visible
|
|
4
|
+
|
|
5
|
+
== 0.0.12 2012-10-25
|
|
6
|
+
* clear visual grouping (headlines, lists)
|
|
7
|
+
* source code is always visible
|
|
8
|
+
|
|
9
|
+
== 0.0.3 2012-10-23
|
|
10
|
+
* Initial public release
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
data/Manifest.txt
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
History.rdoc
|
|
1
2
|
License.rdoc
|
|
2
3
|
Manifest.txt
|
|
3
4
|
Rakefile.rb
|
|
@@ -7,5 +8,6 @@ templates/default/fulldoc/html/setup.rb
|
|
|
7
8
|
templates/default/fulldoc/html/css/klippstein.css
|
|
8
9
|
templates/default/fulldoc/html/js/klippstein.js
|
|
9
10
|
templates/default/layout/html/setup.rb
|
|
11
|
+
templates/default/layout/html/footer.erb
|
|
10
12
|
lib/yard_klippstein_template.rb
|
|
11
13
|
|
data/Rakefile.rb
CHANGED
|
@@ -15,16 +15,17 @@ Drumherum.github_username = 'bklippstein'
|
|
|
15
15
|
#
|
|
16
16
|
# http://nubyonrails.com/articles/tutorial-publishing-rubygems-with-hoe
|
|
17
17
|
#
|
|
18
|
-
$hoe = Hoe.spec Drumherum.project_name do
|
|
18
|
+
$hoe = Hoe.spec Drumherum.project_name do |p|
|
|
19
19
|
|
|
20
20
|
# self.rubyforge_name = 'yourgemx' # if different than 'yourgem'
|
|
21
21
|
|
|
22
|
-
developer('Bjoern Klippstein', 'klippstein@klippstein.com')
|
|
23
|
-
summary
|
|
24
|
-
|
|
22
|
+
p.developer('Bjoern Klippstein', 'klippstein@klippstein.com')
|
|
23
|
+
p.summary = 'Klippstein Template for Ruby YARD'
|
|
24
|
+
p.description = 'Clear visual grouping, some infos shown as table, source code is always visible'
|
|
25
|
+
p.extra_dev_deps << ['drumherum', '>= 0.1.26']
|
|
25
26
|
|
|
26
|
-
remote_rdoc_dir = '' # Release to root only one project
|
|
27
|
-
urls = ["http://bklippstein.github.com/yard_klippstein_template/index.html", Drumherum.url_source]
|
|
27
|
+
p.remote_rdoc_dir = '' # Release to root only one project
|
|
28
|
+
p.urls = ["http://bklippstein.github.com/yard_klippstein_template/index.html", Drumherum.url_source]
|
|
28
29
|
|
|
29
30
|
|
|
30
31
|
end
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<div id="footer">
|
|
2
|
+
Generated on <%= Time.now.strftime("%c") %> by
|
|
3
|
+
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a> <%= YARD::VERSION %>
|
|
4
|
+
with <a href="http://bklippstein.github.com/yard_klippstein_template/index.html"
|
|
5
|
+
title="Klippstein Template for Ruby YARD"
|
|
6
|
+
target="_parent">
|
|
7
|
+
yard_klippstein_template
|
|
8
|
+
</a>
|
|
9
|
+
|
|
10
|
+
</div>
|
data/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: yard_klippstein_template
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.20
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -59,16 +59,19 @@ dependencies:
|
|
|
59
59
|
- - ~>
|
|
60
60
|
- !ruby/object:Gem::Version
|
|
61
61
|
version: '3.1'
|
|
62
|
-
description:
|
|
62
|
+
description: Clear visual grouping, some infos shown as table, source code is always
|
|
63
|
+
visible
|
|
63
64
|
email:
|
|
64
65
|
- klippstein@klippstein.com
|
|
65
66
|
executables: []
|
|
66
67
|
extensions: []
|
|
67
68
|
extra_rdoc_files:
|
|
69
|
+
- History.rdoc
|
|
68
70
|
- License.rdoc
|
|
69
71
|
- Manifest.txt
|
|
70
72
|
- README.rdoc
|
|
71
73
|
files:
|
|
74
|
+
- History.rdoc
|
|
72
75
|
- License.rdoc
|
|
73
76
|
- Manifest.txt
|
|
74
77
|
- Rakefile.rb
|
|
@@ -78,6 +81,7 @@ files:
|
|
|
78
81
|
- templates/default/fulldoc/html/css/klippstein.css
|
|
79
82
|
- templates/default/fulldoc/html/js/klippstein.js
|
|
80
83
|
- templates/default/layout/html/setup.rb
|
|
84
|
+
- templates/default/layout/html/footer.erb
|
|
81
85
|
- lib/yard_klippstein_template.rb
|
|
82
86
|
homepage: http://bklippstein.github.com/yard_klippstein_template/index.html
|
|
83
87
|
licenses: []
|
|
@@ -104,5 +108,5 @@ rubyforge_project: yard_klippstein_template
|
|
|
104
108
|
rubygems_version: 1.8.24
|
|
105
109
|
signing_key:
|
|
106
110
|
specification_version: 3
|
|
107
|
-
summary:
|
|
111
|
+
summary: Klippstein Template for Ruby YARD
|
|
108
112
|
test_files: []
|