rabbit-slide-kou-readable-code-workshop-2015-06-24-retrospective 2015.6.24.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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: c823f194c26dd023ede5251d725a6b8e1a132b1c
4
+ data.tar.gz: 8dd906a260fab28028739e1130d9b8f2b1eabe7e
5
+ SHA512:
6
+ metadata.gz: ec93a0613cfee8e3d3f913f7b231c9505d78f0c39465c17340e0740a2e792f1a2632a4a5b8a8cb85b0ac3b431d1c5b494a7815a1612fb6f3f49f398d43512b8c
7
+ data.tar.gz: c3fddb42513686c12efe8b8240d4b5631efcb4fca93813d7c3e61eb7233627743e1492b698c2ebeb73427648615c6b985a79841859d10fd0576d7154bb63ac41
data/.rabbit ADDED
@@ -0,0 +1 @@
1
+ how-to-look-back.rab
@@ -0,0 +1,32 @@
1
+ = 実践リーダブルコードのふりかえり
2
+
3
+ 2015-06-24開催の実践リーダブルコードでのふりかえりの進め方の説明。
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-2015-06-24-retrospective
28
+
29
+ === 表示
30
+
31
+ rabbit rabbit-slide-kou-readable-code-workshop-2015-06-24-retrospective.gem
32
+
@@ -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
@@ -0,0 +1,22 @@
1
+ ---
2
+ id: readable-code-workshop-2015-06-24-retrospective
3
+ base_name: how-to-look-back
4
+ tags:
5
+ - rabbit
6
+ - readable-code
7
+ presentation_date: 2015-06-24
8
+ version: 2015.6.24.0
9
+ licenses:
10
+ - CC BY-SA 4.0
11
+ slideshare_id: readable-code-workshop-2015-06-24-retrospective
12
+ speaker_deck_id:
13
+ ustream_id:
14
+ vimeo_id:
15
+ youtube_id:
16
+ author:
17
+ markup_language: :rd
18
+ name: Kouhei Sutou
19
+ email: kou@clear-code.com
20
+ rubygems_user: kou
21
+ slideshare_user: kou
22
+ speaker_deck_user: kou
@@ -0,0 +1,116 @@
1
+ = ふりかえりの進め方
2
+
3
+ : author
4
+ 須藤功平
5
+ : institution
6
+ 株式会社クリアコード
7
+ : content-source
8
+ 実践リーダブルコード
9
+ : date
10
+ 2015-06-24
11
+ : allotted-time
12
+ 10m
13
+ : theme
14
+ clear-code
15
+
16
+ = 目的
17
+
18
+ リーダブルの\n
19
+ 基準を共有
20
+
21
+ = おさらい:今日の体験内容
22
+
23
+ * 「まず自分が読み始める」
24
+ * 「リーダブルコードを探す」\n
25
+ (('note:(読みにくいコードは今は置いておく)'))
26
+ * 「((*リーダブルの基準を共有*))」\n
27
+ (('note:(チームでのリーダブルコードができる)'))
28
+
29
+ = ポイント
30
+
31
+ (('tag:center'))
32
+ リーダブルじゃないコードより\n
33
+ リーダブルなコード
34
+
35
+ ((' '))
36
+
37
+ = リーダブルじゃないコード
38
+
39
+ * 見つけやすい
40
+ * 異質
41
+ * 読んでいると詰まる
42
+ * 過剰に指摘したくなる
43
+ * やってはいけない(('note:(対策は後述)'))
44
+ * チームが悪いこと探しに向かう
45
+
46
+ = リーダブルなコード
47
+
48
+ * 見つけにくい
49
+ * まわりのコードになじんでいるから
50
+ * すーっと理解できてひっかからない
51
+ * 今日のチャレンジ
52
+ * 意識して見つけよう!
53
+
54
+ = やること
55
+
56
+ * 各自:よいコードを共有
57
+ * グループ:共有した↑を整理
58
+ * 自分たちの「リーダブルコード」
59
+
60
+ = リーダブルなコードを共有
61
+
62
+ * 他の人に説明すること
63
+ * 実際のコード
64
+ * リーダブルな理由
65
+ * 見つけたきっかけ
66
+ * ポイント
67
+ * 他の人と同じでもよい
68
+ * 同じ→チームでリーダブルの基準が\n
69
+ できたということ
70
+
71
+ = 共有前の準備
72
+
73
+ (('note:時間:15分'))
74
+
75
+ * 適当に1人選ぶ
76
+ * 一番前の左の席の人とかでよい
77
+ * その人のリポジトリーにissueを作る
78
+ * ↑は共有したリーダブルコードを\n
79
+ 集める場所
80
+
81
+ = 共有方法
82
+
83
+ * コードを見せながら順に紹介
84
+ (1) さっき選んだ人から\n
85
+ 時計回りで順に紹介
86
+ (2) 1ターンにつき1人1つ紹介
87
+ (3) 自分の画面を直接見せる
88
+ (4) issueに紹介内容をコメント
89
+ (5) 数ターン繰り返す
90
+
91
+ = 共有内容
92
+
93
+ * 書き方の名前
94
+ * コードへのリンク
95
+ * リーダブルな理由
96
+ * 見つけたきっかけ
97
+
98
+ = グループのリーダブル選び
99
+
100
+ * グループのみんなが\n
101
+ リーダブルと思うコードを選ぶ
102
+ * 選んだコードを貼るissueを作る
103
+ * あがったコードを1つずつ検討
104
+ * リーダブルなら↑のissueに貼る
105
+
106
+ = グループのリーダブル
107
+
108
+ * issueのコードがグループの基準
109
+ * 集めてグループの文化にする
110
+ * メンバーのレベルアップで変わる
111
+ * コードを読まないと基準が増えない
112
+
113
+ (('wait'))
114
+ (('tag:center'))
115
+ ↓\n
116
+ コードを読む文化が必要
metadata ADDED
@@ -0,0 +1,78 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rabbit-slide-kou-readable-code-workshop-2015-06-24-retrospective
3
+ version: !ruby/object:Gem::Version
4
+ version: 2015.6.24.0
5
+ platform: ruby
6
+ authors:
7
+ - Kouhei Sutou
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-06-22 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: 2015-06-24開催の実践リーダブルコードでのふりかえりの進め方の説明。
42
+ email:
43
+ - kou@clear-code.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - ".rabbit"
49
+ - README.rd
50
+ - Rakefile
51
+ - config.yaml
52
+ - how-to-look-back.rab
53
+ - pdf/readable-code-workshop-2015-06-24-retrospective-how-to-look-back.pdf
54
+ homepage: http://slide.rabbit-shocker.org/authors/kou/readable-code-workshop-2015-06-24-retrospective/
55
+ licenses:
56
+ - CC BY-SA 4.0
57
+ metadata: {}
58
+ post_install_message:
59
+ rdoc_options: []
60
+ require_paths:
61
+ - lib
62
+ required_ruby_version: !ruby/object:Gem::Requirement
63
+ requirements:
64
+ - - ">="
65
+ - !ruby/object:Gem::Version
66
+ version: '0'
67
+ required_rubygems_version: !ruby/object:Gem::Requirement
68
+ requirements:
69
+ - - ">="
70
+ - !ruby/object:Gem::Version
71
+ version: '0'
72
+ requirements: []
73
+ rubyforge_project:
74
+ rubygems_version: 2.2.2
75
+ signing_key:
76
+ specification_version: 4
77
+ summary: "実践リーダブルコードのふりかえり"
78
+ test_files: []