-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
56 additions
and
54 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 |
---|---|---|
@@ -1,33 +1,35 @@ | ||
Package: gitear | ||
Title: Client to the 'gitea' API | ||
Version: 1.0.0 | ||
Authors@R: c( | ||
person(family="ixpantia, SRL", role = "aut", email = "[email protected]"), | ||
person("Frans", "van Dunné", role=c("cre", "aut"), email="[email protected]"), | ||
person("Francisco", "Sácida", role="aut", email="[email protected]"), | ||
person("Ronny", "Hernández Mora", role="aut", email="[email protected]"), | ||
person("Patrick", "Santamaría Guzmán", role="ctb", email="[email protected]")) | ||
Description: 'Gitea' is a community managed, lightweight code hosting solution | ||
were projects and their respective git repositories can be managed | ||
<https://gitea.io>. This package gives an interface to the 'Gitea' API to | ||
access and manage repositories, issues and organizations directly in R. | ||
Depends: R (>= 3.5.0) | ||
Imports: | ||
httr, | ||
jsonlite, | ||
magrittr, | ||
dplyr, | ||
tidyr, | ||
tibble, | ||
stringr, | ||
mockery | ||
License: MIT + file LICENCE | ||
Encoding: UTF-8 | ||
LazyData: true | ||
Suggests: | ||
testthat, | ||
knitr, | ||
rmarkdown, | ||
covr | ||
RoxygenNote: 7.1.1 | ||
VignetteBuilder: knitr | ||
Package: gitear | ||
Title: Client to the 'gitea' API | ||
Version: 1.0.0 | ||
Authors@R: c( | ||
person(family="ixpantia, SRL", role = "aut", email = "[email protected]"), | ||
person("Frans", "van Dunné", role=c("cre", "aut"), email="[email protected]"), | ||
person("Francisco", "Sácida", role="aut", email="[email protected]"), | ||
person("Ronny", "Hernández Mora", role="aut", email="[email protected]"), | ||
person("Patrick", "Santamaría Guzmán", role="ctb", email="[email protected]")) | ||
Description: 'Gitea' is a community managed, lightweight code hosting solution | ||
were projects and their respective git repositories can be managed | ||
<https://gitea.io>. This package gives an interface to the 'Gitea' API to | ||
access and manage repositories, issues and organizations directly in R. | ||
Depends: R (>= 3.5.0) | ||
Imports: | ||
httr, | ||
jsonlite, | ||
magrittr, | ||
dplyr, | ||
tidyr, | ||
tibble, | ||
stringr, | ||
mockery | ||
License: GPL-3 | file LICENSE | ||
URL: https://ixpantia.github.io/gitear/ | ||
BugReports: https://github.com/ixpantia/gitear/issues | ||
Encoding: UTF-8 | ||
LazyData: true | ||
Suggests: | ||
testthat, | ||
knitr, | ||
rmarkdown, | ||
covr | ||
RoxygenNote: 7.1.1 | ||
VignetteBuilder: knitr |
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,21 +1,21 @@ | ||
Version: 1.0 | ||
RestoreWorkspace: Default | ||
SaveWorkspace: Default | ||
AlwaysSaveHistory: Default | ||
EnableCodeIndexing: Yes | ||
UseSpacesForTab: Yes | ||
NumSpacesForTab: 2 | ||
Encoding: UTF-8 | ||
RnwWeave: Sweave | ||
LaTeX: pdfLaTeX | ||
AutoAppendNewline: Yes | ||
StripTrailingWhitespace: Yes | ||
BuildType: Package | ||
PackageUseDevtools: Yes | ||
PackageInstallArgs: --no-multiarch --with-keep.source | ||
PackageRoxygenize: rd,collate,namespace,vignette | ||
Version: 1.0 | ||
|
||
RestoreWorkspace: Default | ||
SaveWorkspace: Default | ||
AlwaysSaveHistory: Default | ||
|
||
EnableCodeIndexing: Yes | ||
UseSpacesForTab: Yes | ||
NumSpacesForTab: 2 | ||
Encoding: UTF-8 | ||
|
||
RnwWeave: Sweave | ||
LaTeX: pdfLaTeX | ||
|
||
AutoAppendNewline: Yes | ||
StripTrailingWhitespace: Yes | ||
|
||
BuildType: Package | ||
PackageUseDevtools: Yes | ||
PackageInstallArgs: --no-multiarch --with-keep.source | ||
PackageRoxygenize: rd,collate,namespace,vignette |