Skip to content

Commit d05605c

Browse files
committed
- Update documentation domain to bashly.dev
1 parent 5567311 commit d05605c

File tree

23 files changed

+369
-369
lines changed

23 files changed

+369
-369
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Create feature-rich bash scripts using simple YAML configuration
99
[![Build Status](https://github.com/DannyBen/bashly/workflows/Test/badge.svg)](https://github.com/DannyBen/bashly/actions?query=workflow%3ATest)
1010
[![Maintainability](https://api.codeclimate.com/v1/badges/8cf89047e50ca601e431/maintainability)](https://codeclimate.com/github/DannyBen/bashly/maintainability)
1111

12-
## [bashly.dannyb.co](https://bashly.dannyb.co)
12+
## [bashly.dev](https://bashly.dev)
1313

1414
---
1515

@@ -76,6 +76,6 @@ Visit the *[How to contribute][contributing]* page for more information.
7676

7777
[issues]: https://github.com/DannyBen/bashly/issues
7878
[discussions]: https://github.com/DannyBen/bashly/discussions
79-
[docs]: https://bashly.dannyb.co/
79+
[docs]: https://bashly.dev/
8080
[examples]: https://github.com/DannyBen/bashly/tree/master/examples#bashly-examples
8181
[contributing]: https://github.com/DannyBen/bashly/blob/master/CONTRIBUTING.md#how-to-contribute

bashly.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Gem::Specification.new do |s|
3131
s.metadata = {
3232
'bug_tracker_uri' => 'https://github.com/DannyBen/bashly/issues',
3333
'changelog_uri' => 'https://github.com/DannyBen/bashly/blob/master/CHANGELOG.md',
34-
'homepage_uri' => 'https://bashly.dannyb.co/',
34+
'homepage_uri' => 'https://bashly.dev/',
3535
'source_code_uri' => 'https://github.com/DannyBen/bashly',
3636
'rubygems_mfa_required' => 'true',
3737
}

examples/internal-run/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ want to consider using [lib functions]
2020
instead, for a more robust codebase.
2121

2222
While this pattern of calling run internally is supported, you may want to
23-
consider using [lib functions](https://bashly.dannyb.co/usage/writing-your-scripts/#adding-common-functions)
23+
consider using [lib functions](https://bashly.dev/usage/writing-your-scripts/#adding-common-functions)
2424
instead. lib functions can help create a more robust and maintainable codebase
2525
by centralizing reusable logic.
2626

lib/bashly/cli.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ class CLI
77
def self.runner
88
runner = MisterBin::Runner.new version: Bashly::VERSION,
99
header: 'Bashly - Bash CLI Generator',
10-
footer: "Help: m`bashly COMMAND --help`\nDocs: bu`https://bashly.dannyb.co`"
10+
footer: "Help: m`bashly COMMAND --help`\nDocs: bu`https://bashly.dev`"
1111

1212
runner.route 'init', to: Commands::Init
1313
runner.route 'preview', to: Commands::Preview

lib/bashly/docs/arg.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
arg:
22
help: Define positional arguments.
3-
url: https://bashly.dannyb.co/configuration/argument/
3+
url: https://bashly.dev/configuration/argument/
44
example: |-
55
args:
66
- name: user
@@ -16,7 +16,7 @@ arg:
1616
1717
arg.allowed:
1818
help: Specify a list of allowed values. Can be used in conjunction with `default` and `required`.
19-
url: https://bashly.dannyb.co/configuration/argument/#allowed
19+
url: https://bashly.dev/configuration/argument/#allowed
2020
example: |-
2121
args:
2222
- name: region
@@ -35,7 +35,7 @@ arg.allowed:
3535
3636
arg.default:
3737
help: Specify the value to apply when not provided by the user.
38-
url: https://bashly.dannyb.co/configuration/argument/#default
38+
url: https://bashly.dev/configuration/argument/#default
3939
example: |-
4040
args:
4141
- name: images
@@ -44,7 +44,7 @@ arg.default:
4444
4545
arg.help:
4646
help: Specify the help message for this argument.
47-
url: https://bashly.dannyb.co/configuration/argument/#help
47+
url: https://bashly.dev/configuration/argument/#help
4848
example: |-
4949
args:
5050
- name: user
@@ -53,7 +53,7 @@ arg.help:
5353
5454
arg.name:
5555
help: Specify the lowercase name of the argument.
56-
url: https://bashly.dannyb.co/configuration/argument/#name
56+
url: https://bashly.dev/configuration/argument/#name
5757
example: |-
5858
args:
5959
- name: user
@@ -67,7 +67,7 @@ arg.repeatable:
6767
The argument below will be received as a space-delimited string which needs to be converted to an array with:
6868
`eval "data=(${args[file]})"`
6969
70-
url: https://bashly.dannyb.co/configuration/argument/#repeatable
70+
url: https://bashly.dev/configuration/argument/#repeatable
7171
example: |-
7272
args:
7373
- name: file
@@ -77,7 +77,7 @@ arg.repeatable:
7777
7878
arg.required:
7979
help: Specify that this argument is required.
80-
url: https://bashly.dannyb.co/configuration/argument/#required
80+
url: https://bashly.dev/configuration/argument/#required
8181
example: |-
8282
args:
8383
- name: region
@@ -87,7 +87,7 @@ arg.required:
8787
arg.validate:
8888
help: Apply custom validation functions.
8989

90-
url: https://bashly.dannyb.co/configuration/argument/#validate
90+
url: https://bashly.dev/configuration/argument/#validate
9191
example: |-
9292
args:
9393
- name: path

lib/bashly/docs/command.yml

+23-23
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
command:
22
help: Define the root command, or any sub-command.
3-
url: https://bashly.dannyb.co/configuration/command/
3+
url: https://bashly.dev/configuration/command/
44
example: |-
55
name: rush
66
help: Personal package manager
@@ -17,7 +17,7 @@ command:
1717
1818
command.alias:
1919
help: Specify one or more aliases for this sub-command.
20-
url: https://bashly.dannyb.co/configuration/command/#alias
20+
url: https://bashly.dev/configuration/command/#alias
2121
example: |-
2222
# Define a single alias
2323
command:
@@ -36,7 +36,7 @@ command.alias:
3636
3737
command.args:
3838
help: Define a list of positional arguments. See `arg` for reference.
39-
url: https://bashly.dannyb.co/configuration/command/#args
39+
url: https://bashly.dev/configuration/command/#args
4040
example: |-
4141
args:
4242
- name: repo
@@ -45,7 +45,7 @@ command.args:
4545
4646
command.catch_all:
4747
help: Specify that this command should allow for additional arbitrary arguments or flags.
48-
url: https://bashly.dannyb.co/configuration/command/#catch_all
48+
url: https://bashly.dev/configuration/command/#catch_all
4949
example: |-
5050
commands:
5151
- name: download
@@ -67,7 +67,7 @@ command.catch_all:
6767
6868
command.commands:
6969
help: Define a list of sub-commands. See `command` for reference.
70-
url: https://bashly.dannyb.co/configuration/command/#commands
70+
url: https://bashly.dev/configuration/command/#commands
7171
example: |-
7272
commands:
7373
- name: add
@@ -76,7 +76,7 @@ command.commands:
7676
7777
command.completions:
7878
help: Specify a list of additional completion suggestions when used in conjunction with `bashly add completions`.
79-
url: https://bashly.dannyb.co/configuration/command/#completions
79+
url: https://bashly.dev/configuration/command/#completions
8080
example: |-
8181
commands:
8282
- name: view
@@ -88,7 +88,7 @@ command.completions:
8888
8989
command.default:
9090
help: Specify that this sub-command will be executed implicitly.
91-
url: https://bashly.dannyb.co/configuration/command/#default
91+
url: https://bashly.dev/configuration/command/#default
9292
example: |-
9393
# This command will execute when the command line is not
9494
# recognized.
@@ -106,7 +106,7 @@ command.default:
106106
107107
command.dependencies:
108108
help: Specify a list of required external commands that are needed to run this command.
109-
url: https://bashly.dannyb.co/configuration/command/#dependencies
109+
url: https://bashly.dev/configuration/command/#dependencies
110110
example: |-
111111
# Array syntax
112112
dependencies:
@@ -128,7 +128,7 @@ command.dependencies:
128128
129129
command.environment_variables:
130130
help: Define a list of environment variables. See `environment_variable` for reference.
131-
url: https://bashly.dannyb.co/configuration/command/#environment_variables
131+
url: https://bashly.dev/configuration/command/#environment_variables
132132
example: |-
133133
environment_variables:
134134
- name: config_path
@@ -140,7 +140,7 @@ command.environment_variables:
140140
141141
command.examples:
142142
help: Define one or more example messages.
143-
url: https://bashly.dannyb.co/configuration/command/#examples
143+
url: https://bashly.dev/configuration/command/#examples
144144
example: |-
145145
# Use an array of examples for simple one-liners.
146146
examples:
@@ -159,7 +159,7 @@ command.examples:
159159
160160
command.expose:
161161
help: Specify that the sub-commands of this command should be visible when showing the usage of its parent.
162-
url: https://bashly.dannyb.co/configuration/command/#expose
162+
url: https://bashly.dev/configuration/command/#expose
163163
example: |-
164164
name: cli
165165
commands:
@@ -190,7 +190,7 @@ command.expose:
190190
191191
command.extensible:
192192
help: Specify that this command can be extended by external means.
193-
url: https://bashly.dannyb.co/configuration/command/#extensible
193+
url: https://bashly.dev/configuration/command/#extensible
194194
example: |-
195195
name: mygit
196196
help: Wrapper for git
@@ -206,7 +206,7 @@ command.extensible:
206206
207207
command.filename:
208208
help: Specify the path (relative to src) to the partial source code file.
209-
url: https://bashly.dannyb.co/configuration/command/#filename
209+
url: https://bashly.dev/configuration/command/#filename
210210
example: |-
211211
commands:
212212
- name: connect
@@ -215,7 +215,7 @@ command.filename:
215215
216216
command.filters:
217217
help: Specify a list of custom filter functions that will prevent the command from running unless certain conditions are met.
218-
url: https://bashly.dannyb.co/configuration/command/#filters
218+
url: https://bashly.dev/configuration/command/#filters
219219
example: |-
220220
commands:
221221
- name: container
@@ -235,7 +235,7 @@ command.filters:
235235
236236
command.flags:
237237
help: Define a list of option flags. See `flag` for reference.
238-
url: https://bashly.dannyb.co/configuration/command/#flags
238+
url: https://bashly.dev/configuration/command/#flags
239239
example: |-
240240
flags:
241241
- long: --purge
@@ -244,13 +244,13 @@ command.flags:
244244
245245
command.footer:
246246
help: Specify a message to show at the bottom of the help text.
247-
url: https://bashly.dannyb.co/configuration/command/#footer
247+
url: https://bashly.dev/configuration/command/#footer
248248
example: |-
249249
footer: For further help visit https://my.docs-site.com
250250
251251
command.function:
252252
help: Specify a different base function name for this command.
253-
url: https://bashly.dannyb.co/configuration/command/#function
253+
url: https://bashly.dev/configuration/command/#function
254254
example: |-
255255
commands:
256256
- name: container-start
@@ -271,7 +271,7 @@ command.function:
271271
272272
command.group:
273273
help: Specify the group that this command belongs to.
274-
url: https://bashly.dannyb.co/configuration/command/#group
274+
url: https://bashly.dev/configuration/command/#group
275275
example: |-
276276
command:
277277
name: start
@@ -280,7 +280,7 @@ command.group:
280280
281281
command.help:
282282
help: Specify the help text to show when displaying usage.
283-
url: https://bashly.dannyb.co/configuration/command/#help
283+
url: https://bashly.dev/configuration/command/#help
284284
example: |-
285285
name: docker
286286
help: Runtime for containers
@@ -291,7 +291,7 @@ command.help:
291291
292292
command.name:
293293
help: Specify the name of the command. This option is required.
294-
url: https://bashly.dannyb.co/configuration/command/#name
294+
url: https://bashly.dev/configuration/command/#name
295295
example: |-
296296
name: docker
297297
help: Runtime for containers
@@ -302,7 +302,7 @@ command.name:
302302
303303
command.private:
304304
help: Specify that this command should not be displayed in the help text.
305-
url: https://bashly.dannyb.co/configuration/command/#private
305+
url: https://bashly.dev/configuration/command/#private
306306
example: |-
307307
commands:
308308
- name: completions
@@ -311,7 +311,7 @@ command.private:
311311
312312
command.variables:
313313
help: Define a list of global bash variables. See `variable` for reference.
314-
url: https://bashly.dannyb.co/configuration/command/#variables
314+
url: https://bashly.dev/configuration/command/#variables
315315
example: |-
316316
variables:
317317
# Simple value
@@ -332,7 +332,7 @@ command.variables:
332332
333333
command.version:
334334
help: Specify the version to show when running with `--version`.
335-
url: https://bashly.dannyb.co/configuration/command/#version
335+
url: https://bashly.dev/configuration/command/#version
336336
example: |-
337337
name: rush
338338
help: Personal package manager

lib/bashly/docs/env.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
environment_variable:
22
help: Define environment variables that will be in use in your script.
3-
url: https://bashly.dannyb.co/configuration/environment-variable/
3+
url: https://bashly.dev/configuration/environment-variable/
44
example: |-
55
environment_variables:
66
- name: config_path
@@ -12,7 +12,7 @@ environment_variable:
1212
1313
environment_variable.default:
1414
help: Specify the value to apply when not provided by the user.
15-
url: https://bashly.dannyb.co/configuration/environment-variable/#default
15+
url: https://bashly.dev/configuration/environment-variable/#default
1616
example: |-
1717
environment_variables:
1818
- name: config_path
@@ -21,23 +21,23 @@ environment_variable.default:
2121
2222
environment_variable.help:
2323
help: Specify the help message for this variable.
24-
url: https://bashly.dannyb.co/configuration/environment-variable/#help
24+
url: https://bashly.dev/configuration/environment-variable/#help
2525
example: |-
2626
environment_variables:
2727
- name: api_key
2828
help: Your API key
2929
3030
environment_variable.name:
3131
help: Specify the lowercase name of the variable.
32-
url: https://bashly.dannyb.co/configuration/environment-variable/#name
32+
url: https://bashly.dev/configuration/environment-variable/#name
3333
example: |-
3434
environment_variables:
3535
- name: api_key
3636
help: Your API key
3737
3838
environment_variable.private:
3939
help: Specify that this environment variable should not be advertised in the usage text.
40-
url: https://bashly.dannyb.co/configuration/environment-variable/#private
40+
url: https://bashly.dev/configuration/environment-variable/#private
4141
example: |-
4242
environment_variables:
4343
- name: editor
@@ -47,7 +47,7 @@ environment_variable.private:
4747
4848
environment_variable.required:
4949
help: Specify that this variable is required.
50-
url: https://bashly.dannyb.co/configuration/environment-variable/#required
50+
url: https://bashly.dev/configuration/environment-variable/#required
5151
example: |-
5252
environment_variables:
5353
- name: api_key
@@ -57,7 +57,7 @@ environment_variable.required:
5757
environment_variable.validate:
5858
help: Apply custom validation functions.
5959

60-
url: https://bashly.dannyb.co/configuration/environment-variable/#validate
60+
url: https://bashly.dev/configuration/environment-variable/#validate
6161
example: |-
6262
environment_variables:
6363
- name: build_dir

0 commit comments

Comments
 (0)