yard-rubicle 0.1.1
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/README.md +24 -0
- data/lib/yard-rubicle.rb +1 -0
- data/lib/yard/rubicle.rb +3 -0
- data/templates/default/fulldoc/html/css/rubicle-blue-p.png +0 -0
- data/templates/default/fulldoc/html/css/rubicle.css +24 -0
- data/templates/default/fulldoc/html/setup.rb +13 -0
- data/templates/default/layout/html/setup.rb +4 -0
- metadata +104 -0
data/README.md
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
yard-rubicle
|
2
|
+
============
|
3
|
+
|
4
|
+
YARD plugin for template with Rubicle. Rubicle is an unofficial mascot of Programming Language Ruby.
|
5
|
+
|
6
|
+
|
7
|
+
License
|
8
|
+
-------
|
9
|
+
Creative Common 3.0 BY-NC (Attribution-NonCommercial)
|
10
|
+
|
11
|
+
- <http://creativecommons.org/licenses/by-nc/3.0/deed>
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
Website
|
16
|
+
-------
|
17
|
+
- <http://rubicle.net/en/gems.html>
|
18
|
+
- <http://rubicle.net/gems.html> (Japanese Only)
|
19
|
+
|
20
|
+
|
21
|
+
|
22
|
+
Contact
|
23
|
+
-------
|
24
|
+
Please send to <info@rubicle.net> or post to [comment form on following page.](http://rubicle.net/en/gems.html)
|
data/lib/yard-rubicle.rb
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require 'yard/rubicle'
|
data/lib/yard/rubicle.rb
ADDED
Binary file
|
@@ -0,0 +1,24 @@
|
|
1
|
+
body {
|
2
|
+
background: url("rubicle-blue-p.png") fixed no-repeat 85% bottom;
|
3
|
+
}
|
4
|
+
|
5
|
+
h3.signature{
|
6
|
+
background: rgba(229, 232, 255, 0.6);
|
7
|
+
border-radius: 3px;
|
8
|
+
}
|
9
|
+
|
10
|
+
#filecontents dl.box .r1, dl.box .r1{
|
11
|
+
background: rgba(224, 224, 224, 0.6);
|
12
|
+
}
|
13
|
+
|
14
|
+
#toc{
|
15
|
+
background: rgba(255, 255, 255, 0.6);
|
16
|
+
}
|
17
|
+
|
18
|
+
.note{
|
19
|
+
background: rgba(227, 228, 227, 0.6);
|
20
|
+
}
|
21
|
+
|
22
|
+
.summary .summary_signature{
|
23
|
+
background: rgba(220, 220, 240, 0.5);
|
24
|
+
}
|
@@ -0,0 +1,13 @@
|
|
1
|
+
def generate_assets
|
2
|
+
super
|
3
|
+
|
4
|
+
# copy images for stylesheets
|
5
|
+
img_path = 'css/rubicle-blue-p.png'
|
6
|
+
real_path = self.class.find_file(img_path)
|
7
|
+
if File.respond_to?(:binread) then
|
8
|
+
body = File.binread(real_path)
|
9
|
+
else
|
10
|
+
body = open(real_path, 'rb'){|f| f.read}
|
11
|
+
end
|
12
|
+
asset(img_path, body)
|
13
|
+
end
|
metadata
ADDED
@@ -0,0 +1,104 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: yard-rubicle
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Rubicle
|
9
|
+
- RB
|
10
|
+
autorequire:
|
11
|
+
bindir: bin
|
12
|
+
cert_chain: []
|
13
|
+
date: 2012-09-17 00:00:00.000000000 Z
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: yard
|
17
|
+
requirement: !ruby/object:Gem::Requirement
|
18
|
+
none: false
|
19
|
+
requirements:
|
20
|
+
- - ! '>='
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: '0'
|
23
|
+
type: :development
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
none: false
|
27
|
+
requirements:
|
28
|
+
- - ! '>='
|
29
|
+
- !ruby/object:Gem::Version
|
30
|
+
version: '0'
|
31
|
+
- !ruby/object:Gem::Dependency
|
32
|
+
name: jeweler
|
33
|
+
requirement: !ruby/object:Gem::Requirement
|
34
|
+
none: false
|
35
|
+
requirements:
|
36
|
+
- - ! '>='
|
37
|
+
- !ruby/object:Gem::Version
|
38
|
+
version: '0'
|
39
|
+
type: :development
|
40
|
+
prerelease: false
|
41
|
+
version_requirements: !ruby/object:Gem::Requirement
|
42
|
+
none: false
|
43
|
+
requirements:
|
44
|
+
- - ! '>='
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: '0'
|
47
|
+
- !ruby/object:Gem::Dependency
|
48
|
+
name: yard
|
49
|
+
requirement: !ruby/object:Gem::Requirement
|
50
|
+
none: false
|
51
|
+
requirements:
|
52
|
+
- - ! '>='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
type: :runtime
|
56
|
+
prerelease: false
|
57
|
+
version_requirements: !ruby/object:Gem::Requirement
|
58
|
+
none: false
|
59
|
+
requirements:
|
60
|
+
- - ! '>='
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: '0'
|
63
|
+
description: YARD plugin for template with Rubicle. Rubicle is an unofficial mascot
|
64
|
+
of Programming Language Ruby.
|
65
|
+
email: info@rubicle.net
|
66
|
+
executables: []
|
67
|
+
extensions: []
|
68
|
+
extra_rdoc_files:
|
69
|
+
- README.md
|
70
|
+
files:
|
71
|
+
- lib/yard-rubicle.rb
|
72
|
+
- lib/yard/rubicle.rb
|
73
|
+
- templates/default/fulldoc/html/css/rubicle-blue-p.png
|
74
|
+
- templates/default/fulldoc/html/css/rubicle.css
|
75
|
+
- templates/default/fulldoc/html/setup.rb
|
76
|
+
- templates/default/layout/html/setup.rb
|
77
|
+
- README.md
|
78
|
+
homepage: http://rubicle.net/en/gems.html
|
79
|
+
licenses:
|
80
|
+
- CC 3.0 BY-NC
|
81
|
+
post_install_message:
|
82
|
+
rdoc_options: []
|
83
|
+
require_paths:
|
84
|
+
- lib
|
85
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
86
|
+
none: false
|
87
|
+
requirements:
|
88
|
+
- - ! '>='
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
version: '0'
|
91
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
92
|
+
none: false
|
93
|
+
requirements:
|
94
|
+
- - ! '>='
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
requirements: []
|
98
|
+
rubyforge_project:
|
99
|
+
rubygems_version: 1.8.24
|
100
|
+
signing_key:
|
101
|
+
specification_version: 3
|
102
|
+
summary: YARD plugin for template with Rubicle (Rubicle is an unofficial mascot of
|
103
|
+
Ruby)
|
104
|
+
test_files: []
|