Skip to content
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
2 changes: 2 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,5 @@ codecov.yml
^\.quarto$
^methodshub
^.binder$
^[\.]?air\.toml$
^\.vscode$
5 changes: 5 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"recommendations": [
"Posit.air-vscode"
]
}
6 changes: 6 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"[r]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "Posit.air-vscode"
}
}
31 changes: 20 additions & 11 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,21 +1,26 @@
Package: rtoot
Title: Collecting and Analyzing Mastodon Data
Version: 0.3.5.9000
Authors@R:
c(person("David", "Schoch", , "[email protected]", role = c("aut", "cre"), comment = c(ORCID = "0000-0003-2952-4812")),
person("Chung-hong", "Chan", ,"[email protected]", role = c("aut"), comment = c(ORCID = "0000-0002-6232-7530")),
person("Johannes", "Gruber", ,"[email protected]", role = c("ctb"), comment = c(ORCID = "0000-0001-9177-1772")),
person("Tim", "Schatto-Eckrodt", ,"[email protected]", role = c("ctb"), comment = c(ORCID = "0000-0003-1658-4373")))
Description: An implementation of calls designed to collect and organize Mastodon data via its Application Program Interfaces (API), which can be found at the following URL: <https://docs.joinmastodon.org/>.
Authors@R: c(
person("David", "Schoch", , "[email protected]", role = c("aut", "cre"),
comment = c(ORCID = "0000-0003-2952-4812")),
person("Chung-hong", "Chan", , "[email protected]", role = "aut",
comment = c(ORCID = "0000-0002-6232-7530")),
person("Johannes", "Gruber", , "[email protected]", role = "ctb",
comment = c(ORCID = "0000-0001-9177-1772")),
person("Tim", "Schatto-Eckrodt", , "[email protected]", role = "ctb",
comment = c(ORCID = "0000-0003-1658-4373"))
)
Description: An implementation of calls designed to collect and organize
Mastodon data via its Application Program Interfaces (API), which can
be found at the following URL: <https://docs.joinmastodon.org/>.
License: MIT + file LICENSE
URL: https://gesistsa.github.io/rtoot/, https://github.com/gesistsa/rtoot/
BugReports: https://github.com/gesistsa/rtoot/issues
Encoding: UTF-8
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.3.2
Depends:
R (>= 3.6)
Imports:
cli,
clipr,
curl,
dplyr,
Expand All @@ -26,8 +31,12 @@ Imports:
Suggests:
knitr,
rmarkdown,
testthat (>= 3.0.0),
rstudioapi,
testthat (>= 3.0.0),
vcr (>= 0.6.0)
VignetteBuilder: knitr
VignetteBuilder:
knitr
Config/testthat/edition: 3
Encoding: UTF-8
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.3.2
Loading