Skip to content

Commit

Permalink
Rename (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
chainsawriot authored May 8, 2024
1 parent adbcb61 commit 9d007f6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Package: minty
Title: Minimal Type Inferencing and Parsing Tools
Title: Minimal Type Guesser
Version: 0.0.1
Authors@R: c(
person("Chung-hong", "Chan", role = c("aut", "cre"), email = "[email protected]", comment = c(ORCID = "0000-0002-6232-7530")),
person("readr authors", role = c("ctb", "cph"),
comment = "readr source code")
)
Description: Port the type inferencing and parsing tools from 'readr' (so-called 'readr' first edition parsing engine, now superseded by 'vroom').
Description: Port the type guesser from 'readr' (so-called 'readr' first edition parsing engine, now superseded by 'vroom').
License: MIT + file LICENSE
URL: https://gesistsa.github.io/minty/, https://github.com/gesistsa/minty
BugReports: https://github.com/gesistsa/minty/issues
Expand Down
2 changes: 1 addition & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ knitr::opts_chunk$set(
[![CRAN status](https://www.r-pkg.org/badges/version/minty)](https://CRAN.R-project.org/package=minty)
<!-- badges: end -->

`minty` (**Min**imal **ty**pe Inferencing and Parsing Tools) is a package with the type inferencing and parsing tools (the so-called 1e parsing engine) extracted from `readr` (with permission, see this issue [tidyverse/readr#1517](https://github.com/tidyverse/readr/issues/1517)). Since July 2021, these tools are not used internally by `readr` for parsing text files. Now `vroom` is used by default, unless explicitly call the first edition parsing engine (see the explanation on [editions](https://github.com/tidyverse/readr?tab=readme-ov-file#editions)).
`minty` (**Min**imal **ty**pe guesser) is a package with the type inferencing and parsing tools (the so-called 1e parsing engine) extracted from `readr` (with permission, see this issue [tidyverse/readr#1517](https://github.com/tidyverse/readr/issues/1517)). Since July 2021, these tools are not used internally by `readr` for parsing text files. Now `vroom` is used by default, unless explicitly call the first edition parsing engine (see the explanation on [editions](https://github.com/tidyverse/readr?tab=readme-ov-file#editions)).

`readr`'s 1e type inferencing and parsing tools are used by various R packages, e.g. `readODS` and `surveytoolbox` for parsing in-memory objects, but those packages do not use the main functions (e.g. `readr::read_delim()`) of `readr`. As explained in the README of `readr`, those 1e code will be eventually removed from `readr`. `minty` aims at providing a set of minimal, long-term, and compatible type inferencing and parsing tools for those packages.

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
status](https://www.r-pkg.org/badges/version/minty)](https://CRAN.R-project.org/package=minty)
<!-- badges: end -->

`minty` (**Min**imal **ty**pe Inferencing and Parsing Tools) is a
package with the type inferencing and parsing tools (the so-called 1e
parsing engine) extracted from `readr` (with permission, see this issue
`minty` (**Min**imal **ty**pe guesser) is a package with the type
inferencing and parsing tools (the so-called 1e parsing engine)
extracted from `readr` (with permission, see this issue
[tidyverse/readr\#1517](https://github.com/tidyverse/readr/issues/1517)).
Since July 2021, these tools are not used internally by `readr` for
parsing text files. Now `vroom` is used by default, unless explicitly
Expand Down

0 comments on commit 9d007f6

Please sign in to comment.