Skip to content

Commit 5b2fe8c

Browse files
committed
Fixed documentation
1 parent e9b0999 commit 5b2fe8c

8 files changed

Lines changed: 501 additions & 55 deletions

File tree

.Rbuildignore

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,30 @@
11
^[.]?air[.]toml$
2-
^\.vscode$
32
^LICENSE\.md$
43
^rpkgkit\.Rproj$
54
^\.Rproj\.user$
65
^README\.Rmd$
76
^cran-comments\.md$
87

9-
108
# flir files
119
^flir$
1210
^\.github$
1311
^_pkgdown\.yml$
1412
^docs$
1513
^pkgdown$
1614
^codecov\.yml$
15+
^\.Rbuildignore$
16+
^\.Rhistory$
17+
^\.Rdata$
18+
^\.Rcheck$
19+
^\.Rapp\.Rproj$
20+
^\.Rapp\.Rproj\.user$
21+
^\.Rapp\.history$
22+
23+
# git
24+
^\.git$
25+
^\.gitignore$
26+
27+
# IDE / dev tools
28+
^\.codebuddy$
29+
^\.fresh$
30+
^\.vscode$

NEWS.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## MINOR IMPROVEMENTS
44

5+
* Added basic color support to `news_md_show()`
6+
7+
* Added dependency, description and nocov tag in `create_standalone()`
8+
59
* Fixed pattern detection of `detect_lost_glue_brace()` when resolving contexts with more than one lines. Added more detailed info in output
610

711

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ ts_cli$cli_alert_info("Hello, world!")
101101
- `inquire_standalone()` - List standalone files available in a GitHub
102102
repository's `R/` directory
103103

104-
- `browse_standalone()` - Fetch all standalone files from GitHub
104+
- `browse_standalone()` - Look up all available standalone files in GitHub repositories
105105

106106
<!-- -->
107107
```r
@@ -143,8 +143,6 @@ browse_standalone()
143143
- `create_standalone()` - Create standalone utility files in your
144144
package
145145

146-
<!-- -->
147-
148146
```r
149147
create_standalone("foo")
150148
# ✔ Created standalone file: /data/home/yyx/Project/rpkgkit/R/standalone-.R
@@ -160,6 +158,10 @@ In `R/standalone-foo.R`
160158
# license: https://unlicense.org
161159
# imports: []
162160
# ---
161+
#
162+
# This file provides...
163+
#
164+
# nocov start
163165
```
164166

165167
- `update_time_in_standalone()` - Update `last-updated` field in

man/create_standalone.Rd

Lines changed: 6 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/news_md.Rd

Lines changed: 33 additions & 32 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)