Skip to content

Commit 287abdf

Browse files
Merge pull request #8 from eoda-dev/feature/switch-to-base-model2
Feature/switch to base model2
2 parents b2c1b44 + 473eab6 commit 287abdf

Some content is hidden

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

48 files changed

+1401
-534
lines changed

.Rbuildignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ _NAMESPACE
88
^_pkgdown\.yml$
99
^docs$
1010
^pkgdown$
11+
_deprecated/

DESCRIPTION

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,21 @@ Authors@R: c(
1010
Maintainer: Stefan Kuethe <[email protected]>
1111
Description: Adds type safety to R.
1212
URL:
13-
https://github.com/eodaGmbH/rdantic
14-
https://eodagmbh.github.io/rdantic/
15-
BugReports: https://github.com/eodaGmbH/rdantic/issues
13+
https://github.com/eoda-dev/rdantic
14+
https://eoda-dev.github.io/rdantic/
15+
BugReports: https://github.com/eoda-dev/rdantic/issues
1616
License: MIT + file LICENSE
1717
Encoding: UTF-8
1818
LazyData: true
19-
Imports:
20-
cli,
19+
Imports:
2120
glue,
2221
purrr,
2322
rlang
2423
RoxygenNote: 7.3.2
25-
Suggests:
24+
Suggests:
2625
knitr,
2726
rmarkdown,
2827
testthat (>= 3.0.0)
2928
Config/testthat/edition: 3
3029
VignetteBuilder: knitr
30+
Roxygen: list(markdown = TRUE)

NAMESPACE

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
# Generated by roxygen2: do not edit by hand
22

3+
S3method("$<-",rdantic)
4+
S3method("[[<-",rdantic)
5+
S3method(print,rdantic)
36
export(base_model)
47
export(base_settings)
5-
export(is_another_model)
6-
export(is_optional)
7-
export(keys_to_camel_case)
8-
export(keys_to_snake_case)
9-
export(model_dump)
10-
export(validate_args)
11-
export(validate_fn)
8+
export(check_args)
9+
export(is_any)
10+
export(is_rdantic_model)
11+
export(model_config)
12+
export(model_field)
13+
export(model_validate)
14+
export(names_to_camel_case)
15+
export(names_to_snake_case)
16+
importFrom(utils,capture.output)
17+
importFrom(utils,str)

0 commit comments

Comments
 (0)