Giter Site home page Giter Site logo

mhamine / usethis Goto Github PK

View Code? Open in Web Editor NEW

This project forked from r-lib/usethis

0.0 1.0 0.0 1.41 MB

Set up commonly used πŸ“¦ components

Home Page: http://usethis.r-lib.org

License: GNU General Public License v3.0

R 99.68% Shell 0.26% Rebol 0.06%

usethis's Introduction

usethis

Travis build status AppVeyor Build Status Coverage status CRAN status lifecycle

The goal of usethis is to automate many common package and analysis setup tasks.

Installation

Install the released version of usethis from CRAN:

install.packages("usethis")

Or install the development version from GitHub with:

# install.packages("devtools")
devtools::install_github("r-lib/usethis")

Usage

Most use_*() functions operate on the active project. If you’ve just used usethis to create a new package or project, that will be the current project. Otherwise usethis tries to confirm that current working directory can be recognized as a project. Use proj_get() and proj_set() for manual intervention. Some functions have no strong connections to projects and will expect you to provide a path.

usethis is quite chatty, explaining what it’s doing and assigning you tasks. βœ” indicates something usethis has done for you. ● indicates that you’ll need to do some work yourself.

Below is a quick look at how usethis can help to set up a package.

Note: usethis is gaining more and more functionality for analytical project that are not packages. Stay tuned.

library(usethis)

# Create a new package -------------------------------------------------
tmp <- file.path(tempdir(), "mypkg")
create_package(tmp)
#> Changing active project to mypkg
#> βœ” Creating 'R/'
#> βœ” Creating 'man/'
#> βœ” Writing 'DESCRIPTION'
#> βœ” Writing 'NAMESPACE'

# Modify the description ----------------------------------------------
use_mit_license("My Name")
#> βœ” Setting License field in DESCRIPTION to 'MIT + file LICENSE'
#> βœ” Writing 'LICENSE.md'
#> βœ” Adding '^LICENSE\\.md$' to '.Rbuildignore'
#> βœ” Writing 'LICENSE'

use_package("MASS", "Suggests")
#> βœ” Adding 'MASS' to Suggests field in DESCRIPTION
#> ● Use `requireNamespace("MASS", quietly = TRUE)` to test if package is installed
#> ● Then use `MASS::fun()` to refer to functions.

use_dev_package("callr")
#> βœ” Adding 'callr' to Imports field in DESCRIPTION
#> ● Refer to functions with `callr::fun()`
#> βœ” Adding 'r-lib/callr' to DESCRIPTION Remotes

# Set up various packages ---------------------------------------------
use_roxygen_md()
#> βœ” Setting Roxygen field in DESCRIPTION to 'list(markdown = TRUE)'
#> βœ” Setting RoxygenNote field in DESCRIPTION to '6.0.1.9000'
#> ● Re-document

use_rcpp()
#> βœ” Adding 'Rcpp' to LinkingTo field in DESCRIPTION
#> βœ” Adding 'Rcpp' to Imports field in DESCRIPTION*
#> βœ” Creating 'src/'
#> βœ” Adding '*.o', '*.so', '*.dll' to 'src/.gitignore'
#> ● Include the following roxygen tags somewhere in your package
#>   #' @useDynLib mypkg, .registration = TRUE
#>   #' @importFrom Rcpp sourceCpp
#>   NULL
#> ● Run document()

use_revdep()
#> βœ” Creating 'revdep/'
#> βœ” Adding '^revdep$' to '.Rbuildignore'
#> βœ” Adding 'checks', 'library', 'checks.noindex', 'library.noindex', 'data.sqlite', '*.html' to 'revdep/.gitignore'
#> βœ” Writing 'revdep/email.yml'
#> ● Run checks with `revdepcheck::revdep_check(num_workers = 4)`

# Set up other files -------------------------------------------------
use_readme_md()
#> βœ” Writing 'README.md'

use_news_md()
#> βœ” Writing 'NEWS.md'
#> ● Edit 'NEWS.md'

use_test("my-test")
#> βœ” Adding 'testthat' to Suggests field in DESCRIPTION
#> βœ” Creating 'tests/testthat/'
#> βœ” Writing 'tests/testthat.R'
#> βœ” Writing 'tests/testthat/test-my-test.R'
#> ● Edit 'test-my-test.R'

x <- 1
y <- 2
use_data(x, y)
#> βœ” Creating 'data/'
#> βœ” Saving x to data/x.rda
#> βœ” Saving y to data/y.rda

# Use git ------------------------------------------------------------
use_git()
#> βœ” Initialising Git repo
#> βœ” Adding '.Rhistory', '.RData', '.Rproj.user' to './.gitignore'
#> βœ” Adding files and committing

Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.

usethis's People

Contributors

hadley avatar wch avatar jennybc avatar jimhester avatar batpigandme avatar krlmlr avatar geoff99 avatar yoni avatar kevinushey avatar kohske avatar ijlyttle avatar craigcitro avatar robertzk avatar ncarchedi avatar hmalmedal avatar dchiu911 avatar gaborcsardi avatar henrikbengtsson avatar uribo avatar rmflight avatar maurolepore avatar karthik avatar adrtod avatar bquast avatar bpbond avatar daattali avatar jiho avatar karl-forner-quartz-bio avatar llrs avatar lorenzwalthert avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.