foobara-sh-cli-connector 1.1.1 → 1.1.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 58d3fd83b530ea3ba876112fee18c05fc5d84dad4399ca52403c011f21eea6d5
4
- data.tar.gz: fea12f7c629467c9e41505909a1228a02af76a194793c11f5ec59dc60390769d
3
+ metadata.gz: 66e8c8336729e6c840ee38fec2f6b8d96237f078e1974c0fc2a38193307a1d29
4
+ data.tar.gz: d2a0652b6e70a782d46dc49dc5843cb30881465471db652d3f9a0f08be98139e
5
5
  SHA512:
6
- metadata.gz: dd0afcbcfccf171ee874a17288f9b65899a53afac838c5d702fda8e58bb6063adbf3dae19688836691b814b9ee1c4f4e491df63a9e3546e92ec8692e77f66d28
7
- data.tar.gz: f0ad7b171126eef0ae5dfa5142ac3c312fbda1c2b859672cc39b4623b7b1567bc2a5c3775efe9e618fe4bc31c6ea5959be0704e5a72f513b766c407e04c36ea9
6
+ metadata.gz: 22f34b1310e54975cc3839e27bf3993ca51f49248a2cff8d204ad410348bd1b668de63fedfdc7c443a7b4c36374fdb96e335a8416a88737289a95060c389afef
7
+ data.tar.gz: 7bad46487ed10907757345ba223a236724d0a073937d04b2831ecb3d7185d9b449f3fe761ac8b3b75e6b657fe70af81f64e564afdf397146d5888254258c5c55
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## [1.1.2] - 2025-11-04
2
+
3
+ - Fix an off-by-one line-wrapping bug when using --help
4
+
1
5
  ## [1.1.1] - 2025-11-01
2
6
 
3
7
  - Make values shown in help properly quoted for sh, consistently across one_of and default
@@ -43,7 +43,7 @@ module Foobara
43
43
 
44
44
  lines.each do |line|
45
45
  if indent > 0
46
- line = (" " * indent) + line
46
+ line = (" " * (indent - 1)) + line
47
47
  end
48
48
 
49
49
  io.puts line.rstrip
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: foobara-sh-cli-connector
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Miles Georgi
@@ -58,7 +58,7 @@ files:
58
58
  - src/sh_cli_connector/request.rb
59
59
  - src/sh_cli_connector/serializers/cli_errors_serializer.rb
60
60
  - src/sh_cli_connector/serializers/cli_result_serializer.rb
61
- - src/sh_cli_connector/serializers/cli_tabular_serialzier.rb
61
+ - src/sh_cli_connector/serializers/cli_tabular_serializer.rb
62
62
  homepage: https://github.com/foobara/sh-cli-connector
63
63
  licenses:
64
64
  - Apache-2.0