rabbit-slide-kou-readable-code-workshop-2015-06-24-icebreaker 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.
- checksums.yaml +7 -0
- data/.rabbit +1 -0
- data/README.rd +32 -0
- data/Rakefile +17 -0
- data/config.yaml +22 -0
- data/how-to-break-the-ice.rab +47 -0
- data/pdf/readable-code-workshop-2015-06-24-icebreaker-how-to-break-the-ice.pdf +0 -0
- metadata +78 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 7450e792d8f6fee2572e290f3df3ad7e6ccb8e06
|
4
|
+
data.tar.gz: 9cb631c657a8565a55ebaf3dea364637ba555dc5
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 9bf46c707ef6bb899e18121eb6856291e2dbb4899583d4a3122ef250c0a8cda83da54fb5635d772e1a165de0afba95ecd9456a32e66051d5f2ac3f8f327b4270
|
7
|
+
data.tar.gz: ce9e448625586dccbd926dccff3ff183725fa804863b06d3b989684b3d4b82968810f67c09c6f24f1a45375eec36178a139d050c01e596658467e7fdb057f18d
|
data/.rabbit
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
how-to-break-the-ice.rab
|
data/README.rd
ADDED
@@ -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-icebreaker
|
28
|
+
|
29
|
+
=== 表示
|
30
|
+
|
31
|
+
rabbit rabbit-slide-kou-readable-code-workshop-2015-06-24-icebreaker.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,22 @@
|
|
1
|
+
---
|
2
|
+
id: readable-code-workshop-2015-06-24-icebreaker
|
3
|
+
base_name: how-to-break-the-ice
|
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-icebreaker
|
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,47 @@
|
|
1
|
+
= アイスブレーク
|
2
|
+
|
3
|
+
: author
|
4
|
+
須藤功平
|
5
|
+
: institution
|
6
|
+
株式会社クリアコード
|
7
|
+
: content-source
|
8
|
+
実践リーダブルコード
|
9
|
+
: date
|
10
|
+
2015-06-24
|
11
|
+
: allotted-time
|
12
|
+
15m
|
13
|
+
: theme
|
14
|
+
clear-code
|
15
|
+
|
16
|
+
= 目的
|
17
|
+
|
18
|
+
いつも通り\n
|
19
|
+
コードを書ける\n
|
20
|
+
ようになる
|
21
|
+
|
22
|
+
= やること1
|
23
|
+
|
24
|
+
GitHubにリポジトリーを作る
|
25
|
+
|
26
|
+
名前:
|
27
|
+
${アカウント名}-readable-code
|
28
|
+
例:
|
29
|
+
kou-readable-code
|
30
|
+
|
31
|
+
→ 作ったらチューターに報告
|
32
|
+
|
33
|
+
= やること2
|
34
|
+
|
35
|
+
* ((*README.txt*))を作る
|
36
|
+
* 内容:開発言語
|
37
|
+
* 今日使うエディターで書くこと!
|
38
|
+
* commit & push
|
39
|
+
* → pushしたらチューターに報告
|
40
|
+
|
41
|
+
= 確認
|
42
|
+
|
43
|
+
* 動作確認できたか
|
44
|
+
* いつものエディターを使えた?
|
45
|
+
* Git/GitHubを使えた?
|
46
|
+
* 声をだせた?
|
47
|
+
* いつも通りコードを書けそう?
|
metadata
ADDED
@@ -0,0 +1,78 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rabbit-slide-kou-readable-code-workshop-2015-06-24-icebreaker
|
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-break-the-ice.rab
|
53
|
+
- pdf/readable-code-workshop-2015-06-24-icebreaker-how-to-break-the-ice.pdf
|
54
|
+
homepage: http://slide.rabbit-shocker.org/authors/kou/readable-code-workshop-2015-06-24-icebreaker/
|
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: []
|