Skip to content

Commit 7abdb23

Browse files
committed
format
1 parent f0a4aa3 commit 7abdb23

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

docs/debugging.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,24 @@ To debug the app on VSCode, use [CodeLLDB](https://marketplace.visualstudio.com/
66
$ cargo debugger --package smbcloud-cli -- account signup
77
```
88

9-
109
## Environment
1110

1211
Default environment is production. To run against dev environemt:
12+
1313
```bash
1414
$ cargo run -- -e dev account login
1515
```
1616

1717
Example debug the dev environment:
18+
1819
```bash
1920
$ cargo debugger --package cli -- -e dev account login
2021
```
2122

2223
## Run from different directory
2324

2425
To run from a different directory, use the `--manifest-path` flag and `--package` flag. :
26+
2527
```bash
2628
$ cargo debugger --manifest-path .../path/to/smbcloud-cli/Cargo.toml --package smbcloud-cli -- -e dev account login
2729
```

docs/development.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ $ cargo workspaces publish --publish-as-is
1515
```
1616

1717
It will ask whether should bump the vesions of the packages or not. To update version separately:
18+
1819
```bash
1920
$ cargo workspaces version
20-
```
21+
```

docs/gems.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ To publish the gem with native extension, there are multiple steps to do.
99
- Build the gem: `bundle exec rake compile`.
1010
- Update the gem version in the `gem/model/lib/model/version.rb`. Just use the same version as the `smbcloud-model` crate.
1111
- Compile or build the gem directly: `bundle exec rake compile` or ` bundle exec rake buid`.
12-
- Then publish the gem: `gem push pkg/smbcloud-model-{version}.gem`.
12+
- Then publish the gem: `gem push pkg/smbcloud-model-{version}.gem`.

0 commit comments

Comments
 (0)