Skip to content

Commit

Permalink
update install command
Browse files Browse the repository at this point in the history
  • Loading branch information
Tazinho committed Aug 22, 2018
1 parent 683b267 commit 6454d50
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ For a short intro regarding typical use cases, see the blog article [Introducing

```{r, results='hide', message=FALSE, warning=FALSE, eval = TRUE}
# install snakecase from cran
# install.packages("snakecase")
install.packages("snakecase")
# or the (stable) development version hosted on github
install.packages("devtools")
devtools::install_github("Tazinho/snakecase", ref = "devversion-01")
# install.packages("devtools")
# devtools::install_github("Tazinho/snakecase")
# load snakecase
library(snakecase)
Expand Down
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ package](http://www.malte-grosser.com/post/introducing-the-snakecase-package/).

``` r
# install snakecase from cran
# install.packages("snakecase")
install.packages("snakecase")

# or the (stable) development version hosted on github
install.packages("devtools")
devtools::install_github("Tazinho/snakecase", ref = "devversion-01")
# install.packages("devtools")
# devtools::install_github("Tazinho/snakecase")

# load snakecase
library(snakecase)
Expand Down Expand Up @@ -73,7 +73,6 @@ output:

``` r
library(magrittr)
## Warning: package 'magrittr' was built under R version 3.5.1

to_snake_case(c("SomeBAdInput", "someGoodInput")) %>% dput()
## c("some_b_ad_input", "some_good_input")
Expand Down
2 changes: 1 addition & 1 deletion cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Test environments
* local Windows X install, R 3.5.1
* default (linux) travis-ci environment (3.1, 3.2, oldrel (3.4.4), release (3.5.0), devel (3.))
* default (linux) travis-ci environment (R 3.1, 3.2, oldrel (3.4.4), release (3.5.0), devel)
* default AppVeyor environment (R 3.5.1)

## R CMD check results
Expand Down

0 comments on commit 6454d50

Please sign in to comment.