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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: df345629b2e923278698167873e65409a8cf9f3c
4
- data.tar.gz: 64006d2fc6c435e139ebf602f976ecac692d9f38
3
+ metadata.gz: 417bfa8648b8e135ff542c46d4952cba49e61d22
4
+ data.tar.gz: 868d5a8aea1ea03a40565a3cd3a2f3a74e0adb3f
5
5
  SHA512:
6
- metadata.gz: f36da337e11efad747276e626caeab3c9e1db0bda45e63ebc91a30d88b8674a1b145db02420caa74caba0e6a686cefeb3db235407c0d6c0f97ac8e3d10b7d7df
7
- data.tar.gz: 7cb6cdeeeb680c77d22b259babcd45c74bfd7bc2fe82f21eecf213f631b36e18e6ddf262b8c60ca709f83d12cabf872f9e5303a5501158d6b4cbe093971b7e4a
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
- * [`::Com::Common::Error`](#comcommonerror)
122
- * [`::Com::AbstractMethodError`](#comabstractmethoderror)
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
@@ -2,7 +2,8 @@
2
2
  # frozen_string_literal: true
3
3
 
4
4
  require "bundler/setup"
5
- require "com"
5
+
6
+ require "com-common"
6
7
 
7
8
  # You can add fixtures and/or initialization code here to make experimenting
8
9
  # with your gem easier. You can also use a different console, if you like.
data/exe/com-common CHANGED
@@ -1,4 +1,4 @@
1
1
  #!/usr/bin/env ruby
2
2
  # frozen_string_literal: true
3
3
 
4
- require "com"
4
+ require "com-common"
@@ -12,6 +12,6 @@ module ::Com
12
12
  # Library version.
13
13
  #
14
14
  # @return [String] library version
15
- VERSION = "0.2.0".freeze
15
+ VERSION = "0.2.1".freeze
16
16
  end
17
17
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: com-common
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Zeke Fast