foobara-rails-command-connector 0.0.3 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/src/rails_command_connector.rb +3 -0
- 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: e3d2c6b110dd56102f9e679cf724b2afbdb9a1c9b0ffe9c7f558d45a5292b404
|
4
|
+
data.tar.gz: 9b7b9c53655efbe0ff2f105d1dc5570ac4fb928de260f7d93800a6f1f2382b38
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 04151ec8cc378ffee81ed8830b8c4a9e4ed1698bc2d34d4cebb5fff34a90398a3aee4ca19dc6e5ed09ab736367c09112c1d1ce3064a11a09f95f2510de839ea8
|
7
|
+
data.tar.gz: 0cbbdca2302eb49b115ee785649685563597e450b980e89ff10c0f9921e5ac24168a06724ac89b7e5e5e487e87e714aa18707ddb090757a71ec566e71be3ff0e
|
data/CHANGELOG.md
CHANGED
@@ -43,6 +43,9 @@ module Foobara
|
|
43
43
|
connector.supported_actions.each do |action|
|
44
44
|
match "#{prefix}/#{action}/*args", to: "foobara/rails##{action}",
|
45
45
|
via: %i[get post patch put delete]
|
46
|
+
match "#{prefix}/#{action}", to: "foobara/rails##{action}",
|
47
|
+
via: %i[get post patch put delete],
|
48
|
+
defaults: { args: "" }
|
46
49
|
end
|
47
50
|
end
|
48
51
|
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.5
|
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-28 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: []
|