foobara-rails-command-connector 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +2 -1
- data/src/rails_command_connector.rb +2 -8
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 85b87cf4ca9d03e7074214e48e8b360b8c4699413fa0e4afa3a8cc86308abd18
|
4
|
+
data.tar.gz: 35fd962b96178619a87d6fb9461e5a5b30f90985eb08efc020b94c89c789afcc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 04eca877f738fe6eb9ab755829752971d54a9065176723f8adb4ef2a0022fd6a80eeb4e346dbf05ad6d0154fa0393772eda5c3ad4d6b93350bc760fa62451e5e
|
7
|
+
data.tar.gz: 5e28e4449c228fcfe0bca3648e41e1c294c8b6851c564aaf3c35587b5e8ca6f315026d8d66d4d87d46ccd9d1940099153d331697894ad20d599650c13f82ff4e
|
data/CHANGELOG.md
CHANGED
@@ -13,16 +13,10 @@ module Foobara
|
|
13
13
|
|
14
14
|
attr_accessor :supported_actions
|
15
15
|
|
16
|
-
|
17
|
-
def initialize(*, supported_actions: self.class.supported_actions, **opts, &)
|
16
|
+
def initialize(*, supported_actions: self.class.supported_actions, **, &)
|
18
17
|
self.supported_actions = supported_actions
|
19
18
|
|
20
|
-
|
21
|
-
Foobara::CommandConnectors::Serializers::ErrorsSerializer,
|
22
|
-
Foobara::CommandConnectors::Serializers::JsonSerializer
|
23
|
-
]
|
24
|
-
|
25
|
-
super(*, **opts, &)
|
19
|
+
super(*, **, &)
|
26
20
|
|
27
21
|
install!
|
28
22
|
end
|