├── .Rbuildignore ├── .gitattributes ├── .gitignore ├── .lintr ├── .travis.yml ├── DESCRIPTION ├── NAMESPACE ├── NEWS.md ├── R ├── client.R ├── get.R ├── helpers.R ├── search.R ├── sysdata.rda └── zzz.R ├── README.Rmd ├── README.md ├── appveyor.yml ├── cran-comments.md ├── man ├── add_argument.Rd ├── check_arguments.Rd ├── get_metadata.Rd ├── get_recipe.Rd ├── parse_jsonp.Rd ├── perform_query.Rd ├── prepare_array_parameter.Rd ├── save_yummly_credentials.Rd ├── search_recipes.Rd └── yummlyr_options.Rd ├── revdep ├── .gitignore ├── check.R └── summary.md ├── tests ├── testthat.R └── testthat │ ├── test-get.R │ └── test-search.R ├── updater.sh └── vignettes ├── yummlyr.R ├── yummlyr.Rmd └── yummlyr.html /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romantseg/yummlyr/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romantseg/yummlyr/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romantseg/yummlyr/HEAD/.gitignore -------------------------------------------------------------------------------- /.lintr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romantseg/yummlyr/HEAD/.lintr -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romantseg/yummlyr/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romantseg/yummlyr/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romantseg/yummlyr/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- 1 | Initial CRAN release. 2 | -------------------------------------------------------------------------------- /R/client.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romantseg/yummlyr/HEAD/R/client.R -------------------------------------------------------------------------------- /R/get.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romantseg/yummlyr/HEAD/R/get.R -------------------------------------------------------------------------------- /R/helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romantseg/yummlyr/HEAD/R/helpers.R -------------------------------------------------------------------------------- /R/search.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romantseg/yummlyr/HEAD/R/search.R -------------------------------------------------------------------------------- /R/sysdata.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romantseg/yummlyr/HEAD/R/sysdata.rda -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romantseg/yummlyr/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romantseg/yummlyr/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romantseg/yummlyr/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romantseg/yummlyr/HEAD/appveyor.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romantseg/yummlyr/HEAD/cran-comments.md -------------------------------------------------------------------------------- /man/add_argument.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romantseg/yummlyr/HEAD/man/add_argument.Rd -------------------------------------------------------------------------------- /man/check_arguments.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romantseg/yummlyr/HEAD/man/check_arguments.Rd -------------------------------------------------------------------------------- /man/get_metadata.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romantseg/yummlyr/HEAD/man/get_metadata.Rd -------------------------------------------------------------------------------- /man/get_recipe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romantseg/yummlyr/HEAD/man/get_recipe.Rd -------------------------------------------------------------------------------- /man/parse_jsonp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romantseg/yummlyr/HEAD/man/parse_jsonp.Rd -------------------------------------------------------------------------------- /man/perform_query.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romantseg/yummlyr/HEAD/man/perform_query.Rd -------------------------------------------------------------------------------- /man/prepare_array_parameter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romantseg/yummlyr/HEAD/man/prepare_array_parameter.Rd -------------------------------------------------------------------------------- /man/save_yummly_credentials.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romantseg/yummlyr/HEAD/man/save_yummly_credentials.Rd -------------------------------------------------------------------------------- /man/search_recipes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romantseg/yummlyr/HEAD/man/search_recipes.Rd -------------------------------------------------------------------------------- /man/yummlyr_options.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romantseg/yummlyr/HEAD/man/yummlyr_options.Rd -------------------------------------------------------------------------------- /revdep/.gitignore: -------------------------------------------------------------------------------- 1 | **/ 2 | -------------------------------------------------------------------------------- /revdep/check.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romantseg/yummlyr/HEAD/revdep/check.R -------------------------------------------------------------------------------- /revdep/summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romantseg/yummlyr/HEAD/revdep/summary.md -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romantseg/yummlyr/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-get.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romantseg/yummlyr/HEAD/tests/testthat/test-get.R -------------------------------------------------------------------------------- /tests/testthat/test-search.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romantseg/yummlyr/HEAD/tests/testthat/test-search.R -------------------------------------------------------------------------------- /updater.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romantseg/yummlyr/HEAD/updater.sh -------------------------------------------------------------------------------- /vignettes/yummlyr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romantseg/yummlyr/HEAD/vignettes/yummlyr.R -------------------------------------------------------------------------------- /vignettes/yummlyr.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romantseg/yummlyr/HEAD/vignettes/yummlyr.Rmd -------------------------------------------------------------------------------- /vignettes/yummlyr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romantseg/yummlyr/HEAD/vignettes/yummlyr.html --------------------------------------------------------------------------------