├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R ├── generator.R ├── r_credit_card_numbers.R ├── r_date_of_births.R ├── r_email_addresses.R ├── r_full_names.R ├── r_ip_addresses.R ├── r_latitudes.R ├── r_longitudes.R ├── r_national_identification_numbers.R ├── r_phone_numbers.R └── sysdata.rda ├── README.Rmd ├── README.md ├── appveyor.yml ├── cran-comments.md ├── docs ├── LICENSE.html ├── authors.html ├── index.html ├── jquery.sticky-kit.min.js ├── link.svg ├── news │ └── index.html ├── pkgdown.css ├── pkgdown.js └── reference │ ├── generator.html │ ├── index.html │ ├── r_credit_card_numbers.html │ ├── r_date_of_births.html │ ├── r_email_addresses.html │ ├── r_full_names.html │ ├── r_ipv4_addresses.html │ ├── r_latitudes.html │ ├── r_longitudes.html │ ├── r_national_identification_numbers.html │ └── r_phone_numbers.html ├── generator.Rproj ├── man ├── generator.Rd ├── r_credit_card_numbers.Rd ├── r_date_of_births.Rd ├── r_email_addresses.Rd ├── r_full_names.Rd ├── r_ipv4_addresses.Rd ├── r_latitudes.Rd ├── r_longitudes.Rd ├── r_national_identification_numbers.Rd └── r_phone_numbers.Rd └── tests ├── testthat.R └── testthat ├── test-r_credit_card_numbers.R ├── test-r_date_of_births.R ├── test-r_email_addresses.R ├── test-r_full_names.R ├── test-r_ip_addresses.R ├── test-r_latitudes.R ├── test-r_longitudes.R ├── test-r_national_identification_numbers.R └── test-r_phone_numbers.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/generator.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/R/generator.R -------------------------------------------------------------------------------- /R/r_credit_card_numbers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/R/r_credit_card_numbers.R -------------------------------------------------------------------------------- /R/r_date_of_births.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/R/r_date_of_births.R -------------------------------------------------------------------------------- /R/r_email_addresses.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/R/r_email_addresses.R -------------------------------------------------------------------------------- /R/r_full_names.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/R/r_full_names.R -------------------------------------------------------------------------------- /R/r_ip_addresses.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/R/r_ip_addresses.R -------------------------------------------------------------------------------- /R/r_latitudes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/R/r_latitudes.R -------------------------------------------------------------------------------- /R/r_longitudes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/R/r_longitudes.R -------------------------------------------------------------------------------- /R/r_national_identification_numbers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/R/r_national_identification_numbers.R -------------------------------------------------------------------------------- /R/r_phone_numbers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/R/r_phone_numbers.R -------------------------------------------------------------------------------- /R/sysdata.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/R/sysdata.rda -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/appveyor.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/cran-comments.md -------------------------------------------------------------------------------- /docs/LICENSE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/docs/LICENSE.html -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/jquery.sticky-kit.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/docs/jquery.sticky-kit.min.js -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/docs/news/index.html -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/reference/generator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/docs/reference/generator.html -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/r_credit_card_numbers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/docs/reference/r_credit_card_numbers.html -------------------------------------------------------------------------------- /docs/reference/r_date_of_births.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/docs/reference/r_date_of_births.html -------------------------------------------------------------------------------- /docs/reference/r_email_addresses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/docs/reference/r_email_addresses.html -------------------------------------------------------------------------------- /docs/reference/r_full_names.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/docs/reference/r_full_names.html -------------------------------------------------------------------------------- /docs/reference/r_ipv4_addresses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/docs/reference/r_ipv4_addresses.html -------------------------------------------------------------------------------- /docs/reference/r_latitudes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/docs/reference/r_latitudes.html -------------------------------------------------------------------------------- /docs/reference/r_longitudes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/docs/reference/r_longitudes.html -------------------------------------------------------------------------------- /docs/reference/r_national_identification_numbers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/docs/reference/r_national_identification_numbers.html -------------------------------------------------------------------------------- /docs/reference/r_phone_numbers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/docs/reference/r_phone_numbers.html -------------------------------------------------------------------------------- /generator.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/generator.Rproj -------------------------------------------------------------------------------- /man/generator.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/man/generator.Rd -------------------------------------------------------------------------------- /man/r_credit_card_numbers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/man/r_credit_card_numbers.Rd -------------------------------------------------------------------------------- /man/r_date_of_births.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/man/r_date_of_births.Rd -------------------------------------------------------------------------------- /man/r_email_addresses.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/man/r_email_addresses.Rd -------------------------------------------------------------------------------- /man/r_full_names.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/man/r_full_names.Rd -------------------------------------------------------------------------------- /man/r_ipv4_addresses.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/man/r_ipv4_addresses.Rd -------------------------------------------------------------------------------- /man/r_latitudes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/man/r_latitudes.Rd -------------------------------------------------------------------------------- /man/r_longitudes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/man/r_longitudes.Rd -------------------------------------------------------------------------------- /man/r_national_identification_numbers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/man/r_national_identification_numbers.Rd -------------------------------------------------------------------------------- /man/r_phone_numbers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/man/r_phone_numbers.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-r_credit_card_numbers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/tests/testthat/test-r_credit_card_numbers.R -------------------------------------------------------------------------------- /tests/testthat/test-r_date_of_births.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/tests/testthat/test-r_date_of_births.R -------------------------------------------------------------------------------- /tests/testthat/test-r_email_addresses.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/tests/testthat/test-r_email_addresses.R -------------------------------------------------------------------------------- /tests/testthat/test-r_full_names.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/tests/testthat/test-r_full_names.R -------------------------------------------------------------------------------- /tests/testthat/test-r_ip_addresses.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/tests/testthat/test-r_ip_addresses.R -------------------------------------------------------------------------------- /tests/testthat/test-r_latitudes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/tests/testthat/test-r_latitudes.R -------------------------------------------------------------------------------- /tests/testthat/test-r_longitudes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/tests/testthat/test-r_longitudes.R -------------------------------------------------------------------------------- /tests/testthat/test-r_national_identification_numbers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/tests/testthat/test-r_national_identification_numbers.R -------------------------------------------------------------------------------- /tests/testthat/test-r_phone_numbers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulhendricks/generator/HEAD/tests/testthat/test-r_phone_numbers.R --------------------------------------------------------------------------------