rabbit-theme-parrot-comment 1.0.0
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.
- checksums.yaml +7 -0
- data/README.html +24 -0
- data/README.rd +23 -0
- data/Rakefile +10 -0
- data/config.yaml +12 -0
- data/pdf/theme-benchmark-en.pdf +0 -0
- data/pdf/theme-benchmark-ja.pdf +0 -0
- data/theme.rb +8 -0
- metadata +73 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 68435955d9f231fd03bfc5f22d2dbc57b4beecafc51c3bfe6f62544d361f9103
|
|
4
|
+
data.tar.gz: c78ae5f4c3ae2a1cb5c167af7ed8bdde61e1606ab7a2b1695137126d98d9e5a6
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 0f40b3f0bc28fdf9586ba8088f8920fc6e135eb0e2c27bb932392f751df9903cc28a25a29fa1a342d37a9da4c4831b3c48646f72fac2d468917c0c3b0d801dd7
|
|
7
|
+
data.tar.gz: 9a6a215ab76522da1ff4e1355093f13a3b37dfc1f61e4d94c2fb2fa070c414f14f6d0882a38cbbbc81fe9629d0af64ffd11648d0d1c855f092ba0f5da35d6a7e
|
data/README.html
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
<?xml version="1.0" ?>
|
|
2
|
+
<!DOCTYPE html
|
|
3
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
4
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
5
|
+
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
6
|
+
<head>
|
|
7
|
+
<title>README.rd</title>
|
|
8
|
+
</head>
|
|
9
|
+
<body>
|
|
10
|
+
<h1><a name="label-0" id="label-0">Parrot Comment</a></h1><!-- RDLabel: "Parrot Comment" -->
|
|
11
|
+
<p>Show comment on the footer for <a href="https://gitlab.com/KitaitiMakoto/parrot">Parrot</a>.</p>
|
|
12
|
+
<h2><a name="label-1" id="label-1">作者向け</a></h2><!-- RDLabel: "作者向け" -->
|
|
13
|
+
<h3><a name="label-2" id="label-2">表示</a></h3><!-- RDLabel: "表示" -->
|
|
14
|
+
<pre>rake</pre>
|
|
15
|
+
<h3><a name="label-3" id="label-3">公開</a></h3><!-- RDLabel: "公開" -->
|
|
16
|
+
<pre>rake publish</pre>
|
|
17
|
+
<h2><a name="label-4" id="label-4">利用者用</a></h2><!-- RDLabel: "利用者用" -->
|
|
18
|
+
<h3><a name="label-5" id="label-5">インストール</a></h3><!-- RDLabel: "インストール" -->
|
|
19
|
+
<pre>gem install rabbit-theme-parrot-comment</pre>
|
|
20
|
+
<h3><a name="label-6" id="label-6">表示</a></h3><!-- RDLabel: "表示" -->
|
|
21
|
+
<pre>rabbit -t rabbit-theme-parrot-comment rabbit-theme-benchmark-ja.gem</pre>
|
|
22
|
+
|
|
23
|
+
</body>
|
|
24
|
+
</html>
|
data/README.rd
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
= Parrot Comment
|
|
2
|
+
|
|
3
|
+
Show comment on the footer for ((<Parrot|URL:https://gitlab.com/KitaitiMakoto/parrot>)).
|
|
4
|
+
|
|
5
|
+
== 作者向け
|
|
6
|
+
|
|
7
|
+
=== 表示
|
|
8
|
+
|
|
9
|
+
rake
|
|
10
|
+
|
|
11
|
+
=== 公開
|
|
12
|
+
|
|
13
|
+
rake publish
|
|
14
|
+
|
|
15
|
+
== 利用者用
|
|
16
|
+
|
|
17
|
+
=== インストール
|
|
18
|
+
|
|
19
|
+
gem install rabbit-theme-parrot-comment
|
|
20
|
+
|
|
21
|
+
=== 表示
|
|
22
|
+
|
|
23
|
+
rabbit -t rabbit-theme-parrot-comment rabbit-theme-benchmark-ja.gem
|
data/Rakefile
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
require "rabbit/task/theme"
|
|
2
|
+
|
|
3
|
+
# Edit ./config.yaml to customize meta data
|
|
4
|
+
|
|
5
|
+
Rabbit::Task::Theme.new do |task|
|
|
6
|
+
# task.spec.licenses = ["CC BY-SA 3.0"]
|
|
7
|
+
# task.spec.files += Dir.glob("doc/**/*.*")
|
|
8
|
+
# task.spec.files -= Dir.glob("private/**/*.*")
|
|
9
|
+
# task.spec.add_runtime_dependency("DEPENDED THEME")
|
|
10
|
+
end
|
data/config.yaml
ADDED
|
Binary file
|
|
Binary file
|
data/theme.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: rabbit-theme-parrot-comment
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Kitaiti Makoto
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: rabbit
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - ">="
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: 2.0.2
|
|
19
|
+
type: :runtime
|
|
20
|
+
prerelease: false
|
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
22
|
+
requirements:
|
|
23
|
+
- - ">="
|
|
24
|
+
- !ruby/object:Gem::Version
|
|
25
|
+
version: 2.0.2
|
|
26
|
+
description: |
|
|
27
|
+
</body>
|
|
28
|
+
</html>
|
|
29
|
+
email:
|
|
30
|
+
- KitaitiMakoto@gmail.com
|
|
31
|
+
executables: []
|
|
32
|
+
extensions: []
|
|
33
|
+
extra_rdoc_files: []
|
|
34
|
+
files:
|
|
35
|
+
- README.html
|
|
36
|
+
- README.rd
|
|
37
|
+
- Rakefile
|
|
38
|
+
- config.yaml
|
|
39
|
+
- pdf/theme-benchmark-en.pdf
|
|
40
|
+
- pdf/theme-benchmark-ja.pdf
|
|
41
|
+
- theme.rb
|
|
42
|
+
homepage: http://theme.rabbit-shocker.org/themes/parrot-comment/
|
|
43
|
+
licenses: []
|
|
44
|
+
metadata: {}
|
|
45
|
+
rdoc_options: []
|
|
46
|
+
require_paths:
|
|
47
|
+
- lib
|
|
48
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
49
|
+
requirements:
|
|
50
|
+
- - ">="
|
|
51
|
+
- !ruby/object:Gem::Version
|
|
52
|
+
version: '0'
|
|
53
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
54
|
+
requirements:
|
|
55
|
+
- - ">="
|
|
56
|
+
- !ruby/object:Gem::Version
|
|
57
|
+
version: '0'
|
|
58
|
+
requirements: []
|
|
59
|
+
rubygems_version: 4.0.16
|
|
60
|
+
specification_version: 4
|
|
61
|
+
summary: '<?xml version="1.0" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
62
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">
|
|
63
|
+
<head> <title>README.rd</title> </head> <body> <h1><a name="label-0" id="label-0">Parrot
|
|
64
|
+
Comment</a></h1><!-- RDLabel: "Parrot Comment" --> <p>Show comment on the footer
|
|
65
|
+
for <a href="https://gitlab.com/KitaitiMakoto/parrot">Parrot</a>.</p> <h2><a name="label-1"
|
|
66
|
+
id="label-1">作者向け</a></h2><!-- RDLabel: "作者向け" --> <h3><a name="label-2" id="label-2">表示</a></h3><!--
|
|
67
|
+
RDLabel: "表示" --> <pre>rake</pre> <h3><a name="label-3" id="label-3">公開</a></h3><!--
|
|
68
|
+
RDLabel: "公開" --> <pre>rake publish</pre> <h2><a name="label-4" id="label-4">利用者用</a></h2><!--
|
|
69
|
+
RDLabel: "利用者用" --> <h3><a name="label-5" id="label-5">インストール</a></h3><!-- RDLabel:
|
|
70
|
+
"インストール" --> <pre>gem install rabbit-theme-parrot-comment</pre> <h3><a name="label-6"
|
|
71
|
+
id="label-6">表示</a></h3><!-- RDLabel: "表示" --> <pre>rabbit -t rabbit-theme-parrot-comment
|
|
72
|
+
rabbit-theme-benchmark-ja.gem</pre>'
|
|
73
|
+
test_files: []
|