apipie-bindings 0.0.3 → 0.0.4
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 +4 -4
- data/lib/apipie_bindings/inflector.rb +3 -2
- data/lib/apipie_bindings/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9e97dd17fff7daa31bb6b9c3d9c0ce896a8b6a98
|
|
4
|
+
data.tar.gz: ebb7ed8491df770582786a1d86102088dc7dee5f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: be9739179d7a3c68a2fa8f666d5565cb0f154c5996315f24b43a93d2b131ff2ef08b9b5ee3ec9490ba9122d3421d3df8c6b9c2dee2762497ad4471571e7fdd4c
|
|
7
|
+
data.tar.gz: 4992332d1c150706ccb2757d9bdb32549b96a153706dd58c64d4c15ea1f1a2a4a7719abb86ca6c0b646cdc1d0ce65417102dee79cda19131bf057215be70a533
|
|
@@ -126,11 +126,12 @@ module ApipieBindings
|
|
|
126
126
|
inflect.singular(/([^aeiouy])ies$/i, '\1y')
|
|
127
127
|
|
|
128
128
|
inflect.irregular('child', 'children')
|
|
129
|
+
inflect.irregular('man', 'men')
|
|
130
|
+
inflect.irregular('medium', 'media')
|
|
131
|
+
inflect.irregular('move', 'moves')
|
|
129
132
|
inflect.irregular('person', 'people')
|
|
130
133
|
inflect.irregular('self', 'selves')
|
|
131
|
-
inflect.irregular('man', 'men')
|
|
132
134
|
inflect.irregular('sex', 'sexes')
|
|
133
|
-
inflect.irregular('move', 'moves')
|
|
134
135
|
|
|
135
136
|
inflect.uncountable(%w(equipment information money species series fish sheep police))
|
|
136
137
|
end
|