Skip to content

Commit 0aa439b

Browse files
committed
approvals
1 parent afa855b commit 0aa439b

File tree

9 files changed

+15
-11
lines changed

9 files changed

+15
-11
lines changed

examples/colors/src/lib/colors.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ white() { print_in_color "\e[37m" "$*"; }
4242

4343
bold() { print_in_color "\e[1m" "$*"; }
4444
underlined() { print_in_color "\e[4m" "$*"; }
45+
bold_underlined() { print_in_color "\e[1;4m" "$*"; }
4546

4647
red_bold() { print_in_color "\e[1;31m" "$*"; }
4748
green_bold() { print_in_color "\e[1;32m" "$*"; }

examples/dependencies-alt/src/lib/colors.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ white() { print_in_color "\e[37m" "$*"; }
4242

4343
bold() { print_in_color "\e[1m" "$*"; }
4444
underlined() { print_in_color "\e[4m" "$*"; }
45+
bold_underlined() { print_in_color "\e[1;4m" "$*"; }
4546

4647
red_bold() { print_in_color "\e[1;31m" "$*"; }
4748
green_bold() { print_in_color "\e[1;32m" "$*"; }

examples/dependencies/src/lib/colors.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ white() { print_in_color "\e[37m" "$*"; }
4242

4343
bold() { print_in_color "\e[1m" "$*"; }
4444
underlined() { print_in_color "\e[4m" "$*"; }
45+
bold_underlined() { print_in_color "\e[1;4m" "$*"; }
4546

4647
red_bold() { print_in_color "\e[1;31m" "$*"; }
4748
green_bold() { print_in_color "\e[1;32m" "$*"; }

examples/render-mandoc/docs/download.1

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
.\" Automatically generated by Pandoc 3.2
1+
.\" Automatically generated by Pandoc 3.9
22
.\"
3-
.TH "download" "1" "January 2026" "Version 0.1.0" "Sample application"
3+
.TH "download" "1" "February 2026" "Version 0.1.0" "Sample application"
44
.SH NAME
55
\f[B]download\f[R] \- Sample application
66
.SH SYNOPSIS
@@ -11,13 +11,13 @@ Sample application
1111
.SH ARGUMENTS
1212
.SS SOURCE
1313
Source to download from
14-
.IP \[bu] 2
14+
.IP \(bu 2
1515
\f[I]Required\f[R]
16-
.IP \[bu] 2
16+
.IP \(bu 2
1717
Allowed Values: \f[B]server1, server2\f[R]
1818
.SS TARGET
1919
Target filename (default: same as source)
20-
.IP \[bu] 2
20+
.IP \(bu 2
2121
\f[I]Repeatable\f[R]
2222
.SH OPTIONS
2323
.SS \-\-force, \-f

examples/render-mandoc/docs/download.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
% download(1) Version 0.1.0 | Sample application
22
% Lana Lang
3-
% January 2026
3+
% February 2026
44

55
NAME
66
==================================================

spec/approvals/examples/dependencies-alt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ args: none
2424
deps:
2525
- ${deps[git]} = /usr/bin/git
2626
- ${deps[http_client]} = /usr/bin/curl
27-
- ${deps[ruby]} = /home/vagrant/.rbenv/versions/4.0.0/bin/ruby
27+
- ${deps[ruby]} = /home/.../ruby

spec/approvals/examples/render-mandoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
saved docs/download.md
22
saved docs/download.1
3-
download(1) Sample application download(1)
3+
download(1) Sample application download(1)
44

55
NAME
66
download - Sample application

spec/approvals/libraries/render/mandoc/render-1-download.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
download(1) Sample minimal application without commands download(1)
1+
download(1) Sample minimal application without commands download(1)
22

33
NAME
44
download - Sample minimal application without commands

spec/bashly/integration/examples_spec.rb

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,9 @@
2727
# are too volatile (e.g. line number changes)
2828
let(:exceptions) do
2929
{
30-
'examples/stacktrace' => [/download:\d+/, 'download:<line>'],
31-
'examples/render-mandoc' => [/Version 0.1.0.*download\(1\)/, '<footer>'],
30+
'examples/stacktrace' => [/download:\d+/, 'download:<line>'],
31+
'examples/render-mandoc' => [/Version 0.1.0.*download\(1\)/, '<footer>'],
32+
'examples/dependencies-alt' => [%r[/home/(.+)/ruby], '/home/.../ruby']
3233
}
3334
end
3435

0 commit comments

Comments
 (0)