├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── R ├── extract_lines.R ├── get.R ├── get_ns.R ├── methods.R ├── relationship.R ├── repack.R ├── scan_for_content.R ├── split_lines.R ├── unbox.R └── unpack.R ├── README.Rmd ├── README.md ├── foreman.Rproj └── man ├── figures ├── README-unnamed-chunk-12-1.png ├── README-unnamed-chunk-14-1.png ├── README-unnamed-chunk-16-1.png ├── README-unnamed-chunk-19-1.png ├── README-unnamed-chunk-7-1.png ├── README-unnamed-chunk-8-1.png └── README-unnamed-chunk-9-1.png ├── get.Rd ├── relationship.Rd ├── repack.Rd └── unpack.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonicd/foreman/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonicd/foreman/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonicd/foreman/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2019 2 | COPYRIGHT HOLDER: Jonathan Sidi 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonicd/foreman/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonicd/foreman/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/extract_lines.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonicd/foreman/HEAD/R/extract_lines.R -------------------------------------------------------------------------------- /R/get.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonicd/foreman/HEAD/R/get.R -------------------------------------------------------------------------------- /R/get_ns.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonicd/foreman/HEAD/R/get_ns.R -------------------------------------------------------------------------------- /R/methods.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonicd/foreman/HEAD/R/methods.R -------------------------------------------------------------------------------- /R/relationship.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonicd/foreman/HEAD/R/relationship.R -------------------------------------------------------------------------------- /R/repack.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonicd/foreman/HEAD/R/repack.R -------------------------------------------------------------------------------- /R/scan_for_content.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonicd/foreman/HEAD/R/scan_for_content.R -------------------------------------------------------------------------------- /R/split_lines.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonicd/foreman/HEAD/R/split_lines.R -------------------------------------------------------------------------------- /R/unbox.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonicd/foreman/HEAD/R/unbox.R -------------------------------------------------------------------------------- /R/unpack.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonicd/foreman/HEAD/R/unpack.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonicd/foreman/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonicd/foreman/HEAD/README.md -------------------------------------------------------------------------------- /foreman.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonicd/foreman/HEAD/foreman.Rproj -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-12-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonicd/foreman/HEAD/man/figures/README-unnamed-chunk-12-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-14-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonicd/foreman/HEAD/man/figures/README-unnamed-chunk-14-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-16-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonicd/foreman/HEAD/man/figures/README-unnamed-chunk-16-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-19-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonicd/foreman/HEAD/man/figures/README-unnamed-chunk-19-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-7-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonicd/foreman/HEAD/man/figures/README-unnamed-chunk-7-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-8-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonicd/foreman/HEAD/man/figures/README-unnamed-chunk-8-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-9-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonicd/foreman/HEAD/man/figures/README-unnamed-chunk-9-1.png -------------------------------------------------------------------------------- /man/get.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonicd/foreman/HEAD/man/get.Rd -------------------------------------------------------------------------------- /man/relationship.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonicd/foreman/HEAD/man/relationship.Rd -------------------------------------------------------------------------------- /man/repack.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonicd/foreman/HEAD/man/repack.Rd -------------------------------------------------------------------------------- /man/unpack.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonicd/foreman/HEAD/man/unpack.Rd --------------------------------------------------------------------------------