rabbit-slide-Piro-presentation-oss-gate-workshop-fjord-bootcamp-introduction 2023.9.30.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: 47c22e96e0578201d8e61a56422e70d48a655bbfce23914b90648e16166d2406
4
+ data.tar.gz: 407af94901be0e355aed7d13de5aa23bc359a6d08bc987a5f8ea91ec895dad4f
5
+ SHA512:
6
+ metadata.gz: cbff8ac778a6a377b9bed69275ca678c59c5599a9682f6adb10f49b2fdb1cbba59a912c9c20f54c96f6bd99c8233c02523b032673e1801af705df31ed4926257
7
+ data.tar.gz: 1f603b4585e91581e0a211cb1583150e6776a6cb73ada6e008c13bc73bea8efc87a2c9d4bed882e33d206529dcb08810c5cdd33dc9cc6440b8a8bc4f95c14c43
data/.rabbit ADDED
@@ -0,0 +1 @@
1
+ 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,23 @@
1
+ # 今日から参加できる!OSS開発
2
+
3
+ [フィヨルドブートキャンプさん](https://bootcamp.fjord.jp/)との共催による[OSS Gateオンラインワークショップ - フィヨルドブートキャンプ特別版](https://oss-gate.doorkeeper.jp/events/160648)での発表資料です。
4
+
5
+ ## ライセンス
6
+
7
+ CC BY-SA 4.0
8
+
9
+ 詳細は[LICENSE](./LICENSE)を確認してください。
10
+
11
+ ## スライド
12
+
13
+ ### 表示
14
+
15
+ ```console
16
+ % rake
17
+ ```
18
+
19
+ ### 公開
20
+
21
+ ```console
22
+ % rake publish
23
+ ```
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,24 @@
1
+ ---
2
+ id: presentation-oss-gate-workshop-fjord-bootcamp-introduction
3
+ base_name: scenario
4
+ tags:
5
+ - rabbit
6
+ - oss_gate
7
+ - workshop
8
+ presentation_date: 2023-09-30
9
+ version: 2023.9.30.0
10
+ licenses:
11
+ - CC-BY-SA-4.0
12
+ slideshare_id:
13
+ speaker_deck_id:
14
+ ustream_id:
15
+ vimeo_id:
16
+ youtube_id:
17
+ source_code_uri: https://gitlab.com/clear-code/presentation-oss-gate-workshop-fjord-bootcamp-introduction
18
+ author:
19
+ markup_language: :rd
20
+ name: YUKI Hiroshi
21
+ email: yuki@clear-code.com
22
+ rubygems_user: Piro
23
+ slideshare_user:
24
+ speaker_deck_user:
Binary file