rabbit-slide-oss-gate-workshop-tutorial-ruby 2026.8.5.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: 57286af667d0c96b4a34d8cb5c1fdb026f1b78c675ad3c78a3515c61c7276841
4
+ data.tar.gz: f633ca3dd46ab9d7c649b81eb8894d5ee1b0ee48faaa22e0d4c6d64cf8f07211
5
+ SHA512:
6
+ metadata.gz: 463b958bd22e2735b3748e9e3c2f1f7a79e61f143f9458afd3dd75d17856344f0e52a4f46035b9faf6f5e6e522dcc988bb3cf7c6bbd048ef822eb20ff0a4eeb5
7
+ data.tar.gz: f14b5a4e974a64270d90f095aad8ed0516038514e2d2863b1dbce5211133593c74e9d8e3cefcd44956afc561a422a47b49164c37225d2ca31c3df86cae037da3
data/.rabbit ADDED
@@ -0,0 +1,2 @@
1
+ --size 1280,720
2
+ scenario.rab
data/LICENSE ADDED
@@ -0,0 +1,11 @@
1
+ CC BY-SA 4.0 International
2
+
3
+ Copyright 2015-2016 (C) 株式会社クリアコード
4
+ Copyright 2016-2017 (C) Kouhei Sutou <kou@clear-code.com>
5
+ Copyright 2016 (C) Yasunori Goto <ygotopersonal@gmail.com>
6
+ Copyright 2016 (C) TADA, Tadashi <t@tdtds.jp>
7
+ Copyright 2017 (C) Kimiaki Kuno <knokmki612@gmail.com>
8
+ Copyright 2017 (C) Yoichi Nakayama <yoichi.nakayama@gmail.com>
9
+ Copyright 2017 (C) Toshihiko Osawa <tshkh8@gmail.com>
10
+
11
+ http://creativecommons.org/licenses/by-sa/4.0/
data/README.md ADDED
@@ -0,0 +1,33 @@
1
+ # OSS Gateワークショップ(チュートリアル)Ruby版
2
+
3
+ OSS Gateワークショップ(チュートリアル)Ruby版の説明。
4
+
5
+ スライドは使い方にあわせて次のどれかを使います。
6
+
7
+ * [ソース](scenario.rab):ローカルで[Rabbit](https://rabbit-shocker.org/)を使って表示するとき
8
+ * [Rabbit Slide Show](https://slide.rabbit-shocker.org/authors/oss-gate/workshop-tutorial-ruby/):Webブラウザーで表示するとき(Rabbitを用意する必要はない)
9
+ * [PDF](https://slide.rabbit-shocker.org/authors/oss-gate/workshop-tutorial-ruby/scenario.pdf):ローカルでPDFビューアーを使って表示する時
10
+
11
+ ## チャット
12
+
13
+ ワークショップ中およびワークショップ後は[ruby-jp Slackの#oss_gate](https://ruby-jp.github.io/)を活用します。
14
+
15
+ ## ライセンス
16
+
17
+ CC BY-SA 4.0
18
+
19
+ 詳細は[LICENSE](LICENSE)を確認してください。
20
+
21
+ ## スライド
22
+
23
+ ### 表示
24
+
25
+ ```console
26
+ % rake
27
+ ```
28
+
29
+ ### 公開
30
+
31
+ ```console
32
+ % rake publish
33
+ ```
data/Rakefile ADDED
@@ -0,0 +1,28 @@
1
+ require "rabbit/task/slide"
2
+
3
+ # Edit ./config.yaml to customize meta data
4
+
5
+ Dir.glob("../{LICENSE,images/**/*.*}") do |shared_file|
6
+ relative_path = shared_file.gsub(/\A\.\.\//, "")
7
+ file relative_path => shared_file do
8
+ mkdir_p(File.dirname(relative_path))
9
+ cp(shared_file, relative_path)
10
+ end
11
+ end
12
+
13
+ spec = nil
14
+ Rabbit::Task::Slide.new do |task|
15
+ spec = task.spec
16
+ task.spec.files += ["LICENSE"]
17
+ task.spec.files += Dir.glob("../images/**/*.*").collect do |path|
18
+ path.gsub(/\A\.\.\//, "")
19
+ end
20
+ # task.spec.files -= Dir.glob("private/**/*.*")
21
+ # task.spec.add_runtime_dependency("rabbit-theme-clear-code")
22
+ end
23
+
24
+ desc "Tag #{spec.version}"
25
+ task :tag do
26
+ sh("git", "tag", "-a", spec.version.to_s, "-m", "Publish #{spec.version}")
27
+ sh("git", "push", "--tags")
28
+ end
data/config.yaml ADDED
@@ -0,0 +1,25 @@
1
+ ---
2
+ id: workshop-tutorial-ruby
3
+ base_name: scenario
4
+ tags:
5
+ - rabbit
6
+ - ruby
7
+ - oss_gate
8
+ - workshop
9
+ presentation_date: 2026-08-05
10
+ version: 2026.8.5.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
+ source_code_uri: https://github.com/oss-gate/workshop/tree/-/tutorial/scenario-ruby
19
+ author:
20
+ markup_language: :rd
21
+ name: OSS Gate
22
+ email: kou+oss-gate@cozmixng.org
23
+ rubygems_user: oss-gate
24
+ slideshare_user:
25
+ speaker_deck_user: