com-common 0.2.0 → 0.2.1
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/README.md +9 -2
- data/bin/console +2 -1
- data/exe/com-common +1 -1
- data/lib/com/common/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: 417bfa8648b8e135ff542c46d4952cba49e61d22
|
4
|
+
data.tar.gz: 868d5a8aea1ea03a40565a3cd3a2f3a74e0adb3f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 52129c193e02c8ab3b4e98b860ff694263e2e71dc8b957a7f2c6da9e282724205499b3cd892232fb677a7ede817f792a40bd779c79a3176afc201ded2f09249d
|
7
|
+
data.tar.gz: 2c944e44a381ceadf61b9db5506e3f2e95bfef865456d259275feb04a2f0867c059f4c254210333f7deb97119f032916209b01416e19f1651851c30000300140
|
data/README.md
CHANGED
@@ -117,9 +117,10 @@ Most of modules are intended for tagging exceptions raised
|
|
117
117
|
from [com-rb libraries](https://github.com/com-rb).
|
118
118
|
|
119
119
|
* [`::Com::StandartError`](#comstandarderror)
|
120
|
+
* [`::Com::Common::StandardError`](#comcommonstandarderror)
|
120
121
|
* [`::Com::Error`](#comerror)
|
121
|
-
|
122
|
-
|
122
|
+
* [`::Com::Common::Error`](#comcommonerror)
|
123
|
+
* [`::Com::AbstractMethodError`](#comabstractmethoderror)
|
123
124
|
|
124
125
|
#### `::Com::StandardError`
|
125
126
|
|
@@ -133,6 +134,12 @@ In most cases you can suppose that errors which include this module would be
|
|
133
134
|
catched on compilation if [Ruby](https://www.ruby-lang.org/)
|
134
135
|
would be [statically typed language](https://en.wikipedia.org/wiki/Type_system#Static_type_checking).
|
135
136
|
|
137
|
+
#### `::Com::Common::StandardError`
|
138
|
+
|
139
|
+
The module [`::Com::Common::StandardError`](lib/com/common/standard_error.rb)
|
140
|
+
supposed to be mixed into all exceptions of [`::StandardError`](http://ruby-doc.org/core-2.3.1/StandardError.html)
|
141
|
+
type from [`::Com::Common`](lib/com/common.rb) namespace.
|
142
|
+
|
136
143
|
#### `::Com::Error`
|
137
144
|
|
138
145
|
The module [`::Com::Error`](lib/com/error.rb) supposed to be mixed into
|
data/bin/console
CHANGED
data/exe/com-common
CHANGED
data/lib/com/common/version.rb
CHANGED