rabbit-slide-kou-heroku-meetup-13 2015.1.13.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: d731de1cef180eaf138479de4b82dea7ddb39e9c
4
+ data.tar.gz: e8a380c8b06396b0cac3cc5758b1c086401cd2da
5
+ SHA512:
6
+ metadata.gz: 8eabfb12671f7a9f0f58edfd52fb2fdf72b0fe8dbb0fa55320df0d9e9c0c8f11eb475fb95a8941afe77e55ddd00f7100aa54c3e0c8514a740133294fd244721c
7
+ data.tar.gz: a100e75e58898856ae12eec96f285a2017174cbc4e2fc284780a00ead9c8b4f59cb2d00d609911bc273518b3c13fdc37d95984278ed7b60fe55a0e59fb4c1cd5
data/.rabbit ADDED
@@ -0,0 +1 @@
1
+ groonga-on-heroku.rab
data/README.rd ADDED
@@ -0,0 +1,32 @@
1
+ = HerokuでGroonga
2
+
3
+ Herokuで使える全文検索エンジンGroongaについて紹介します。
4
+
5
+ == ライセンス
6
+
7
+ CC BY-SA 4.0
8
+
9
+ 原著作者名は以下の通りです。
10
+
11
+ * 須藤功平(またはKouhei Sutou)
12
+
13
+ == 作者向け
14
+
15
+ === 表示
16
+
17
+ rake
18
+
19
+ === 公開
20
+
21
+ rake publish
22
+
23
+ == 閲覧者向け
24
+
25
+ === インストール
26
+
27
+ gem install rabbit-slide-kou-heroku-meetup-13
28
+
29
+ === 表示
30
+
31
+ rabbit rabbit-slide-kou-heroku-meetup-13.gem
32
+
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("images/**/*.*")
9
+ # spec.files -= Dir.glob("private/**/*.*")
10
+ spec.add_runtime_dependency("rabbit-theme-groonga")
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,24 @@
1
+ ---
2
+ id: heroku-meetup-13
3
+ base_name: groonga-on-heroku
4
+ tags:
5
+ - rabbit
6
+ - heroku
7
+ - groonga
8
+ - full-text-search
9
+ presentation_date: 2015-01-13
10
+ version: 2015.1.13.0
11
+ licenses:
12
+ - CC BY-SA 4.0
13
+ slideshare_id:
14
+ speaker_deck_id:
15
+ ustream_id:
16
+ vimeo_id:
17
+ youtube_id:
18
+ author:
19
+ markup_language: :rd
20
+ name: Kouhei Sutou
21
+ email: kou@clear-code.com
22
+ rubygems_user: kou
23
+ slideshare_user: kou
24
+ speaker_deck_user: kou
@@ -0,0 +1,109 @@
1
+ = HerokuでGroonga
2
+
3
+ : author
4
+ 須藤功平
5
+ : institution
6
+ クリアコード
7
+ : content-source
8
+ Heroku Meetup #13 新年会
9
+ : date
10
+ 2015-01-13
11
+ : allotted-time
12
+ 5m
13
+ : theme
14
+ groonga
15
+
16
+ = Groonga(ぐるんが)
17
+
18
+ Herokuで使える\n
19
+ 全文検索\n
20
+ エンジン
21
+
22
+ = 特徴1
23
+
24
+ 追加プラグイン\n
25
+ なしで\n
26
+ 日本語対応
27
+
28
+ = 特徴2
29
+
30
+ 組み込める\n
31
+ ↓\n
32
+ SQLite3並に\n
33
+ お手軽
34
+
35
+ = 特徴3
36
+
37
+ サーバーにも\n
38
+ なる\n
39
+ ↓\n
40
+ 大規模でも\n
41
+ 使える
42
+
43
+ = 大規模
44
+
45
+ * livedoor Blog\n
46
+ (('note:http://www.slideshare.net/kazeburo/mroonga-in-ablogservice'))
47
+ * Yahoo! Japan社内\n
48
+ (('note:「全文検索エンジンGroongaを囲む夕べ5」で紹介'))
49
+ * ぐるなび\n
50
+ (('note:「全文検索エンジンGroongaを囲む夕べ5」で紹介'))
51
+
52
+ = Herokuで使う
53
+
54
+ ビルドパックを指定
55
+
56
+ % heroku create --buildpack https://.../groonga.tgz
57
+
58
+ (('note:詳細:https://github.com/groonga/heroku-buildpack-groonga'))
59
+
60
+ = Railsで使う
61
+
62
+ ビルドパックを指定
63
+
64
+ % heroku create --buildpack https://.../rroonga.tgz
65
+
66
+ (('note:詳細:https://github.com/groonga/heroku-buildpack-rroonga'))
67
+
68
+ = Groongaを使うと…
69
+
70
+ * 日本語全文検索対応\n
71
+ Railsアプリになる!
72
+ * 追加プラグインなし
73
+ * 別サーバーも必要なし
74
+ * 参考:PostgreSQLもMySQLも\n
75
+ 追加プラグインが必要
76
+
77
+ = 普通と違うところ
78
+
79
+ Groonga DBはローカル(('note:(SQLite3と同じ)'))
80
+ * dynoが死ぬと消える
81
+ * dynoを作るときに毎回作る
82
+
83
+ (('tag:center'))
84
+
85
+
86
+ Disposable Database
87
+ * Groongaは更新が速いから\n
88
+ できる
89
+
90
+ = 起動の流れ:通常
91
+
92
+ # image
93
+ # src = images/normal-boot-flow.svg
94
+ # relative_height = 100
95
+
96
+ = 起動の流れ:Groonga入り
97
+
98
+ # image
99
+ # src = images/groonga-boot-flow.svg
100
+ # relative_height = 100
101
+
102
+ = サンプル
103
+
104
+ * デモ
105
+ * (('note:http://rroonga-blog.herokuapp.com/'))
106
+ * ソース
107
+ * (('note:https://github.com/groonga/heroku-sample-rroonga-blog'))
108
+ * 解説
109
+ * (('note:http://www.clear-code.com/blog/2014/5/28.html'))
@@ -0,0 +1,219 @@
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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ width="465.45697"
13
+ height="287.49182"
14
+ id="svg2"
15
+ version="1.1"
16
+ inkscape:version="0.48.5 r10040"
17
+ sodipodi:docname="groonga-boot-flow.svg">
18
+ <defs
19
+ id="defs4">
20
+ <marker
21
+ inkscape:stockid="Arrow1Lend"
22
+ orient="auto"
23
+ refY="0"
24
+ refX="0"
25
+ id="Arrow1Lend"
26
+ style="overflow:visible">
27
+ <path
28
+ id="path3785"
29
+ d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
30
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
31
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
32
+ inkscape:connector-curvature="0" />
33
+ </marker>
34
+ <marker
35
+ inkscape:stockid="Arrow1Mend"
36
+ orient="auto"
37
+ refY="0"
38
+ refX="0"
39
+ id="Arrow1Mend"
40
+ style="overflow:visible">
41
+ <path
42
+ id="path3791"
43
+ d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
44
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
45
+ transform="matrix(-0.4,0,0,-0.4,-4,0)"
46
+ inkscape:connector-curvature="0" />
47
+ </marker>
48
+ </defs>
49
+ <sodipodi:namedview
50
+ id="base"
51
+ pagecolor="#ffffff"
52
+ bordercolor="#666666"
53
+ borderopacity="1.0"
54
+ inkscape:pageopacity="0.0"
55
+ inkscape:pageshadow="2"
56
+ inkscape:zoom="0.7"
57
+ inkscape:cx="335.35107"
58
+ inkscape:cy="75.584677"
59
+ inkscape:document-units="px"
60
+ inkscape:current-layer="layer1"
61
+ showgrid="false"
62
+ inkscape:window-width="1230"
63
+ inkscape:window-height="778"
64
+ inkscape:window-x="2039"
65
+ inkscape:window-y="112"
66
+ inkscape:window-maximized="0"
67
+ fit-margin-top="10"
68
+ fit-margin-left="10"
69
+ fit-margin-right="10"
70
+ fit-margin-bottom="10" />
71
+ <metadata
72
+ id="metadata7">
73
+ <rdf:RDF>
74
+ <cc:Work
75
+ rdf:about="">
76
+ <dc:format>image/svg+xml</dc:format>
77
+ <dc:type
78
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
79
+ <dc:title />
80
+ </cc:Work>
81
+ </rdf:RDF>
82
+ </metadata>
83
+ <g
84
+ inkscape:label="レイヤー 1"
85
+ inkscape:groupmode="layer"
86
+ id="layer1"
87
+ transform="translate(-101.10663,-198.04218)">
88
+ <text
89
+ xml:space="preserve"
90
+ style="font-size:32px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
91
+ x="165.71429"
92
+ y="232.36218"
93
+ id="text3004"
94
+ sodipodi:linespacing="125%"><tspan
95
+ sodipodi:role="line"
96
+ id="tspan3006"
97
+ x="165.71429"
98
+ y="232.36218">git push heroku master</tspan></text>
99
+ <path
100
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow1Lend)"
101
+ d="m 318.19805,248.28076 0,64.64976"
102
+ id="path3008"
103
+ inkscape:connector-curvature="0" />
104
+ <text
105
+ xml:space="preserve"
106
+ style="font-size:32px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
107
+ x="286.84271"
108
+ y="346.26556"
109
+ id="text4408"
110
+ sodipodi:linespacing="125%"><tspan
111
+ sodipodi:role="line"
112
+ id="tspan4410"
113
+ x="286.84271"
114
+ y="346.26556">slug</tspan></text>
115
+ <text
116
+ sodipodi:linespacing="125%"
117
+ id="text4412"
118
+ y="468.49402"
119
+ x="156.57364"
120
+ style="font-size:32px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
121
+ xml:space="preserve"><tspan
122
+ sodipodi:role="line"
123
+ id="tspan4416"
124
+ x="156.57364"
125
+ y="468.49402">dyno</tspan></text>
126
+ <text
127
+ xml:space="preserve"
128
+ style="font-size:32px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
129
+ x="285.75134"
130
+ y="468.49402"
131
+ id="text4418"
132
+ sodipodi:linespacing="125%"><tspan
133
+ id="tspan4420"
134
+ sodipodi:role="line"
135
+ x="285.75134"
136
+ y="468.49402">dyno</tspan></text>
137
+ <text
138
+ sodipodi:linespacing="125%"
139
+ id="text4422"
140
+ y="468.49402"
141
+ x="413.01025"
142
+ style="font-size:32px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
143
+ xml:space="preserve"><tspan
144
+ y="468.49402"
145
+ x="413.01025"
146
+ sodipodi:role="line"
147
+ id="tspan4424">dyno</tspan></text>
148
+ <path
149
+ inkscape:connector-curvature="0"
150
+ id="path4426"
151
+ d="m 290.92393,357.37723 -90.91373,76.7716"
152
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow1Lend)"
153
+ sodipodi:nodetypes="cc" />
154
+ <path
155
+ inkscape:connector-curvature="0"
156
+ id="path4428"
157
+ d="m 318.19805,355.1379 0,81.79262"
158
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow1Lend)"
159
+ sodipodi:nodetypes="cc" />
160
+ <path
161
+ sodipodi:nodetypes="cc"
162
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow1Lend)"
163
+ d="m 350.0102,357.37723 90.91373,76.7716"
164
+ id="path4430"
165
+ inkscape:connector-curvature="0" />
166
+ <rect
167
+ style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#a40000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
168
+ id="rect4438"
169
+ width="443.45697"
170
+ height="40.406101"
171
+ x="112.10663"
172
+ y="365.45847"
173
+ ry="5"
174
+ rx="5" />
175
+ <text
176
+ xml:space="preserve"
177
+ style="font-size:32px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
178
+ x="126.86079"
179
+ y="396.70142"
180
+ id="text4432"
181
+ sodipodi:linespacing="125%"><tspan
182
+ sodipodi:role="line"
183
+ id="tspan4436"
184
+ x="126.86079"
185
+ y="396.70142">全文検索用インデックス作成</tspan></text>
186
+ <text
187
+ xml:space="preserve"
188
+ style="font-size:32px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
189
+ x="383.08786"
190
+ y="289.86026"
191
+ id="text3003"
192
+ sodipodi:linespacing="125%"><tspan
193
+ sodipodi:role="line"
194
+ id="tspan3009"
195
+ x="383.08786"
196
+ y="289.86026">PostgreSQL</tspan></text>
197
+ <path
198
+ sodipodi:nodetypes="cc"
199
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow1Lend)"
200
+ d="m 440.92394,305.94866 -21.62802,53.20017"
201
+ id="path3007"
202
+ inkscape:connector-curvature="0" />
203
+ <text
204
+ xml:space="preserve"
205
+ style="font-size:24px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
206
+ x="446.1066"
207
+ y="324.10541"
208
+ id="text3011"
209
+ sodipodi:linespacing="125%"><tspan
210
+ sodipodi:role="line"
211
+ id="tspan3015"
212
+ x="446.1066"
213
+ y="324.10541">マスター</tspan><tspan
214
+ sodipodi:role="line"
215
+ id="tspan3017"
216
+ x="446.1066"
217
+ y="354.10541">データ</tspan></text>
218
+ </g>
219
+ </svg>
@@ -0,0 +1,167 @@
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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ width="465.45697"
13
+ height="287.49182"
14
+ id="svg2"
15
+ version="1.1"
16
+ inkscape:version="0.48.5 r10040"
17
+ sodipodi:docname="normal-boot-flow.svg">
18
+ <defs
19
+ id="defs4">
20
+ <marker
21
+ inkscape:stockid="Arrow1Lend"
22
+ orient="auto"
23
+ refY="0"
24
+ refX="0"
25
+ id="Arrow1Lend"
26
+ style="overflow:visible">
27
+ <path
28
+ id="path3785"
29
+ d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
30
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
31
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
32
+ inkscape:connector-curvature="0" />
33
+ </marker>
34
+ <marker
35
+ inkscape:stockid="Arrow1Mend"
36
+ orient="auto"
37
+ refY="0"
38
+ refX="0"
39
+ id="Arrow1Mend"
40
+ style="overflow:visible">
41
+ <path
42
+ id="path3791"
43
+ d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
44
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
45
+ transform="matrix(-0.4,0,0,-0.4,-4,0)"
46
+ inkscape:connector-curvature="0" />
47
+ </marker>
48
+ </defs>
49
+ <sodipodi:namedview
50
+ id="base"
51
+ pagecolor="#ffffff"
52
+ bordercolor="#666666"
53
+ borderopacity="1.0"
54
+ inkscape:pageopacity="0.0"
55
+ inkscape:pageshadow="2"
56
+ inkscape:zoom="0.98994949"
57
+ inkscape:cx="390.94694"
58
+ inkscape:cy="51.305331"
59
+ inkscape:document-units="px"
60
+ inkscape:current-layer="layer1"
61
+ showgrid="false"
62
+ inkscape:window-width="1230"
63
+ inkscape:window-height="778"
64
+ inkscape:window-x="2039"
65
+ inkscape:window-y="112"
66
+ inkscape:window-maximized="0"
67
+ fit-margin-top="10"
68
+ fit-margin-left="10"
69
+ fit-margin-right="10"
70
+ fit-margin-bottom="10" />
71
+ <metadata
72
+ id="metadata7">
73
+ <rdf:RDF>
74
+ <cc:Work
75
+ rdf:about="">
76
+ <dc:format>image/svg+xml</dc:format>
77
+ <dc:type
78
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
79
+ <dc:title />
80
+ </cc:Work>
81
+ </rdf:RDF>
82
+ </metadata>
83
+ <g
84
+ inkscape:label="レイヤー 1"
85
+ inkscape:groupmode="layer"
86
+ id="layer1"
87
+ transform="translate(-101.10663,-198.04218)">
88
+ <text
89
+ xml:space="preserve"
90
+ style="font-size:32px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
91
+ x="165.71429"
92
+ y="232.36218"
93
+ id="text3004"
94
+ sodipodi:linespacing="125%"><tspan
95
+ sodipodi:role="line"
96
+ id="tspan3006"
97
+ x="165.71429"
98
+ y="232.36218">git push heroku master</tspan></text>
99
+ <path
100
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow1Lend)"
101
+ d="m 318.19805,248.28076 0,64.64976"
102
+ id="path3008"
103
+ inkscape:connector-curvature="0" />
104
+ <text
105
+ xml:space="preserve"
106
+ style="font-size:32px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
107
+ x="286.84271"
108
+ y="346.26556"
109
+ id="text4408"
110
+ sodipodi:linespacing="125%"><tspan
111
+ sodipodi:role="line"
112
+ id="tspan4410"
113
+ x="286.84271"
114
+ y="346.26556">slug</tspan></text>
115
+ <text
116
+ sodipodi:linespacing="125%"
117
+ id="text4412"
118
+ y="468.49402"
119
+ x="156.57364"
120
+ style="font-size:32px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
121
+ xml:space="preserve"><tspan
122
+ sodipodi:role="line"
123
+ id="tspan4416"
124
+ x="156.57364"
125
+ y="468.49402">dyno</tspan></text>
126
+ <text
127
+ xml:space="preserve"
128
+ style="font-size:32px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
129
+ x="285.75134"
130
+ y="468.49402"
131
+ id="text4418"
132
+ sodipodi:linespacing="125%"><tspan
133
+ id="tspan4420"
134
+ sodipodi:role="line"
135
+ x="285.75134"
136
+ y="468.49402">dyno</tspan></text>
137
+ <text
138
+ sodipodi:linespacing="125%"
139
+ id="text4422"
140
+ y="468.49402"
141
+ x="413.01025"
142
+ style="font-size:32px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
143
+ xml:space="preserve"><tspan
144
+ y="468.49402"
145
+ x="413.01025"
146
+ sodipodi:role="line"
147
+ id="tspan4424">dyno</tspan></text>
148
+ <path
149
+ inkscape:connector-curvature="0"
150
+ id="path4426"
151
+ d="m 290.92393,357.37723 -90.91373,76.7716"
152
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow1Lend)"
153
+ sodipodi:nodetypes="cc" />
154
+ <path
155
+ inkscape:connector-curvature="0"
156
+ id="path4428"
157
+ d="m 318.19805,355.1379 0,81.79262"
158
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow1Lend)"
159
+ sodipodi:nodetypes="cc" />
160
+ <path
161
+ sodipodi:nodetypes="cc"
162
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow1Lend)"
163
+ d="m 350.0102,357.37723 90.91373,76.7716"
164
+ id="path4430"
165
+ inkscape:connector-curvature="0" />
166
+ </g>
167
+ </svg>
metadata ADDED
@@ -0,0 +1,80 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rabbit-slide-kou-heroku-meetup-13
3
+ version: !ruby/object:Gem::Version
4
+ version: 2015.1.13.0
5
+ platform: ruby
6
+ authors:
7
+ - Kouhei Sutou
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-01-11 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rabbit
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 2.0.2
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 2.0.2
27
+ - !ruby/object:Gem::Dependency
28
+ name: rabbit-theme-groonga
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: Herokuで使える全文検索エンジンGroongaについて紹介します。
42
+ email:
43
+ - kou@clear-code.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - ".rabbit"
49
+ - README.rd
50
+ - Rakefile
51
+ - config.yaml
52
+ - groonga-on-heroku.rab
53
+ - images/groonga-boot-flow.svg
54
+ - images/normal-boot-flow.svg
55
+ - pdf/heroku-meetup-13-groonga-on-heroku.pdf
56
+ homepage: http://slide.rabbit-shocker.org/authors/kou/heroku-meetup-13/
57
+ licenses:
58
+ - CC BY-SA 4.0
59
+ metadata: {}
60
+ post_install_message:
61
+ rdoc_options: []
62
+ require_paths:
63
+ - lib
64
+ required_ruby_version: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ required_rubygems_version: !ruby/object:Gem::Requirement
70
+ requirements:
71
+ - - ">="
72
+ - !ruby/object:Gem::Version
73
+ version: '0'
74
+ requirements: []
75
+ rubyforge_project:
76
+ rubygems_version: 2.2.2
77
+ signing_key:
78
+ specification_version: 4
79
+ summary: HerokuでGroonga
80
+ test_files: []