coconductor 0.9.1 → 0.9.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/coconductor/field.rb +1 -1
- data/lib/coconductor/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 98f87de1353be1f78ac5c9681665d212c2faba34969e404bfeb02f1cdc58d68b
|
4
|
+
data.tar.gz: 4c209e587734390fff1b9d8793d65c9210a7d80e01c9073c93abe4a7ac3a6fee
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ea64e1848d9ab8caa5a85421bc2299208736c6f0019cf2e29fc168580729ae7384586fd48064fe52c9fc172d062bc412597216baf8e537fec490c55048a3efe5
|
7
|
+
data.tar.gz: 98a9042d5fe4ef83caad64845c9d2898697aec8e8a053fc2f8422d314907352482fc38a07b04cfac12356cc0ed8d17ddb159144374223df6623ae091ce4da6b9
|
data/lib/coconductor/field.rb
CHANGED
@@ -40,7 +40,7 @@ module Coconductor
|
|
40
40
|
def initialize(raw_text, name: nil, description: nil)
|
41
41
|
@raw_text = raw_text
|
42
42
|
@name = name
|
43
|
-
@description = description if description && description != ''
|
43
|
+
@description = description.capitalize if description && description != ''
|
44
44
|
end
|
45
45
|
|
46
46
|
# The unformatted field name as found in the code of conduct text
|
data/lib/coconductor/version.rb
CHANGED