Skip to content

Commit 4c5f791

Browse files
committed
chore: initial commit
0 parents  commit 4c5f791

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+4016
-0
lines changed

.Rbuildignore

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
^data-raw$
2+
^doc$
3+
^docs$
4+
^Meta$
5+
^pkgdown$
6+
^Rmd$
7+
^snippets$
8+
^cran-comments\.md$
9+
^netlify\.toml$
10+
^TODO\.md$
11+
^LICENSE(\.md)?$
12+
^README\.Rmd$
13+
^_output\.yaml$
14+
^_pkgdown\.yml$
15+
^\.ackrc$
16+
^\.github$
17+
^\.gitlab-ci\.yml$
18+
^\.lintr\.R$
19+
^\.travis\.yml$
20+
^.*\.Rproj$
21+
^\.Rproj\.user$

.gitignore

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# system-specific temp, backup, thumbnail etc. files
2+
.~lock*
3+
*.backup
4+
~$*
5+
.DS_Store
6+
Thumbs.db
7+
8+
# R(Studio)-specific (temp) files
9+
.Rapp.history
10+
.RData
11+
.Rhistory
12+
.Rproj.user
13+
.Ruserdata
14+
15+
# API credentials/tokens
16+
.httr-oauth

DESCRIPTION

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
Package: nocodb
2+
Title: Use NocoDB's RESTful APIs
3+
Version: 0.0.9000
4+
Authors@R:
5+
person("Salim", "Brüggemann", , "[email protected]", role = c("aut", "cre"),
6+
comment = c(ORCID = "0000-0002-5329-5987"))
7+
Description: nocodb allows to work with NocoDB's RESTful APIs from R.
8+
NocoDB is a web application that provides an intuitive
9+
spreadsheet-like front-end for relational databases, see
10+
https://nocodb.com.
11+
License: AGPL (>= 3)
12+
URL: https://gitlab.com/rpkg.dev/nocodb
13+
BugReports: https://gitlab.com/rpkg.dev/nocodb/issues
14+
Depends:
15+
R (>= 4.4)
16+
Imports:
17+
checkmate (>= 2.3.1),
18+
cli (>= 3.6.2),
19+
clock (>= 0.7.0),
20+
curl (>= 5.2.1),
21+
dplyr (>= 1.1.4),
22+
fs (>= 1.6.4),
23+
glue (>= 1.7.0),
24+
httr2 (>= 1.0.1),
25+
jsonlite (>= 1.8.8),
26+
lifecycle (>= 1.0.4),
27+
magrittr (>= 2.0.3),
28+
mime (>= 0.12),
29+
pal (>= 0.0.9101),
30+
purrr (>= 1.0.2),
31+
rlang (>= 1.1.3),
32+
stringr (>= 1.5.1),
33+
tibble (>= 3.2.1)
34+
Suggests:
35+
utils (>= 4.4.0)
36+
Remotes:
37+
gitlab::rpkg.dev/pal
38+
Encoding: UTF-8
39+
LazyData: true
40+
Roxygen: list(markdown = TRUE)
41+
RoxygenNote: 7.3.1.9000

LICENSE.md

Lines changed: 613 additions & 0 deletions
Large diffs are not rendered by default.

NAMESPACE

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Generated by roxygen2: do not edit by hand
2+
3+
export(api)
4+
export(base)
5+
export(base_id)
6+
export(bases)
7+
export(create_base)
8+
export(create_user)
9+
export(reorder_tbl)
10+
export(set_display_val)
11+
export(set_display_vals)
12+
export(tbl)
13+
export(tbl_col)
14+
export(tbl_col_id)
15+
export(tbl_cols)
16+
export(tbl_id)
17+
export(tbls)
18+
export(update_base)
19+
export(update_tbl)
20+
export(update_tbl_col)
21+
export(upload_attachments)
22+
export(users)
23+
importFrom(lifecycle,deprecated)
24+
importFrom(magrittr,"%!>%")
25+
importFrom(magrittr,"%$%")
26+
importFrom(magrittr,"%<>%")
27+
importFrom(magrittr,"%>%")
28+
importFrom(magrittr,"%T>%")
29+
importFrom(rlang,"%|%")

R/nocodb-package.R

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#' @keywords internal
2+
#' @importFrom magrittr %>%
3+
#' @importFrom magrittr %<>%
4+
#' @importFrom magrittr %T>%
5+
#' @importFrom magrittr %!>%
6+
#' @importFrom magrittr %$%
7+
#' @importFrom rlang %|%
8+
"_PACKAGE"
9+
10+
# The following block is used by usethis to automatically manage
11+
# roxygen namespace tags. Modify with care!
12+
## usethis namespace: start
13+
#' @importFrom lifecycle deprecated
14+
## usethis namespace: end
15+
NULL

0 commit comments

Comments
 (0)