Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add googledrive and googlesheets4 #229

Closed
hadley opened this issue Apr 19, 2020 · 2 comments
Closed

Add googledrive and googlesheets4 #229

hadley opened this issue Apr 19, 2020 · 2 comments

Comments

@hadley
Copy link
Member

hadley commented Apr 19, 2020

No description provided.

@jennybc
Copy link
Member

jennybc commented Apr 14, 2021

Just because I felt like looking at this:

# pak::pkg_install("r-lib/pkgdepends")
library(pkgdepends)
library(gert)
#> Linking to libgit2 v1.1.0, ssh support: YES
#> Global config: /Users/jenny/.gitconfig
#> Default user: Jenny Bryan <jenny.f.bryan@gmail.com>

# for knitting reasons
options(pkg.show_progress = FALSE)

f <- function() {
  pd <- new_pkg_deps("local::.")
  pd$solve()
  dat <- pd$get_resolution()
  sort(unique(dat$ref))
}

git_branch_checkout("add-google-things")
#> <git repository>: /Users/jenny/rrr/tidyverse[@add-google-things]
deps_with <- f()
#> ℹ Loading metadata database
#> ✓ Loading metadata database ... done
#> 
length(deps_with)
#> [1] 100

git_branch_checkout("master")
#> <git repository>: /Users/jenny/rrr/tidyverse[@master]
deps_without <- f()
length(deps_without)
#> [1] 93

setdiff(deps_with, deps_without)
#> [1] "gargle"        "googledrive"   "googlesheets4" "ids"          
#> [5] "rappdirs"      "rematch2"      "uuid"

Created on 2021-04-14 by the reprex package (v2.0.0.9000)

@hadley
Copy link
Member Author

hadley commented Apr 14, 2021

Done in be6f324

@hadley hadley closed this as completed Apr 14, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants