aux 0.0.4 → 0.0.5

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
  SHA256:
3
- metadata.gz: acf9da895d77d8ab39cc92765e586e69e0300e15cedc201fdd18a30a02221d4c
4
- data.tar.gz: c6aa3892d3a1691f2e0192a3094c33838a5e5b40121538b06862e1c7491c7190
3
+ metadata.gz: 4b5ace631919c60e6e5204bfb33dad68a6b8583c98d26206b613811b15b2fe29
4
+ data.tar.gz: 77bb7c2c22c97181fc1e5d10ecf77dba3296f0b188c38ede324d221777613f02
5
5
  SHA512:
6
- metadata.gz: c10a70b5b35a62161e4f6c48362fda7bc51e08a046c638ac3d8a8311fac53648fc1bdcd526e0c4d7302e1c9ce36c80d97f845dc0fa5d32f9e8ebc1332aad408d
7
- data.tar.gz: ae97078e7e7cc0d627711a1c147befecadcfa70e057376378402d59a8dda844ad63f4596a10fd1ee26c594f0db8f8189d0bfdb6e9a3962b557899747503b3c35
6
+ metadata.gz: 7edf473b2d627ca0fb4c9f16197177eb3de5d98a042b269097d1f5317e440dac298cac592aede48e8ecf42855f9bb78c86887f0611fee770f5fb164bf871b164
7
+ data.tar.gz: 2aa2ffbe10186145ce53a5e54a9759169883d789c618575798eba40f056cc4107add3abc942ce105280a5feef7ef9befe93f326d05764b75d558aa9149489d91
data/lib/aux/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Aux
4
- VERSION = '0.0.4'
4
+ VERSION = '0.0.5'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aux
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Evgeny Boyko
@@ -64,7 +64,6 @@ files:
64
64
  - lib/aux.rb
65
65
  - lib/aux/pluggable.rb
66
66
  - lib/aux/pluggable/class_methods.rb
67
- - lib/aux/pluggable/registration.rb
68
67
  - lib/aux/pluggable/utilities.rb
69
68
  - lib/aux/validations.rb
70
69
  - lib/aux/validations/error.rb
@@ -1,25 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Aux
4
- module Pluggable
5
- # Describes a wrapper for registry data
6
- class Registration
7
- # @!attribute [r] name
8
- # @return [Symbol, String]
9
- # @!attribute [r] initialization_required
10
- # @return [TrueClass, FalseClass]
11
- # @!attribute [r] memoization_required
12
- # @return [TrueClass, FalseClass]
13
- attr_reader :name, :initialization_required, :memoization_required
14
-
15
- # @param name [Symbol, String]
16
- # @param initialization_required [TrueClass, FalseClass]
17
- # @param memoization_required [TrueClass, FalseClass]
18
- def initialize(name, initialization_required, memoization_required)
19
- @name = name
20
- @initialization_required = initialization_required
21
- @memoization_required = memoization_required
22
- end
23
- end
24
- end
25
- end