Skip to content

Commit

Permalink
Rename package to plumesbox
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveViss committed Oct 14, 2024
1 parent e11d42a commit f25b4db
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Package: toxbox
Package: plumesbox
Title: Application and utils for contaminants data processing
Version: 0.0.1
Authors@R: c(
Expand All @@ -11,8 +11,8 @@ Authors@R: c(
Description: This package aims at facilitate data processing and models
building in order to spend more time on the field.
License: MIT + file LICENSE
URL: https://github.com/ECCC-lavoie-ecotox/toxbox
BugReports: https://github.com/ECCC-lavoie-ecotox/toxbox/issues
URL: https://github.com/ECCC-lavoie-ecotox/plumesbox
BugReports: https://github.com/ECCC-lavoie-ecotox/plumesbox/issues
Depends:
R (>= 4.0)
Imports:
Expand Down
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# toxbox 0.0.1
# plumesbox 0.0.1

* Initial CRAN submission.
2 changes: 1 addition & 1 deletion R/app_config.R
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#'
#' @noRd
app_sys <- function(...) {
system.file(..., package = "toxbox")
system.file(..., package = "plumesbox")
}


Expand Down
2 changes: 1 addition & 1 deletion R/app_ui.R
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ golem_add_external_resources <- function() {
favicon(),
bundle_resources(
path = app_sys("app/www"),
app_title = "toxbox"
app_title = "plumesbox"
)
)
}
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
# toxbox <img src="man/figures/logo.png" width="200px" align="right" style="margin-top:3rem"/>
# plumesbox <img src="man/figures/logo.png" width="200px" align="right" style="margin-top:3rem"/>

[![R-CMD-Check](https://github.com/ECCC-lavoie-ecotox/toxbox/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/ECCC-lavoie-ecotox/toxbox/actions/workflows/R-CMD-check.yaml)
[![R-CMD-Check](https://github.com/ECCC-lavoie-ecotox/plumesbox/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/ECCC-lavoie-ecotox/plumesbox/actions/workflows/R-CMD-check.yaml)
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html#experimental)

Nothing fancy here, toxbox gathers miscellaneous utils for data processing and statistical modelling in order to spend more time on the field. This toolbox is dedicated to help members of Lavoie's lab.
Nothing fancy here, plumesbox gathers miscellaneous utils for data processing and statistical modelling in order to spend more time on the field. This toolbox is dedicated to help members of Lavoie's lab.

## Installation

You can install the development version of toxbox from [GitHub](https://github.com/) with:
You can install the development version of plumesbox from [GitHub](https://github.com/) with:

``` r
# install.packages("devtools")
devtools::install_github("ECCC-lavoie-ecotox/toxbox")
devtools::install_github("ECCC-lavoie-ecotox/plumesbox")
```

## Read the documentation

All functions are documented at this address: https://eccc-lavoie-ecotox.github.io/toxbox
All functions are documented at this address: https://eccc-lavoie-ecotox.github.io/plumesbox

## Reloading a Shiny application on source changes

Expand Down
2 changes: 1 addition & 1 deletion dev/01_start.R
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
## to change the name in the app_sys() function in app_config.R /!\
##
golem::fill_desc(
pkg_name = "toxbox", # The Name of the package containing the App
pkg_name = "plumesbox", # The Name of the package containing the App
pkg_title = "PKG_TITLE", # The Title of the package containing the App
pkg_description = "PKG_DESC.", # The Description of the package containing the App
author_first_name = "AUTHOR_FIRST", # Your First Name
Expand Down
2 changes: 1 addition & 1 deletion dev/02_dev.R
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ usethis::use_test("app")
# Documentation

## Vignette ----
usethis::use_vignette("toxbox")
usethis::use_vignette("plumesbox")
devtools::build_vignettes()

## Code Coverage----
Expand Down
2 changes: 1 addition & 1 deletion inst/golem-config.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
default:
golem_name: toxbox
golem_name: plumesbox
golem_version: 0.0.0.9000
app_prod: no
tables:
Expand Down
4 changes: 2 additions & 2 deletions tests/testthat.R
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
# * https://testthat.r-lib.org/articles/special-files.html

library(testthat)
library(toxbox)
library(plumesbox)

test_check("toxbox")
test_check("plumesbox")

0 comments on commit f25b4db

Please sign in to comment.