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

Update docs #130

Merged
merged 3 commits into from
Oct 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: gitear
Title: Client to the 'gitea' API
Version: 1.0.0
Version: 1.0.1
Authors@R: c(
person(family="ixpantia, SRL", role = "aut", email = "[email protected]"),
person("Frans", "van Dunné", role=c("cre", "aut"), email="[email protected]"),
Expand Down Expand Up @@ -34,5 +34,5 @@ Suggests:
knitr,
rmarkdown,
covr
RoxygenNote: 7.1.1
RoxygenNote: 7.2.3
VignetteBuilder: knitr
2 changes: 2 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export(create_comment_issue)
export(create_issue)
export(edit_comment)
export(edit_issue)
export(edit_user)
export(get_admin_organizations)
export(get_an_organization)
export(get_branches)
Expand All @@ -29,6 +30,7 @@ export(get_releases)
export(get_repositories)
export(get_times_issue)
export(get_version)
export(search_repos)
import(graphics)
import(httr)
import(jsonlite)
Expand Down
16 changes: 6 additions & 10 deletions R/gitear.R → R/gitear-package.R
Original file line number Diff line number Diff line change
@@ -1,17 +1,13 @@
#' \code{gitear} package
#'
#' '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.
#'
#' @docType package
#' @name gitear
#' @keywords internal
"_PACKAGE"

## usethis namespace: start
#' @importFrom dplyr %>%
## usethis namespace: end
NULL

## quiets concerns of R CMD check re: the .'s that appear in pipelines
utils::globalVariables(c(".",
utils::globalVariables(c(".",
"username",
"number",
"created_at",
Expand Down