Skip to content

Commit

Permalink
rebuild readme
Browse files Browse the repository at this point in the history
  • Loading branch information
slager committed Apr 17, 2024
1 parent f054fef commit fda16f2
Showing 1 changed file with 7 additions and 12 deletions.
19 changes: 7 additions & 12 deletions README.md
Expand Up @@ -234,8 +234,8 @@ datapackage_skeleton(
code_files = processing_code,
r_object_names = "cars_over_20",
path = tempdir())
#> ✔ Creating 'C:/Users/dslager/AppData/Local/Temp/Rtmp4eVyRE/mtcars20/'
#> ✔ Setting active project to 'C:/Users/dslager/AppData/Local/Temp/Rtmp4eVyRE/mtcars20'
#> ✔ Creating 'C:/Users/dslager/AppData/Local/Temp/RtmpSCRvVa/mtcars20/'
#> ✔ Setting active project to 'C:/Users/dslager/AppData/Local/Temp/RtmpSCRvVa/mtcars20'
#> ✔ Creating 'R/'
#> ✔ Writing 'DESCRIPTION'
#> Package: mtcars20
Expand All @@ -251,7 +251,7 @@ datapackage_skeleton(
#> RoxygenNote: 7.3.1
#> ✔ Writing 'NAMESPACE'
#> ✔ Setting active project to '<no active project>'
#> ✔ Setting active project to 'C:/Users/dslager/AppData/Local/Temp/Rtmp4eVyRE/mtcars20'
#> ✔ Setting active project to 'C:/Users/dslager/AppData/Local/Temp/RtmpSCRvVa/mtcars20'
#> ✔ Added DataVersion string to 'DESCRIPTION'
#> ✔ Creating 'data-raw/'
#> ✔ Creating 'data/'
Expand Down Expand Up @@ -281,18 +281,13 @@ package_build(packageName = file.path(tempdir(),"mtcars20"), install = FALSE,
#> Writing 'mtcars20.Rd'
#> Writing 'cars_over_20.Rd'
#> ── R CMD build ─────────────────────────────────────────────────────────────────
#> checking for file 'C:\Users\dslager\AppData\Local\Temp\Rtmp4eVyRE\mtcars20/DESCRIPTION' ... checking for file 'C:\Users\dslager\AppData\Local\Temp\Rtmp4eVyRE\mtcars20/DESCRIPTION' ... ✔ checking for file 'C:\Users\dslager\AppData\Local\Temp\Rtmp4eVyRE\mtcars20/DESCRIPTION' (383ms)
#> checking for file 'C:\Users\dslager\AppData\Local\Temp\RtmpSCRvVa\mtcars20/DESCRIPTION' ... ✔ checking for file 'C:\Users\dslager\AppData\Local\Temp\RtmpSCRvVa\mtcars20/DESCRIPTION'
#> ─ preparing 'mtcars20':
#> checking DESCRIPTION meta-information ... checking DESCRIPTION meta-information ... ✔ checking DESCRIPTION meta-information
#> ─ checking for LF line-endings in source and make files and shell scripts
#> ─ checking for empty or unneeded directories
#> ─ looking to see if a 'data/datalist' file should be added
#> NB: this package now depends on R (>= NB: this package now depends on R (>= 3.5.0)
#> WARNING: Added dependency on R >= 3.5.0 because serialized objects in
#> serialize/load version 3 cannot be read in older versions of R.
#> File(s) containing such objects:
#> 'mtcars20/data/cars_over_20.rda' 'mtcars20/data/cars_over_20.rda'
#> ─ building 'mtcars20_1.0.tar.gz'
#> ─ building 'mtcars20_1.0.tar.gz'
#>
#> Next Steps
#> 1. Update your package documentation.
Expand All @@ -305,7 +300,7 @@ package_build(packageName = file.path(tempdir(),"mtcars20"), install = FALSE,
#> - Set up a github repository for your pacakge.
#> - Add the github repository as a remote of your local package repository.
#> - git push your local repository to gitub.
#> [1] "C:/Users/dslager/AppData/Local/Temp/Rtmp4eVyRE/mtcars20_1.0.tar.gz"
#> [1] "C:/Users/dslager/AppData/Local/Temp/RtmpSCRvVa/mtcars20_1.0.tar.gz"

# Update the autogenerated roxygen documentation in data-raw/documentation.R.
# edit(file.path(tempdir(),"mtcars20","R","mtcars20.R"))
Expand All @@ -319,7 +314,7 @@ document(file.path(tempdir(),"mtcars20"), install = FALSE,

# Let's use the package we just created.
install.packages(file.path(tempdir(),"mtcars20_1.0.tar.gz"), type = "source", repos = NULL)
#> Installing package into 'C:/Users/dslager/AppData/Local/Temp/RtmpuAN4wY/temp_libpath3a5c1ce4597'
#> Installing package into 'C:/Users/dslager/AppData/Local/Temp/Rtmpk5QUs0/temp_libpath1af01866231b'
#> (as 'lib' is unspecified)
library(mtcars20)
data("cars_over_20") # load the data
Expand Down

0 comments on commit fda16f2

Please sign in to comment.