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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 85b87cf4ca9d03e7074214e48e8b360b8c4699413fa0e4afa3a8cc86308abd18
4
- data.tar.gz: 35fd962b96178619a87d6fb9461e5a5b30f90985eb08efc020b94c89c789afcc
3
+ metadata.gz: e3d2c6b110dd56102f9e679cf724b2afbdb9a1c9b0ffe9c7f558d45a5292b404
4
+ data.tar.gz: 9b7b9c53655efbe0ff2f105d1dc5570ac4fb928de260f7d93800a6f1f2382b38
5
5
  SHA512:
6
- metadata.gz: 04eca877f738fe6eb9ab755829752971d54a9065176723f8adb4ef2a0022fd6a80eeb4e346dbf05ad6d0154fa0393772eda5c3ad4d6b93350bc760fa62451e5e
7
- data.tar.gz: 5e28e4449c228fcfe0bca3648e41e1c294c8b6851c564aaf3c35587b5e8ca6f315026d8d66d4d87d46ccd9d1940099153d331697894ad20d599650c13f82ff4e
6
+ metadata.gz: 04151ec8cc378ffee81ed8830b8c4a9e4ed1698bc2d34d4cebb5fff34a90398a3aee4ca19dc6e5ed09ab736367c09112c1d1ce3064a11a09f95f2510de839ea8
7
+ data.tar.gz: 0cbbdca2302eb49b115ee785649685563597e450b980e89ff10c0f9921e5ac24168a06724ac89b7e5e5e487e87e714aa18707ddb090757a71ec566e71be3ff0e
data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## [0.0.5] - 2025-01-28
2
+
3
+ - Fix problem preventing routes without any args
4
+
5
+ ## [0.0.4] - 2025-01-07
6
+
7
+ - Bump Ruby to 3.4.1
8
+
1
9
  ## [0.0.3] - 2024-12-02
2
10
 
3
11
  - Eliminate HTTP_COMMAND_CONNECTOR
@@ -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.3
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: 2024-12-02 00:00:00.000000000 Z
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.2.2
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.5.23
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: []