imedo-css_doc 0.0.4 → 0.0.5

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.
@@ -1,5 +1,5 @@
1
1
  module CSSDoc
2
2
  class DocumentDocumentation < Documentation
3
- define_tag :file, :note, :appdef, :link, :copyright, :author, :css_for, :version
3
+ define_tag :file, :note, :appdef, :link, :copyright, :author, :css_for, :version, :date, :license
4
4
  end
5
5
  end
@@ -25,6 +25,14 @@
25
25
  <dt>Version</dt>
26
26
  <dd><%= @document.documentation.author %></dd>
27
27
  <% end %>
28
+ <% if @document.documentation.date %>
29
+ <dt>Date</dt>
30
+ <dd><%= @document.documentation.date %></dd>
31
+ <% end %>
32
+ <% if @document.documentation.license %>
33
+ <dt>License</dt>
34
+ <dd><%= @document.documentation.license %></dd>
35
+ <% end %>
28
36
  </dl>
29
37
 
30
38
  <%= @document.documentation.sections.to_html %>
@@ -25,6 +25,14 @@
25
25
  <dt>Version</dt>
26
26
  <dd><%= @document.documentation.author %></dd>
27
27
  <% end %>
28
+ <% if @document.documentation.date %>
29
+ <dt>Date</dt>
30
+ <dd><%= @document.documentation.date %></dd>
31
+ <% end %>
32
+ <% if @document.documentation.license %>
33
+ <dt>License</dt>
34
+ <dd><%= @document.documentation.license %></dd>
35
+ <% end %>
28
36
  </dl>
29
37
 
30
38
  <%= @document.documentation.sections.to_html %>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: imedo-css_doc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thomas Kadauke
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-07-19 00:00:00 -07:00
12
+ date: 2009-07-29 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
@@ -53,6 +53,7 @@ files:
53
53
  - src/templates/simple/selector_index.html.erb
54
54
  has_rdoc: false
55
55
  homepage: http://www.imedo.de
56
+ licenses:
56
57
  post_install_message:
57
58
  rdoc_options: []
58
59
 
@@ -73,7 +74,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
74
  requirements: []
74
75
 
75
76
  rubyforge_project:
76
- rubygems_version: 1.2.0
77
+ rubygems_version: 1.3.5
77
78
  signing_key:
78
79
  specification_version: 2
79
80
  summary: Documentation generator for CSS files, similar to Javadoc or RDoc.