Skip to content

Commit

Permalink
Merge branch 'release-v0.4.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
maxconway committed Apr 7, 2020
2 parents 9fb5503 + acff161 commit 9c43f3d
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 11 deletions.
7 changes: 4 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Package: gsheet
Type: Package
Title: Download Google Sheets Using Just the URL
Version: 0.4.4
Date: 2018-10-20
Version: 0.4.5
Date: 2020-04-07
Authors@R: person("Max", "Conway", email = "[email protected]",
role = c("aut", "cre"))
Description: Simple package to download Google Sheets using just the sharing
Expand All @@ -11,10 +11,11 @@ Description: Simple package to download Google Sheets using just the sharing
License: GPL-3
URL: https://github.com/maxconway/gsheet
BugReports: https://github.com/maxconway/gsheet/issues
Language: en-GB
Imports:
httr,
stringr
Suggests:
testthat,
readr
RoxygenNote: 6.1.0
RoxygenNote: 7.1.0
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# gsheet 0.4.5

- Pull request from adaRn to enable more customisation of parsing

# gsheet 0.4.3

- Added a link to google sheets to description
Expand Down
2 changes: 1 addition & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Install from CRAN with:
install.packages('gsheet')
```

Or install the latest development version from github wth:
Or install the latest development version from github with:
```{r, eval=FALSE}
devtools::install_github("maxconway/gsheet")
```
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ gsheet

[![Travis-CI Build Status](https://travis-ci.org/maxconway/gsheet.png?branch=master)](https://travis-ci.org/maxconway/gsheet) [![CRAN\_Status\_Badge](http://www.r-pkg.org/badges/version/gsheet)](https://cran.r-project.org/package=gsheet)

gsheet is a simple package to download Google Sheets (aka Google Docs Spreadsheets) using just the sharing link. Sheets can be downloaded as a data frame, or as plain text to parse manually.
gsheet is a simple package to download \[Google Sheets\](<https://www.google.com/sheets/about/> (aka Google Docs Spreadsheets) using just the sharing link. Sheets can be downloaded as a data frame, or as plain text to parse manually.

Installation
------------
Expand All @@ -16,7 +16,7 @@ Install from CRAN with:
install.packages('gsheet')
```

Or install the latest development version from github wth:
Or install the latest development version from github with:

``` r
devtools::install_github("maxconway/gsheet")
Expand All @@ -42,7 +42,7 @@ If you want more control, you might want to use something like:
``` r
url <- 'docs.google.com/spreadsheets/d/1I9mJsS5QnXF2TNNntTy-HrcdHmIF9wJ8ONYvEJTXSNo'
a <- gsheet2text(url, format='csv')
b <- read.csv(text=a, stringsAsFactors=FALSE)
b <- read.csv(a, stringsAsFactors=FALSE)
```

This way the table can be cleaned before parsing, and different options can be used in parsing.
Expand Down
21 changes: 17 additions & 4 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,24 @@
## Test environments

- ubuntu 14.04: R 3.3.2 (local)
- ubuntu 12.04: oldrel, release and devel (travis-ci)
- win-builder (release and devel)
- local: elementary OS 5.1.3 Hera (based on Ubuntu 18.04.3 LTS), R 3.6.3
- travis-ci: Ubuntu 16.04.6 LTS Xenial: oldrel, release and devel
- win-builder: oldrelease, release and devel
- R-hub:
- Windows Server 2008 R2 SP1, R-devel, 32/64 bit
- Ubuntu Linux 16.04 LTS, R-release, GCC
- Fedora Linux, R-devel, clang, gfortran

## R CMD check results
There were no ERRORs, WARNINGs or NOTEs

## Downstream dependencies
There are currently no downstream dependencies for this package
Reverse dependencies checked using revdepcheck.
There were no new ERRORs, WARNINGs or NOTEs.
GerminaR and gfer both had pre-existing notes.

Packages checked:

* GerminaR 1.4.2
* gfer 0.1.10
* odk 1.5
* spiR 0.1.1

0 comments on commit 9c43f3d

Please sign in to comment.