rabbit-slide-kou-devmi-2013 2013.3.2.3 → 2013.3.2.4
Sign up to get free protection for your applications and to get access to all the features.
@@ -27,13 +27,13 @@
|
|
27
27
|
= 例1: リーダブル?
|
28
28
|
|
29
29
|
# coderay ruby
|
30
|
-
class
|
30
|
+
class Person
|
31
31
|
def initialize
|
32
32
|
@mutex = Mutex.new
|
33
33
|
end
|
34
|
-
def
|
34
|
+
def name=(name)
|
35
35
|
@mutex.synchronize do
|
36
|
-
@
|
36
|
+
@name = name
|
37
37
|
end
|
38
38
|
end
|
39
39
|
end
|
@@ -41,13 +41,13 @@
|
|
41
41
|
= 例2: リーダブル?
|
42
42
|
|
43
43
|
# coderay ruby
|
44
|
-
class
|
44
|
+
class Person
|
45
45
|
def initialize
|
46
46
|
@mutex = Mutex.new
|
47
47
|
end
|
48
|
-
def
|
48
|
+
def name=(name)
|
49
49
|
synchronize do
|
50
|
-
@
|
50
|
+
@name = name
|
51
51
|
end
|
52
52
|
end
|
53
53
|
def synchronize
|
@@ -244,6 +244,8 @@
|
|
244
244
|
|
245
245
|
(('tag:center'))(('note:http://www.clear-code.com/services/commit-comment.html'))
|
246
246
|
|
247
|
+
= B2D\n(('note:Business to Developer'))
|
248
|
+
|
247
249
|
= なんで読むの?
|
248
250
|
|
249
251
|
* 読まないと\n
|
data/config.yaml
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rabbit-slide-kou-devmi-2013
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2013.3.2.
|
4
|
+
version: 2013.3.2.4
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-02
|
12
|
+
date: 2013-03-02 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rabbit
|