foobara-rails-command-connector 0.0.2 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -1
- data/src/rails_command_connector.rb +2 -8
- metadata +4 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0dfba376fe46a7778b2ccac7d116ab0c45ee6d746ff2cb43f2fffa8923df7605
|
4
|
+
data.tar.gz: a4854514151e50aa474b83693110c21e1a2821ff7d029b5aace5fed20311ca49
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f1ff379fc50174e86da32783c5ba96cfa8d94c1303ca8001112469652d31934924ded1c25090a161b6c717f27d77dcc4306bd2b57a40b2c97a4a1273c6dd2285
|
7
|
+
data.tar.gz: f3ec818cddc5bdb99d758314c9313d3cddb30a48d7329aaa7dcbe733d9c13f45323d48d2af1d098e154b077d43bdcee63fb4b620f313ca6d826077cec1ecc0d7
|
data/CHANGELOG.md
CHANGED
@@ -1,7 +1,12 @@
|
|
1
|
-
## [0.0.
|
1
|
+
## [0.0.4] - 2025-01-07
|
2
|
+
|
3
|
+
- Bump Ruby to 3.4.1
|
4
|
+
|
5
|
+
## [0.0.3] - 2024-12-02
|
2
6
|
|
3
7
|
- Eliminate HTTP_COMMAND_CONNECTOR
|
4
8
|
- Add help, list, describe, and manifest actions
|
9
|
+
- Inherit default serializers
|
5
10
|
|
6
11
|
## [0.0.1] - 2024-12-01
|
7
12
|
|
@@ -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
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: foobara-rails-command-connector
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Miles Georgi
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-01-07 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: foobara-rack-connector
|
@@ -24,7 +23,6 @@ dependencies:
|
|
24
23
|
- - ">="
|
25
24
|
- !ruby/object:Gem::Version
|
26
25
|
version: '0'
|
27
|
-
description:
|
28
26
|
email:
|
29
27
|
- azimux@gmail.com
|
30
28
|
executables: []
|
@@ -48,7 +46,6 @@ metadata:
|
|
48
46
|
source_code_uri: https://github.com/foobara/rails-command-connector
|
49
47
|
changelog_uri: https://github.com/foobara/rails-command-connector/blob/main/CHANGELOG.md
|
50
48
|
rubygems_mfa_required: 'true'
|
51
|
-
post_install_message:
|
52
49
|
rdoc_options: []
|
53
50
|
require_paths:
|
54
51
|
- lib
|
@@ -56,15 +53,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
56
53
|
requirements:
|
57
54
|
- - ">="
|
58
55
|
- !ruby/object:Gem::Version
|
59
|
-
version: 3.
|
56
|
+
version: 3.4.0
|
60
57
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
61
58
|
requirements:
|
62
59
|
- - ">="
|
63
60
|
- !ruby/object:Gem::Version
|
64
61
|
version: '0'
|
65
62
|
requirements: []
|
66
|
-
rubygems_version: 3.
|
67
|
-
signing_key:
|
63
|
+
rubygems_version: 3.6.2
|
68
64
|
specification_version: 4
|
69
65
|
summary: Exposes Foobara commands through Rails router
|
70
66
|
test_files: []
|