-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Last changes before submission to CRAN
- Loading branch information
Showing
6 changed files
with
16 additions
and
9 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 |
---|---|---|
|
@@ -8,13 +8,14 @@ Authors@R: c( | |
email = "[email protected]"), | ||
person(given = "Ronny", | ||
family = "Hernández Mora", | ||
role = c("cre", "aut"), | ||
role = c("aut"), | ||
email = "[email protected]", | ||
comment = c(ORCID = "0000-0001-6225-7096")), | ||
person(given = "Frans", | ||
family = "van Dunné", | ||
role = "aut", | ||
email="[email protected]")) | ||
role = c("cre", "aut"), | ||
email = "[email protected]", | ||
comment = c(ORCID = "0000-0002-7853-2811"))) | ||
Description: Connect to the Less Annoying CRM API to get your data clean and tidy. | ||
License: GPL-3 | file LICENSE | ||
URL: https://ixpantia.github.io/lacrmr/ | ||
|
@@ -28,15 +29,14 @@ Depends: | |
Suggests: | ||
testthat (>= 2.1.0), | ||
knitr, | ||
rmarkdown | ||
rmarkdown, | ||
httptest, | ||
mockery | ||
VignetteBuilder: knitr | ||
Repository: ixprepo | ||
Imports: | ||
dplyr, | ||
httr, | ||
jsonlite, | ||
janitor, | ||
sjmisc, | ||
httptest, | ||
stringr, | ||
mockery | ||
stringr |
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,2 @@ | ||
YEAR: 2019 | ||
YEAR: 2019-2020 | ||
COPYRIGHT HOLDER: ixpantia, S.R.L. |
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,4 +1,6 @@ | ||
#' @import magrittr | ||
NULL | ||
|
||
#' | ||
#' @title get_account_information | ||
#' | ||
|
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,4 +1,6 @@ | ||
#' @import magrittr | ||
NULL | ||
|
||
#' | ||
#' @title get_contact_information | ||
#' | ||
|
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,4 +1,6 @@ | ||
#' @import magrittr | ||
NULL | ||
|
||
#' | ||
#' @title search_contacts | ||
#' | ||
|
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,5 +1,6 @@ | ||
library(testthat) | ||
library(lacrmr) | ||
library(httptest) | ||
library(mockery) | ||
|
||
test_check("lacrmr") |