rabbit-slide-rabbit-theme-benchmark-en 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -38,7 +38,7 @@ if presentation_date
38
38
  version = parsed_presentation_date.strftime("%Y.%m.%d")
39
39
  end
40
40
  end
41
- version ||= "1.0.0"
41
+ version ||= "1.0.1"
42
42
 
43
43
  name = config["name"]
44
44
  email = config["email"]
data/config.yaml CHANGED
@@ -7,5 +7,5 @@ name: Rabbit
7
7
  presentation_date:
8
8
  email: lavie@rabbit-shockers.org
9
9
  rubygems_user: rabbit
10
- slideshare_user: kou
10
+ slideshare_user:
11
11
  speaker_deck_user:
@@ -0,0 +1,100 @@
1
+ ! Theme Benchmark
2
+
3
+ :author:Kouhei Sutou
4
+ :institution:COZMIXNG
5
+ :date:2007/06/24
6
+ :allotted-time:10m
7
+
8
+ ! What is this?
9
+
10
+ For benchmarking a theme
11
+ * includes basic elements
12
+
13
+ ! Itemization
14
+
15
+ * Level 1-1
16
+ ** Level 2-1
17
+ ** Level 2-2
18
+ *** Level 3
19
+ ** Level 1-2
20
+
21
+ ! Enumeration
22
+
23
+ # Level 1-1
24
+ ## Level 2-1
25
+ ## Level 2-2
26
+ ### Level 3
27
+ # Level 1-2
28
+
29
+ ! Composite List
30
+
31
+ # Level 1-1
32
+ ** Level 2-1
33
+ ** Level 2-2
34
+ *** Level 3
35
+ # Level 1-2
36
+
37
+ ! Description List
38
+
39
+ :Lavie:The mascot of Rabbit
40
+ :Shockers:Rabbit User's Group
41
+
42
+ ! Image
43
+
44
+ {{image("lavie.png",
45
+ :relative_height => 100)}}
46
+
47
+ ! Image with caption
48
+
49
+ {{image("lavie.png",
50
+ :caption => "Lavie",
51
+ :relative_height => 100)}}
52
+
53
+ ! Pre-formatted Text
54
+
55
+ <<<
56
+ require 'drb'
57
+ uri =
58
+ 'druby://localhost:10101/'
59
+ rabbit =
60
+ DRbObject.new_with_uri(uri)
61
+ rabbit.move_to_next_if_can
62
+ >>>
63
+
64
+ ! Source
65
+
66
+ <<< ruby
67
+ class You
68
+ def love?(it)
69
+ it == "Rabbit"
70
+ end
71
+ end
72
+ >>>
73
+
74
+ ! Quotation with title
75
+
76
+ "" You take the ''red pill'', you stay in Wonderland and
77
+ "" I show you how deep the ''rabbit-hole'' goes.
78
+
79
+ ! Quotation with item.
80
+
81
+ "" Itemization in quotation
82
+ "" * Level 1
83
+
84
+ ! Table
85
+
86
+ ||!Caption 1||!Caption 2||
87
+ ||Content 1-1||Content 2-1||
88
+ ||Content 1-2||Content 2-2||
89
+
90
+ ! Only Title
91
+
92
+ ! The last slide
93
+
94
+ New themes are welcome
95
+
96
+ * ==COMPLETENESS==
97
+ ** OK: unsupported elements
98
+ ** e.g. composite list
99
+
100
+ New ideas are welcome too
data/theme-benchmark.rab CHANGED
@@ -1,29 +1,127 @@
1
- = TITLE
1
+ = Theme Benchmark
2
2
 
3
- # : subtitle
4
- # SUBTITLE
5
3
  : author
6
- Rabbit
7
- # : institution
8
- # INSTITUTION
9
- # : content-source
10
- # EVENT NAME
11
- # : date
12
- # 2012/08/27
13
- # : allotted-time
14
- # 5m
15
- # : theme
16
- # default
4
+ Kouhei Sutou
17
5
 
6
+ : institution
7
+ COZMIXNG
18
8
 
19
- = TITLE
9
+ : date
10
+ 2007/06/24
20
11
 
21
- * ITEM 1
22
- * ITEM 2
23
- * ITEM 3
12
+ : allotted-time
13
+ 10m
24
14
 
25
- = TITLE
15
+ = What is this?
16
+
17
+ For benchmarking a theme
18
+
19
+ * includes basic elements
20
+
21
+ = Itemization
22
+
23
+ * Level 1-1
24
+ * Level 2-1
25
+ * Level 2-2
26
+ * Level 3
27
+ * Level 1-2
28
+
29
+ = Enumeration
30
+
31
+ (1) Level 1-1
32
+ (1) Level 2-1
33
+ (1) Level 2-2
34
+ (1) Level 3
35
+ (1) Level 1-2
36
+
37
+ = Composite List
38
+
39
+ (1) Level 1-1
40
+ * Level 2-1
41
+ * Level 2-2
42
+ * Level 3
43
+ (1) Level 1-2
44
+
45
+ = Description List
46
+
47
+ : Lavie
48
+ The mascot of Rabbit
49
+
50
+ : Shockers
51
+ Rabbit User's Group
52
+
53
+ = Desc. List + Enum.
54
+
55
+ : Label 1
56
+ * Level 1-1
57
+ * Level 1-2
58
+
59
+ : Label 2
60
+ * Level 1-1
61
+ * Level 1-2
62
+
63
+ = Image
64
+
65
+ # image
66
+ # src = lavie.png
67
+ # relative_height = 100
68
+
69
+ = Image with caption
26
70
 
27
71
  # image
28
- # src = https://raw.github.com/shockers/rabbit/master/sample/lavie.png
72
+ # src = lavie.png
73
+ # caption = Lavie
29
74
  # relative_height = 100
75
+
76
+ = Pre-formatted Text
77
+
78
+ require 'drb'
79
+ uri =
80
+ 'druby://localhost:10101/'
81
+ rabbit =
82
+ DRbObject.new_with_uri(uri)
83
+ rabbit.move_to_next_if_can
84
+
85
+ = Source
86
+
87
+ # coderay ruby
88
+ class You
89
+ def love?(it)
90
+ it == "Rabbit"
91
+ end
92
+ end
93
+
94
+ = Quotation with title
95
+
96
+ # blockquote
97
+ # title = The Matrix
98
+ You take the ((*red pill*)), you stay in Wonderland and
99
+ I show you how deep the ((*rabbit-hole*)) goes.
100
+
101
+ = Quotation with item.
102
+
103
+ # blockquote
104
+ Itemization in quotation
105
+ * Level 1
106
+
107
+ = Table
108
+
109
+ # RT
110
+ caption = A Simple Table
111
+
112
+ Caption 1, Caption 2
113
+
114
+ Content 1-1, Content 2-1
115
+ Content 1-2, Content 2-2
116
+
117
+ = Only Title
118
+
119
+ = The last slide
120
+
121
+ New themes are welcome
122
+
123
+ * (('del:COMPLETENESS'))
124
+ * OK: unsupported elements
125
+ * e.g. composite list
126
+
127
+ New ideas are welcome too
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rabbit-slide-rabbit-theme-benchmark-en
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -44,6 +44,7 @@ files:
44
44
  - README.rd
45
45
  - lavie.png
46
46
  - theme-benchmark.rab
47
+ - theme-benchmark.hiki
47
48
  homepage: http://slide.rabbit-shockers.org/rabbit/theme-benchmark-en/
48
49
  licenses:
49
50
  - GPLv3+