-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update documentation and fix other minor issues
- Loading branch information
Showing
23 changed files
with
194 additions
and
116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,3 +10,4 @@ client_id.json | |
^data-raw$ | ||
logo.svg | ||
^LICENSE\.md$ | ||
^\.travis\.yml$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r | ||
|
||
language: R | ||
cache: packages |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,9 +10,11 @@ Authors@R: | |
family = "Bryan", | ||
role = c("ctb"), | ||
email = "[email protected]", | ||
comment = c(ORCID = "0000-0002-6983-2759")), | ||
comment = c(ORCID = "0000-0002-6983-2759", | ||
"author of gargle package")), | ||
person(given = "Google Inc", | ||
role = "cph")) | ||
role = "cph", | ||
comment = "Google Calendar API and discovery documents")) | ||
Description: Read events from the Google Calendar API. | ||
Date: 2019-06-10 | ||
License: MIT + file LICENSE | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,21 @@ | ||
YEAR: 2019 | ||
COPYRIGHT HOLDER: Andrie de Vries | ||
# MIT License | ||
|
||
Copyright (c) 2019 Andrie de Vries | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,29 @@ | ||
#' gcalendr | ||
#' | ||
#' Important functions: | ||
#' You can read Google calendar data using the Google Calendar API | ||
#' | ||
#' Access your calendar: | ||
#' | ||
#' * [get_google_token()] | ||
#' * [get_gcal_list()] | ||
#' * [get_gcal_events()] | ||
#' | ||
#' Authenticate | ||
#' | ||
#' * [gcalendr_auth()] | ||
#' * [gcalendr_token()] | ||
#' | ||
#' @name gcalendr | ||
#' @aliases gcalendr-package | ||
#' @docType package | ||
#' | ||
#' @importFrom dplyr '%>%' bind_cols select mutate if_else bind_rows one_of left_join group_by rename | ||
#' @importFrom httr GET content oauth_app config oauth_endpoints oauth2.0_token | ||
#' @importFrom purrr map map_chr map_int map_lgl map_dfr | ||
#' @importFrom purrr pluck discard pluck vec_depth | ||
#' @importFrom rlang flatten squash | ||
#' @importFrom dplyr '%>%' bind_cols select mutate if_else bind_rows one_of left_join group_by | ||
# @importFrom memoise memoise | ||
#' @importFrom purrr pluck discard pluck | ||
#' @importFrom rlang flatten is_string %||% | ||
#' @importFrom lubridate as_date as_datetime | ||
#' @importFrom tidyr nest | ||
#' @importFrom tibble tibble as_tibble | ||
#' @importFrom gargle request_make | ||
#' | ||
NULL |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.