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 +4 -4
- data/lib/aux/version.rb +1 -1
- metadata +1 -2
- data/lib/aux/pluggable/registration.rb +0 -25
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4b5ace631919c60e6e5204bfb33dad68a6b8583c98d26206b613811b15b2fe29
|
|
4
|
+
data.tar.gz: 77bb7c2c22c97181fc1e5d10ecf77dba3296f0b188c38ede324d221777613f02
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7edf473b2d627ca0fb4c9f16197177eb3de5d98a042b269097d1f5317e440dac298cac592aede48e8ecf42855f9bb78c86887f0611fee770f5fb164bf871b164
|
|
7
|
+
data.tar.gz: 2aa2ffbe10186145ce53a5e54a9759169883d789c618575798eba40f056cc4107add3abc942ce105280a5feef7ef9befe93f326d05764b75d558aa9149489d91
|
data/lib/aux/version.rb
CHANGED
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
|
+
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
|