yard-nowpunk 0.2.16 → 0.2.17
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/VERSION +1 -1
- data/templates/default/layout/html/layout.erb +22 -6
- data/yard-nowpunk.gemspec +1 -1
- metadata +2 -2
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.17
|
|
@@ -1,10 +1,24 @@
|
|
|
1
1
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
2
|
-
|
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
3
3
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
4
4
|
<head>
|
|
5
|
-
<link href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css" rel="stylesheet"
|
|
6
|
-
<link href="http://twitter.github.com/bootstrap/assets/css/bootstrap-responsive.css" rel="stylesheet"
|
|
5
|
+
<link href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css" rel="stylesheet" />
|
|
6
|
+
<link href="http://twitter.github.com/bootstrap/assets/css/bootstrap-responsive.css" rel="stylesheet" />
|
|
7
|
+
|
|
8
|
+
<meta http-equiv="Content-Type" content="text/html; charset=<%= charset %>" />
|
|
9
|
+
<title>
|
|
10
|
+
<%= h @page_title %>
|
|
11
|
+
<% if options.title && @page_title != options.title %>
|
|
12
|
+
— <%= h options.title %>
|
|
13
|
+
<% end %>
|
|
14
|
+
</title>
|
|
15
|
+
<% stylesheets.each do |stylesheet| %>
|
|
16
|
+
<link rel="stylesheet" href="<%= url_for(stylesheet) %>" type="text/css" media="screen" charset="utf-8" />
|
|
17
|
+
<% end %>
|
|
18
|
+
|
|
19
|
+
<%= erb :script_setup %>
|
|
7
20
|
</head>
|
|
21
|
+
|
|
8
22
|
<body>
|
|
9
23
|
<div id="header">
|
|
10
24
|
<%= erb(:breadcrumb) %>
|
|
@@ -15,11 +29,13 @@
|
|
|
15
29
|
<iframe id="search_frame"></iframe>
|
|
16
30
|
|
|
17
31
|
<div id="content" class="container">
|
|
18
|
-
|
|
19
|
-
<%= yieldall %>
|
|
20
|
-
</div>
|
|
32
|
+
<%= yieldall %>
|
|
21
33
|
</div>
|
|
22
34
|
|
|
23
35
|
<%= erb(:footer) %>
|
|
36
|
+
|
|
37
|
+
<% javascripts.each do |javascript| %>
|
|
38
|
+
<script type="text/javascript" charset="utf-8" src="<%= url_for(javascript) %>"></script>
|
|
39
|
+
<% end %>
|
|
24
40
|
</body>
|
|
25
41
|
</html>
|
data/yard-nowpunk.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: yard-nowpunk
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.17
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -97,7 +97,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
97
97
|
version: '0'
|
|
98
98
|
segments:
|
|
99
99
|
- 0
|
|
100
|
-
hash:
|
|
100
|
+
hash: 2925229804027379898
|
|
101
101
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
102
102
|
none: false
|
|
103
103
|
requirements:
|