rabbit-slide-kou-readable-code-workshop-for-pioneer-conclusion 2015.8.11.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 +32 -0
- data/Rakefile +17 -0
- data/config.yaml +23 -0
- data/images/readable-code-feedback-loop-side-effect.svg +821 -0
- data/images/readable-code-feedback-loop.svg +770 -0
- data/images/readable-code-reasonability.svg +167 -0
- data/next-step.rab +172 -0
- data/pdf/readable-code-workshop-for-pioneer-conclusion-next-step.pdf +0 -0
- metadata +81 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: c1fc6f6d7b421a961190beea5f6b7e324f41bc0a
|
4
|
+
data.tar.gz: b1cfc21b1f829cb067624e8094d0f1c7b0368c5d
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 1902c0d836e1cc1ca510003227f3d1c74c863b0368d8da25885e192753d435871bd0ab2ad19c051018a126085fd32e58d8b6cad5097883c2aef0e6eb53660aa0
|
7
|
+
data.tar.gz: 747e9c6fb99ef47fd87f749f078bf5a27bdd44d395e32227df9c4b28f96fe03096cc71f9a47ea47d0b7c17e468e3d3dcf5994fb636e616b2c18b6dccd3742826
|
data/.rabbit
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
next-step.rab
|
data/README.rd
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
= リーダブルコードワークショップ(パイオニア向け)のまとめ
|
2
|
+
|
3
|
+
リーダブルコードワークショップ(パイオニア向け)のまとめと次のステップの説明。
|
4
|
+
|
5
|
+
== ライセンス
|
6
|
+
|
7
|
+
CC BY-SA 4.0
|
8
|
+
|
9
|
+
原著作者名は以下の通りです。
|
10
|
+
|
11
|
+
* 株式会社クリアコード
|
12
|
+
|
13
|
+
== 作者向け
|
14
|
+
|
15
|
+
=== 表示
|
16
|
+
|
17
|
+
rake
|
18
|
+
|
19
|
+
=== 公開
|
20
|
+
|
21
|
+
rake publish
|
22
|
+
|
23
|
+
== 閲覧者向け
|
24
|
+
|
25
|
+
=== インストール
|
26
|
+
|
27
|
+
gem install rabbit-slide-kou-readable-code-workshop-for-pioneer-conclusion
|
28
|
+
|
29
|
+
=== 表示
|
30
|
+
|
31
|
+
rabbit rabbit-slide-kou-readable-code-workshop-for-pioneer-conclusion.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("doc/**/*.*")
|
9
|
+
# spec.files -= Dir.glob("private/**/*.*")
|
10
|
+
spec.add_runtime_dependency("rabbit-theme-clear-code")
|
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,23 @@
|
|
1
|
+
---
|
2
|
+
id: readable-code-workshop-for-pioneer-conclusion
|
3
|
+
base_name: next-step
|
4
|
+
tags:
|
5
|
+
- rabbit
|
6
|
+
- readable-code
|
7
|
+
- sezemi
|
8
|
+
presentation_date: 2015-08-11
|
9
|
+
version: 2015.8.11.0
|
10
|
+
licenses:
|
11
|
+
- CC BY-SA 4.0
|
12
|
+
slideshare_id: readable-code-workshop-for-pioneer-conclusion
|
13
|
+
speaker_deck_id:
|
14
|
+
ustream_id:
|
15
|
+
vimeo_id:
|
16
|
+
youtube_id:
|
17
|
+
author:
|
18
|
+
markup_language: :rd
|
19
|
+
name: Kouhei Sutou
|
20
|
+
email: kou@clear-code.com
|
21
|
+
rubygems_user: kou
|
22
|
+
slideshare_user: kou
|
23
|
+
speaker_deck_user: kou
|