rabbit-slide-hasumikin-RubyKaigi2024 2024.05.16.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
+ SHA256:
3
+ metadata.gz: 387f033c64d12a9854315e152c6bf306949e28b154e0729a6d4bd5446caf5303
4
+ data.tar.gz: 321ce09ea1f4289c1124fc0eed230383db4ea959fe04a9aeccc8755da8518c35
5
+ SHA512:
6
+ metadata.gz: b1eef1b1b150ae5c46bb0b09fa190afd8c122be57b6187e8c36a58152b286e8179cbb35dde29fdeb9fb88d044bfabf43c23caf96fe1321ff4d01bbf02330f4c5
7
+ data.tar.gz: 15dd1040f5ee024955f5734a5e0fb39a8bf962bae1e7ae99a233c12132042fc502ee7e645fd5b4181f61567f1d042ddf36a5e43bd44951b0024c898ba06b904a
data/.rabbit ADDED
@@ -0,0 +1,2 @@
1
+ --size 1920,1200
2
+ UnlockTheUniversalParsers.md
data/README.md ADDED
@@ -0,0 +1,31 @@
1
+ # Unlock The Universal Parsers: A New PicoRuby Compiler
2
+
3
+ Presentation slide for RubyKaigi 2024
4
+
5
+ ## For author
6
+
7
+ ### Show
8
+
9
+ ```sh
10
+ rake
11
+ ```
12
+
13
+ ### Publish
14
+
15
+ ```sh
16
+ rake publish
17
+ ```
18
+
19
+ ## For viewers
20
+
21
+ ### Install
22
+
23
+ ```sh
24
+ gem install rabbit-slide-hasumikin-RubyKaigi2024
25
+ ```
26
+
27
+ ### Show
28
+
29
+ ```sh
30
+ rabbit rabbit-slide-hasumikin-RubyKaigi2024.gem
31
+ ```
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-YOUR-THEME")
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