rabbit-slide-kou-rubykaigi-2018 2018.6.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.rabbit +1 -0
- data/README.rd +47 -0
- data/Rakefile +17 -0
- data/config.yaml +22 -0
- data/images/bindings-by-gobject-introspection.svg +499 -0
- data/images/bindings-by-swig.svg +273 -0
- data/images/cairo-gc-trigger.pdf +0 -0
- data/images/cairo-no-gc-trigger.pdf +0 -0
- data/images/clear-code-rubykaigi-2018-silver-sponsor.png +0 -0
- data/images/code-party.png +0 -0
- data/images/jekyll-task-i18n-red-data-tools.gif +0 -0
- data/images/pdf-clickable.png +0 -0
- data/images/rabbit-slide-show.png +0 -0
- data/images/ruby-gtk3-with-ruby-gi.svg +411 -0
- data/images/ruby-gtk3-without-ruby-gi.svg +313 -0
- data/images/rubykaigi-2017-extension-by-cpp-title.pdf +1853 -4
- data/images/rurema-search.png +0 -0
- data/images/shocker.jpeg +0 -0
- data/images/the-tortoise-and-the-hare-fast.png +0 -0
- data/images/the-tortoise-and-the-hare-good.png +0 -0
- data/images/the-tortoise-and-the-hare-hare.png +0 -0
- data/images/the-tortoise-and-the-hare-raw.png +0 -0
- data/images/the-tortoise-and-the-hare-slow.png +0 -0
- data/images/the-tortoise-and-the-hare-tortoise.png +0 -0
- data/images/the-tortoise-and-the-hare.gif +0 -0
- data/images/the-tortoise-and-the-hare.png +0 -0
- data/interface.rab +614 -0
- data/my-way-with-ruby.rab +1668 -0
- data/pdf/rubykaigi-2018-my-way-with-ruby.pdf +0 -0
- data/theme.rb +4 -0
- metadata +108 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 0fb47212fe484822ad115b9e189a7055043c6021ecb66fba3643aea51e50271c
|
4
|
+
data.tar.gz: ef98084992f94667284d37c06c69ee4be810083632765f54ffe93556120fb030
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: db96201dadb0ee4fe1833676cb876973fa79bf31b0e18d44b9dbfd83eb4e60b47d90147c4bfce6d79c423b0050ceac5c74f66502f94bf0bc1ca213d377cecaad
|
7
|
+
data.tar.gz: 8e9f2df982cf732242908bf1213aeb2ecb82c4efa1e0981af944465dab528ae9612a08c72fd3e3b35004e5faa564b4f777e6c95643bdaaca530357dc6dcb2c55
|
data/.rabbit
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
my-way-with-ruby.rab
|
data/README.rd
ADDED
@@ -0,0 +1,47 @@
|
|
1
|
+
= My way with Ruby
|
2
|
+
|
3
|
+
Here are my activities as a Rubyist:
|
4
|
+
|
5
|
+
* Increase what Ruby can
|
6
|
+
* Maintain libraries
|
7
|
+
|
8
|
+
In this talk, I introduce my activities.
|
9
|
+
|
10
|
+
== License
|
11
|
+
|
12
|
+
=== Slide
|
13
|
+
|
14
|
+
CC BY-SA 4.0
|
15
|
+
|
16
|
+
Use the followings for notation of the author:
|
17
|
+
|
18
|
+
* Kouhei Sutou
|
19
|
+
|
20
|
+
==== ClearCode Inc. logo
|
21
|
+
|
22
|
+
CC BY-SA 4.0
|
23
|
+
|
24
|
+
Author: ClearCode Inc.
|
25
|
+
|
26
|
+
It is used in page header and some pages in the slide.
|
27
|
+
|
28
|
+
== For author
|
29
|
+
|
30
|
+
=== Show
|
31
|
+
|
32
|
+
rake
|
33
|
+
|
34
|
+
=== Publish
|
35
|
+
|
36
|
+
rake publish
|
37
|
+
|
38
|
+
== For viewers
|
39
|
+
|
40
|
+
=== Install
|
41
|
+
|
42
|
+
gem install rabbit-slide-kou-rubykaigi-2018
|
43
|
+
|
44
|
+
=== Show
|
45
|
+
|
46
|
+
rabbit rabbit-slide-kou-rubykaigi-2018.gem
|
47
|
+
|
data/Rakefile
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
require "rabbit/task/slide"
|
2
|
+
|
3
|
+
# Edit ./config.yaml to customize meta data
|
4
|
+
|
5
|
+
spec = nil
|
6
|
+
Rabbit::Task::Slide.new do |task|
|
7
|
+
spec = task.spec
|
8
|
+
# spec.files += Dir.glob("doc/**/*.*")
|
9
|
+
# spec.files -= Dir.glob("private/**/*.*")
|
10
|
+
spec.add_runtime_dependency("rabbit-theme-clear-code")
|
11
|
+
end
|
12
|
+
|
13
|
+
desc "Tag #{spec.version}"
|
14
|
+
task :tag do
|
15
|
+
sh("git", "tag", "-a", spec.version.to_s, "-m", "Publish #{spec.version}")
|
16
|
+
sh("git", "push", "--tags")
|
17
|
+
end
|
data/config.yaml
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
---
|
2
|
+
id: rubykaigi-2018
|
3
|
+
base_name: my-way-with-ruby
|
4
|
+
tags:
|
5
|
+
- rabbit
|
6
|
+
- rubykaigi
|
7
|
+
presentation_date: 2018-06-01
|
8
|
+
version: 2018.6.1.0
|
9
|
+
licenses:
|
10
|
+
- CC-BY-SA-4.0
|
11
|
+
slideshare_id:
|
12
|
+
speaker_deck_id:
|
13
|
+
ustream_id:
|
14
|
+
vimeo_id:
|
15
|
+
youtube_id:
|
16
|
+
author:
|
17
|
+
markup_language: :rd
|
18
|
+
name: Kouhei Sutou
|
19
|
+
email: kou@clear-code.com
|
20
|
+
rubygems_user: kou
|
21
|
+
slideshare_user: kou
|
22
|
+
speaker_deck_user:
|
@@ -0,0 +1,499 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
3
|
+
|
4
|
+
<svg
|
5
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
6
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
7
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
8
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
10
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
11
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
12
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
13
|
+
width="282.01251mm"
|
14
|
+
height="139.731mm"
|
15
|
+
viewBox="0 0 999.25693 495.10985"
|
16
|
+
id="svg2"
|
17
|
+
version="1.1"
|
18
|
+
inkscape:version="0.91 r13725"
|
19
|
+
sodipodi:docname="bindings-by-gobject-introspection.svg">
|
20
|
+
<defs
|
21
|
+
id="defs4">
|
22
|
+
<linearGradient
|
23
|
+
inkscape:collect="always"
|
24
|
+
id="linearGradient7052">
|
25
|
+
<stop
|
26
|
+
style="stop-color:#4e9a06;stop-opacity:1;"
|
27
|
+
offset="0"
|
28
|
+
id="stop7054" />
|
29
|
+
<stop
|
30
|
+
style="stop-color:#a40000;stop-opacity:1"
|
31
|
+
offset="1"
|
32
|
+
id="stop7056" />
|
33
|
+
</linearGradient>
|
34
|
+
<marker
|
35
|
+
inkscape:isstock="true"
|
36
|
+
style="overflow:visible"
|
37
|
+
id="marker6497"
|
38
|
+
refX="0"
|
39
|
+
refY="0"
|
40
|
+
orient="auto"
|
41
|
+
inkscape:stockid="Arrow1Mend">
|
42
|
+
<path
|
43
|
+
transform="matrix(-0.4,0,0,-0.4,-4,0)"
|
44
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
|
45
|
+
d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
|
46
|
+
id="path6499"
|
47
|
+
inkscape:connector-curvature="0" />
|
48
|
+
</marker>
|
49
|
+
<marker
|
50
|
+
inkscape:stockid="Arrow1Mend"
|
51
|
+
orient="auto"
|
52
|
+
refY="0"
|
53
|
+
refX="0"
|
54
|
+
id="marker5327"
|
55
|
+
style="overflow:visible"
|
56
|
+
inkscape:isstock="true"
|
57
|
+
inkscape:collect="always">
|
58
|
+
<path
|
59
|
+
inkscape:connector-curvature="0"
|
60
|
+
id="path5329"
|
61
|
+
d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
|
62
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
|
63
|
+
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
|
64
|
+
</marker>
|
65
|
+
<marker
|
66
|
+
inkscape:stockid="Arrow1Mstart"
|
67
|
+
orient="auto"
|
68
|
+
refY="0"
|
69
|
+
refX="0"
|
70
|
+
id="marker5257"
|
71
|
+
style="overflow:visible"
|
72
|
+
inkscape:isstock="true">
|
73
|
+
<path
|
74
|
+
inkscape:connector-curvature="0"
|
75
|
+
id="path5259"
|
76
|
+
d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
|
77
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
|
78
|
+
transform="matrix(0.4,0,0,0.4,4,0)" />
|
79
|
+
</marker>
|
80
|
+
<marker
|
81
|
+
inkscape:stockid="Arrow1Mend"
|
82
|
+
orient="auto"
|
83
|
+
refY="0"
|
84
|
+
refX="0"
|
85
|
+
id="marker5071"
|
86
|
+
style="overflow:visible"
|
87
|
+
inkscape:isstock="true">
|
88
|
+
<path
|
89
|
+
id="path5073"
|
90
|
+
d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
|
91
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
|
92
|
+
transform="matrix(-0.4,0,0,-0.4,-4,0)"
|
93
|
+
inkscape:connector-curvature="0" />
|
94
|
+
</marker>
|
95
|
+
<marker
|
96
|
+
inkscape:isstock="true"
|
97
|
+
style="overflow:visible"
|
98
|
+
id="marker4496"
|
99
|
+
refX="0"
|
100
|
+
refY="0"
|
101
|
+
orient="auto"
|
102
|
+
inkscape:stockid="Arrow1Mend"
|
103
|
+
inkscape:collect="always">
|
104
|
+
<path
|
105
|
+
inkscape:connector-curvature="0"
|
106
|
+
transform="matrix(-0.4,0,0,-0.4,-4,0)"
|
107
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
|
108
|
+
d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
|
109
|
+
id="path4498" />
|
110
|
+
</marker>
|
111
|
+
<marker
|
112
|
+
inkscape:isstock="true"
|
113
|
+
style="overflow:visible"
|
114
|
+
id="marker4444"
|
115
|
+
refX="0"
|
116
|
+
refY="0"
|
117
|
+
orient="auto"
|
118
|
+
inkscape:stockid="Arrow1Mstart">
|
119
|
+
<path
|
120
|
+
inkscape:connector-curvature="0"
|
121
|
+
transform="matrix(0.4,0,0,0.4,4,0)"
|
122
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
|
123
|
+
d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
|
124
|
+
id="path4446" />
|
125
|
+
</marker>
|
126
|
+
<marker
|
127
|
+
inkscape:isstock="true"
|
128
|
+
style="overflow:visible"
|
129
|
+
id="marker4240"
|
130
|
+
refX="0"
|
131
|
+
refY="0"
|
132
|
+
orient="auto"
|
133
|
+
inkscape:stockid="Arrow1Mend">
|
134
|
+
<path
|
135
|
+
inkscape:connector-curvature="0"
|
136
|
+
transform="matrix(-0.4,0,0,-0.4,-4,0)"
|
137
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
|
138
|
+
d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
|
139
|
+
id="path4242" />
|
140
|
+
</marker>
|
141
|
+
<marker
|
142
|
+
inkscape:isstock="true"
|
143
|
+
style="overflow:visible"
|
144
|
+
id="marker4200"
|
145
|
+
refX="0"
|
146
|
+
refY="0"
|
147
|
+
orient="auto"
|
148
|
+
inkscape:stockid="Arrow1Mstart">
|
149
|
+
<path
|
150
|
+
inkscape:connector-curvature="0"
|
151
|
+
transform="matrix(0.4,0,0,0.4,4,0)"
|
152
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
|
153
|
+
d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
|
154
|
+
id="path4202" />
|
155
|
+
</marker>
|
156
|
+
<marker
|
157
|
+
inkscape:isstock="true"
|
158
|
+
style="overflow:visible"
|
159
|
+
id="marker4625"
|
160
|
+
refX="0"
|
161
|
+
refY="0"
|
162
|
+
orient="auto"
|
163
|
+
inkscape:stockid="Arrow1Mend"
|
164
|
+
inkscape:collect="always">
|
165
|
+
<path
|
166
|
+
transform="matrix(-0.4,0,0,-0.4,-4,0)"
|
167
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
|
168
|
+
d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
|
169
|
+
id="path4627"
|
170
|
+
inkscape:connector-curvature="0" />
|
171
|
+
</marker>
|
172
|
+
<marker
|
173
|
+
inkscape:isstock="true"
|
174
|
+
style="overflow:visible"
|
175
|
+
id="marker4597"
|
176
|
+
refX="0"
|
177
|
+
refY="0"
|
178
|
+
orient="auto"
|
179
|
+
inkscape:stockid="Arrow1Mstart"
|
180
|
+
inkscape:collect="always">
|
181
|
+
<path
|
182
|
+
transform="matrix(0.4,0,0,0.4,4,0)"
|
183
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
|
184
|
+
d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
|
185
|
+
id="path4599"
|
186
|
+
inkscape:connector-curvature="0" />
|
187
|
+
</marker>
|
188
|
+
<marker
|
189
|
+
inkscape:stockid="Arrow1Mend"
|
190
|
+
orient="auto"
|
191
|
+
refY="0"
|
192
|
+
refX="0"
|
193
|
+
id="Arrow1Mend"
|
194
|
+
style="overflow:visible"
|
195
|
+
inkscape:isstock="true"
|
196
|
+
inkscape:collect="always">
|
197
|
+
<path
|
198
|
+
id="path4188"
|
199
|
+
d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
|
200
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
|
201
|
+
transform="matrix(-0.4,0,0,-0.4,-4,0)"
|
202
|
+
inkscape:connector-curvature="0" />
|
203
|
+
</marker>
|
204
|
+
<marker
|
205
|
+
inkscape:stockid="Arrow1Mstart"
|
206
|
+
orient="auto"
|
207
|
+
refY="0"
|
208
|
+
refX="0"
|
209
|
+
id="Arrow1Mstart"
|
210
|
+
style="overflow:visible"
|
211
|
+
inkscape:isstock="true"
|
212
|
+
inkscape:collect="always">
|
213
|
+
<path
|
214
|
+
id="path4185"
|
215
|
+
d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
|
216
|
+
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
|
217
|
+
transform="matrix(0.4,0,0,0.4,4,0)"
|
218
|
+
inkscape:connector-curvature="0" />
|
219
|
+
</marker>
|
220
|
+
<linearGradient
|
221
|
+
inkscape:collect="always"
|
222
|
+
xlink:href="#linearGradient7052"
|
223
|
+
id="linearGradient7058"
|
224
|
+
x1="494.21725"
|
225
|
+
y1="528.21021"
|
226
|
+
x2="494.21725"
|
227
|
+
y2="471.31985"
|
228
|
+
gradientUnits="userSpaceOnUse" />
|
229
|
+
</defs>
|
230
|
+
<sodipodi:namedview
|
231
|
+
id="base"
|
232
|
+
pagecolor="#ffffff"
|
233
|
+
bordercolor="#666666"
|
234
|
+
borderopacity="1.0"
|
235
|
+
inkscape:pageopacity="0.0"
|
236
|
+
inkscape:pageshadow="2"
|
237
|
+
inkscape:zoom="0.7"
|
238
|
+
inkscape:cx="397.05933"
|
239
|
+
inkscape:cy="287.76469"
|
240
|
+
inkscape:document-units="px"
|
241
|
+
inkscape:current-layer="layer1"
|
242
|
+
showgrid="false"
|
243
|
+
showguides="false"
|
244
|
+
fit-margin-top="5"
|
245
|
+
fit-margin-left="5"
|
246
|
+
fit-margin-right="5"
|
247
|
+
fit-margin-bottom="5"
|
248
|
+
inkscape:window-width="1920"
|
249
|
+
inkscape:window-height="1016"
|
250
|
+
inkscape:window-x="1920"
|
251
|
+
inkscape:window-y="27"
|
252
|
+
inkscape:window-maximized="1" />
|
253
|
+
<metadata
|
254
|
+
id="metadata7">
|
255
|
+
<rdf:RDF>
|
256
|
+
<cc:Work
|
257
|
+
rdf:about="">
|
258
|
+
<dc:format>image/svg+xml</dc:format>
|
259
|
+
<dc:type
|
260
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
261
|
+
<dc:title></dc:title>
|
262
|
+
</cc:Work>
|
263
|
+
</rdf:RDF>
|
264
|
+
</metadata>
|
265
|
+
<g
|
266
|
+
inkscape:label="レイヤー 1"
|
267
|
+
inkscape:groupmode="layer"
|
268
|
+
id="layer1"
|
269
|
+
transform="translate(254.58207,-150.79068)">
|
270
|
+
<circle
|
271
|
+
style="opacity:1;fill:none;fill-opacity:1;stroke:#4e9a06;stroke-width:3;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
272
|
+
id="path4136"
|
273
|
+
cx="116.16754"
|
274
|
+
cy="347.27573"
|
275
|
+
r="100.0051" />
|
276
|
+
<text
|
277
|
+
xml:space="preserve"
|
278
|
+
style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
279
|
+
x="24.345184"
|
280
|
+
y="362.42801"
|
281
|
+
id="text4138"
|
282
|
+
sodipodi:linespacing="125%"><tspan
|
283
|
+
sodipodi:role="line"
|
284
|
+
id="tspan4140"
|
285
|
+
x="24.345184"
|
286
|
+
y="362.42801">libghello</tspan></text>
|
287
|
+
<circle
|
288
|
+
r="100.0051"
|
289
|
+
cy="347.27573"
|
290
|
+
cx="625.45325"
|
291
|
+
id="circle4142"
|
292
|
+
style="opacity:1;fill:none;fill-opacity:1;stroke:#a40000;stroke-width:3;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
293
|
+
<text
|
294
|
+
xml:space="preserve"
|
295
|
+
style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
296
|
+
x="585"
|
297
|
+
y="365.21933"
|
298
|
+
id="text4144"
|
299
|
+
sodipodi:linespacing="125%"><tspan
|
300
|
+
sodipodi:role="line"
|
301
|
+
id="tspan4146"
|
302
|
+
x="585"
|
303
|
+
y="365.21933">Ruby</tspan></text>
|
304
|
+
<circle
|
305
|
+
r="100.0051"
|
306
|
+
cy="347.27573"
|
307
|
+
cx="370.38147"
|
308
|
+
id="circle4159"
|
309
|
+
style="opacity:1;fill:none;fill-opacity:1;stroke:#a40000;stroke-width:3;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
310
|
+
<text
|
311
|
+
xml:space="preserve"
|
312
|
+
style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
313
|
+
x="291.35678"
|
314
|
+
y="362.36221"
|
315
|
+
id="text4161"
|
316
|
+
sodipodi:linespacing="125%"><tspan
|
317
|
+
sodipodi:role="line"
|
318
|
+
id="tspan4163"
|
319
|
+
x="291.35678"
|
320
|
+
y="362.36221">Bindings</tspan></text>
|
321
|
+
<text
|
322
|
+
xml:space="preserve"
|
323
|
+
style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
324
|
+
x="370.32559"
|
325
|
+
y="219.41225"
|
326
|
+
id="text4165"
|
327
|
+
sodipodi:linespacing="125%"><tspan
|
328
|
+
sodipodi:role="line"
|
329
|
+
x="370.32559"
|
330
|
+
y="219.41225"
|
331
|
+
id="tspan4385">Generated by gi(*) gem at runtime</tspan></text>
|
332
|
+
<path
|
333
|
+
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#Arrow1Mstart);marker-end:url(#Arrow1Mend)"
|
334
|
+
d="m 224.04061,353.79078 34.28571,0"
|
335
|
+
id="path4173"
|
336
|
+
inkscape:connector-curvature="0" />
|
337
|
+
<path
|
338
|
+
inkscape:connector-curvature="0"
|
339
|
+
id="path4595"
|
340
|
+
d="m 477.61204,353.79078 34.28571,0"
|
341
|
+
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker4597);marker-end:url(#marker4625)" />
|
342
|
+
<text
|
343
|
+
sodipodi:linespacing="125%"
|
344
|
+
id="text4194"
|
345
|
+
y="510.00159"
|
346
|
+
x="138.39091"
|
347
|
+
style="font-style:normal;font-weight:normal;font-size:30px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
348
|
+
xml:space="preserve"><tspan
|
349
|
+
y="510.00159"
|
350
|
+
x="138.39091"
|
351
|
+
id="tspan4196"
|
352
|
+
sodipodi:role="line">Hello.typelib</tspan></text>
|
353
|
+
<ellipse
|
354
|
+
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:2.14468646;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
355
|
+
id="circle4311"
|
356
|
+
cx="107.11356"
|
357
|
+
cy="585.26776"
|
358
|
+
rx="122.15103"
|
359
|
+
ry="41.843906" />
|
360
|
+
<text
|
361
|
+
xml:space="preserve"
|
362
|
+
style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
363
|
+
x="11.092135"
|
364
|
+
y="596.37939"
|
365
|
+
id="text4313"
|
366
|
+
sodipodi:linespacing="125%"><tspan
|
367
|
+
sodipodi:role="line"
|
368
|
+
id="tspan4315"
|
369
|
+
x="11.092135"
|
370
|
+
y="596.37939">Annotation</tspan></text>
|
371
|
+
<text
|
372
|
+
xml:space="preserve"
|
373
|
+
style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
374
|
+
x="-208.10484"
|
375
|
+
y="507.56186"
|
376
|
+
id="text4335"
|
377
|
+
sodipodi:linespacing="125%"><tspan
|
378
|
+
sodipodi:role="line"
|
379
|
+
id="tspan4337"
|
380
|
+
x="-208.10484"
|
381
|
+
y="507.56186">g-ir-compiler</tspan></text>
|
382
|
+
<ellipse
|
383
|
+
style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient7058);stroke-width:1.60641336;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
384
|
+
id="circle4363"
|
385
|
+
cx="492.8652"
|
386
|
+
cy="499.80463"
|
387
|
+
rx="100.70189"
|
388
|
+
ry="28.475983" />
|
389
|
+
<text
|
390
|
+
xml:space="preserve"
|
391
|
+
style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
392
|
+
x="496.2623"
|
393
|
+
y="507.97253"
|
394
|
+
id="text4365"
|
395
|
+
sodipodi:linespacing="125%"><tspan
|
396
|
+
sodipodi:role="line"
|
397
|
+
x="496.2623"
|
398
|
+
y="507.97253"
|
399
|
+
id="tspan4383">gi gem</tspan></text>
|
400
|
+
<text
|
401
|
+
xml:space="preserve"
|
402
|
+
style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
403
|
+
x="396.71378"
|
404
|
+
y="183.90721"
|
405
|
+
id="text4389"
|
406
|
+
sodipodi:linespacing="125%"><tspan
|
407
|
+
sodipodi:role="line"
|
408
|
+
id="tspan4391"
|
409
|
+
x="396.71378"
|
410
|
+
y="183.90721">(*) gi = gobject-introspection</tspan></text>
|
411
|
+
<text
|
412
|
+
xml:space="preserve"
|
413
|
+
style="font-style:normal;font-weight:normal;font-size:30px;line-height:100%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
414
|
+
x="118.92928"
|
415
|
+
y="293.4567"
|
416
|
+
id="text4401"
|
417
|
+
sodipodi:linespacing="100%"><tspan
|
418
|
+
sodipodi:role="line"
|
419
|
+
x="118.92928"
|
420
|
+
y="293.4567"
|
421
|
+
id="tspan4962">GObject</tspan><tspan
|
422
|
+
sodipodi:role="line"
|
423
|
+
x="118.92928"
|
424
|
+
y="323.4567"
|
425
|
+
id="tspan4966">wrapper</tspan></text>
|
426
|
+
<circle
|
427
|
+
r="100.0051"
|
428
|
+
cy="347.27573"
|
429
|
+
cx="-135.36044"
|
430
|
+
id="circle4424"
|
431
|
+
style="opacity:1;fill:none;fill-opacity:1;stroke:#4e9a06;stroke-width:3;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
432
|
+
<text
|
433
|
+
sodipodi:linespacing="125%"
|
434
|
+
id="text4426"
|
435
|
+
y="362.42801"
|
436
|
+
x="-219.96815"
|
437
|
+
style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
438
|
+
xml:space="preserve"><tspan
|
439
|
+
y="362.42801"
|
440
|
+
x="-219.96815"
|
441
|
+
id="tspan4428"
|
442
|
+
sodipodi:role="line">libhello</tspan></text>
|
443
|
+
<path
|
444
|
+
inkscape:connector-curvature="0"
|
445
|
+
id="path4442"
|
446
|
+
d="m -27.487374,353.79078 34.2857104,0"
|
447
|
+
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker4444);marker-end:url(#marker4496)" />
|
448
|
+
<ellipse
|
449
|
+
ry="28.475983"
|
450
|
+
rx="100.70189"
|
451
|
+
cy="586.67786"
|
452
|
+
cx="496.90579"
|
453
|
+
id="ellipse4985"
|
454
|
+
style="opacity:1;fill:none;fill-opacity:1;stroke:#4e9a06;stroke-width:1.60641336;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
455
|
+
<text
|
456
|
+
sodipodi:linespacing="125%"
|
457
|
+
id="text4987"
|
458
|
+
y="594.8457"
|
459
|
+
x="490.70645"
|
460
|
+
style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
461
|
+
xml:space="preserve"><tspan
|
462
|
+
id="tspan4989"
|
463
|
+
y="594.8457"
|
464
|
+
x="490.70645"
|
465
|
+
sodipodi:role="line">gi</tspan></text>
|
466
|
+
<path
|
467
|
+
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
468
|
+
d="m 67.555063,456.45021 0,75.76144"
|
469
|
+
id="path5059"
|
470
|
+
inkscape:connector-curvature="0" />
|
471
|
+
<path
|
472
|
+
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker5071)"
|
473
|
+
d="m 68.21168,497.83673 38.21429,0"
|
474
|
+
id="path5063"
|
475
|
+
inkscape:connector-curvature="0" />
|
476
|
+
<path
|
477
|
+
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker5257);marker-end:url(#marker5327)"
|
478
|
+
d="m 493.74475,561.85247 0,-34.28571"
|
479
|
+
id="path5255"
|
480
|
+
inkscape:connector-curvature="0" />
|
481
|
+
<path
|
482
|
+
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker6497)"
|
483
|
+
d="m 375.51734,496.49736 0,-42.85714"
|
484
|
+
id="path6485"
|
485
|
+
inkscape:connector-curvature="0" />
|
486
|
+
<path
|
487
|
+
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
488
|
+
d="m 365.51734,497.92593 20,0"
|
489
|
+
id="path6487"
|
490
|
+
inkscape:connector-curvature="0" />
|
491
|
+
<ellipse
|
492
|
+
ry="41.843906"
|
493
|
+
rx="122.15103"
|
494
|
+
cy="499.40482"
|
495
|
+
cx="237.42323"
|
496
|
+
id="ellipse6585"
|
497
|
+
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:2.14468646;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
498
|
+
</g>
|
499
|
+
</svg>
|