rabbit-slide-kou-rubykaigi-2014 2014.9.20.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/.rabbit +1 -0
- data/README.rd +143 -0
- data/Rakefile +17 -0
- data/config.yaml +24 -0
- data/images/clear-code-is-silver-sponsor.png +0 -0
- data/images/distributed-full-text-search-engine-components.svg +572 -0
- data/images/distributed-full-text-search-engine.svg +355 -0
- data/images/droonga-coolio.svg +690 -0
- data/images/droonga-logo.svg +73 -0
- data/images/droonga-messaging-system.svg +542 -0
- data/images/droonga-mruby.svg +2505 -0
- data/images/droonga-rroonga.svg +861 -0
- data/images/embed-examples.svg +1680 -0
- data/images/embed.svg +1642 -0
- data/images/glue-examples.svg +315 -0
- data/images/glue.svg +271 -0
- data/images/groonga-logo.svg +118 -0
- data/images/high-level-interface-examples.svg +1702 -0
- data/images/high-level-interface.svg +930 -0
- data/images/lavie.png +0 -0
- data/images/rabbit-with-glue.svg +1782 -0
- data/images/rabbit-with-high-level-interface.svg +1823 -0
- data/images/rabbit.svg +1740 -0
- data/images/range-search-optimized.svg +278 -0
- data/images/range-search-simple.svg +312 -0
- data/images/rroonga-logo.svg +117 -0
- data/images/rroonga-search.svg +371 -0
- data/images/ruby.pdf +398 -0
- data/images/serf.svg +347 -0
- data/note.md +355 -0
- data/pdf/rubykaigi-2014-three-ruby-usages.pdf +0 -0
- data/theme.rb +1 -0
- data/three-ruby-usages.rab +501 -0
- metadata +122 -0
metadata
ADDED
@@ -0,0 +1,122 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rabbit-slide-kou-rubykaigi-2014
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 2014.9.20.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Kouhei Sutou
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-09-17 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-clear-code
|
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: |-
|
42
|
+
This talk describes three Ruby usages:
|
43
|
+
|
44
|
+
* Implementing high-level interface by Ruby.
|
45
|
+
* Using Ruby as a glue language.
|
46
|
+
* Embedding Ruby into a C program for flexibility.
|
47
|
+
|
48
|
+
All of them have pros and cons. They are trade-off. If a case can
|
49
|
+
ignore cons, we will have pros for the case.
|
50
|
+
|
51
|
+
Most of Rubyists implement their Ruby applications only by Ruby. This
|
52
|
+
talk shows another options to use Ruby as your convenient tool. If you
|
53
|
+
know another options and trade-offs of them, you will implement your
|
54
|
+
Ruby applications more effectively.
|
55
|
+
|
56
|
+
This talk uses Droonga, a distributed full-text search engine, as a
|
57
|
+
sample application to describe these Ruby usages. Droonga uses these
|
58
|
+
three Ruby usages.
|
59
|
+
email:
|
60
|
+
- kou@clear-code.com
|
61
|
+
executables: []
|
62
|
+
extensions: []
|
63
|
+
extra_rdoc_files: []
|
64
|
+
files:
|
65
|
+
- ".rabbit"
|
66
|
+
- README.rd
|
67
|
+
- Rakefile
|
68
|
+
- config.yaml
|
69
|
+
- images/clear-code-is-silver-sponsor.png
|
70
|
+
- images/distributed-full-text-search-engine-components.svg
|
71
|
+
- images/distributed-full-text-search-engine.svg
|
72
|
+
- images/droonga-coolio.svg
|
73
|
+
- images/droonga-logo.svg
|
74
|
+
- images/droonga-messaging-system.svg
|
75
|
+
- images/droonga-mruby.svg
|
76
|
+
- images/droonga-rroonga.svg
|
77
|
+
- images/embed-examples.svg
|
78
|
+
- images/embed.svg
|
79
|
+
- images/glue-examples.svg
|
80
|
+
- images/glue.svg
|
81
|
+
- images/groonga-logo.svg
|
82
|
+
- images/high-level-interface-examples.svg
|
83
|
+
- images/high-level-interface.svg
|
84
|
+
- images/lavie.png
|
85
|
+
- images/rabbit-with-glue.svg
|
86
|
+
- images/rabbit-with-high-level-interface.svg
|
87
|
+
- images/rabbit.svg
|
88
|
+
- images/range-search-optimized.svg
|
89
|
+
- images/range-search-simple.svg
|
90
|
+
- images/rroonga-logo.svg
|
91
|
+
- images/rroonga-search.svg
|
92
|
+
- images/ruby.pdf
|
93
|
+
- images/serf.svg
|
94
|
+
- note.md
|
95
|
+
- pdf/rubykaigi-2014-three-ruby-usages.pdf
|
96
|
+
- theme.rb
|
97
|
+
- three-ruby-usages.rab
|
98
|
+
homepage: http://slide.rabbit-shocker.org/authors/kou/rubykaigi-2014/
|
99
|
+
licenses:
|
100
|
+
- CC BY-SA 4.0
|
101
|
+
metadata: {}
|
102
|
+
post_install_message:
|
103
|
+
rdoc_options: []
|
104
|
+
require_paths:
|
105
|
+
- lib
|
106
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
111
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
112
|
+
requirements:
|
113
|
+
- - ">="
|
114
|
+
- !ruby/object:Gem::Version
|
115
|
+
version: '0'
|
116
|
+
requirements: []
|
117
|
+
rubyforge_project:
|
118
|
+
rubygems_version: 2.2.2
|
119
|
+
signing_key:
|
120
|
+
specification_version: 4
|
121
|
+
summary: Three Ruby usages
|
122
|
+
test_files: []
|