yard_klippstein_template 0.0.31 → 0.0.32

Sign up to get free protection for your applications and to get access to all the features.
data/Manifest.txt CHANGED
@@ -10,6 +10,9 @@ templates/default/fulldoc/html/js/klippstein.js
10
10
  templates/default/fulldoc/html/full_list_method.erb
11
11
  templates/default/fulldoc/html/setup.rb
12
12
  templates/default/layout/html/footer.erb
13
+ templates/default/layout/html/layout.erb
14
+ templates/default/layout/html/project_footer.erb
15
+ templates/default/layout/html/project_header.erb
13
16
  templates/default/layout/html/setup.rb
14
17
  templates/default/module/html/box_info.erb
15
18
  templates/default/module/html/children.erb
@@ -1,3 +1,14 @@
1
+
2
+ body {
3
+ margin: 0;
4
+ padding: 10px 20px 10px 20px;
5
+ }
6
+
7
+ #header {
8
+ background-color: #EEEEEE;
9
+ margin-bottom: 10px;
10
+ }
11
+
1
12
  /* Box */
2
13
 
3
14
  #filecontents dl.box, dl.box {
@@ -0,0 +1,21 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
+ <head>
5
+ <%= erb(:headers) %>
6
+ </head>
7
+ <body>
8
+ <div id="header">
9
+ <%= erb(:breadcrumb) %>
10
+ <%= erb(:search) %>
11
+ <div class="clear"></div>
12
+ <%= erb(:project_header) %>
13
+ </div>
14
+
15
+ <iframe id="search_frame"></iframe>
16
+
17
+ <div id="content"><%= yieldall %></div>
18
+ <%= erb(:project_footer) %>
19
+ <%= erb(:footer) %>
20
+ </body>
21
+ </html>
@@ -0,0 +1,3 @@
1
+ <div id="project-footer">
2
+ Project Footer
3
+ </div>
@@ -0,0 +1,3 @@
1
+ <div id="project-header">
2
+ Project Header
3
+ </div>
@@ -1,10 +1,11 @@
1
1
 
2
2
  def init
3
- sections :header, :box_info, :children, :pre_docstring, T('docstring'),
3
+ sections :project_header, :header, :box_info, :children, :pre_docstring, T('docstring'),
4
4
  :attribute_summary, [:item_summary], :inherited_attributes,
5
5
  :method_summary, [:item_summary], :inherited_methods,
6
6
  :constant_summary, [T('docstring')], :inherited_constants,
7
7
  :methodmissing, [T('method_details')],
8
8
  :attribute_details, [T('method_details')],
9
- :method_details_list, [T('method_details')]
9
+ :method_details_list, [T('method_details')],
10
+ :project_footer
10
11
  end
data/version.rb CHANGED
@@ -1,7 +1,7 @@
1
1
 
2
2
  module YardKlippsteinTemplate
3
3
 
4
- VERSION = '0.0.31'
4
+ VERSION = '0.0.32'
5
5
 
6
6
  end
7
7
 
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.31
4
+ version: 0.0.32
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-11-01 00:00:00.000000000 Z
12
+ date: 2012-11-02 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: yard
@@ -99,6 +99,9 @@ files:
99
99
  - templates/default/fulldoc/html/full_list_method.erb
100
100
  - templates/default/fulldoc/html/setup.rb
101
101
  - templates/default/layout/html/footer.erb
102
+ - templates/default/layout/html/layout.erb
103
+ - templates/default/layout/html/project_footer.erb
104
+ - templates/default/layout/html/project_header.erb
102
105
  - templates/default/layout/html/setup.rb
103
106
  - templates/default/module/html/box_info.erb
104
107
  - templates/default/module/html/children.erb