├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── Gemfile ├── Gemfile.lock ├── History.txt ├── License.txt ├── README.md ├── Rakefile ├── faker.gemspec ├── lib ├── extensions │ ├── array.rb │ └── symbol.rb ├── faker.rb ├── faker │ ├── address.rb │ ├── app.rb │ ├── avatar.rb │ ├── bitcoin.rb │ ├── book.rb │ ├── business.rb │ ├── code.rb │ ├── color.rb │ ├── commerce.rb │ ├── company.rb │ ├── date.rb │ ├── finance.rb │ ├── hacker.rb │ ├── internet.rb │ ├── lorem.rb │ ├── name.rb │ ├── number.rb │ ├── phone_number.rb │ ├── slack_emoji.rb │ ├── team.rb │ ├── time.rb │ ├── university.rb │ └── version.rb ├── helpers │ └── char.rb └── locales │ ├── de-AT.yml │ ├── de-CH.yml │ ├── de.yml │ ├── en-AU.yml │ ├── en-BORK.yml │ ├── en-CA.yml │ ├── en-GB.yml │ ├── en-IND.yml │ ├── en-NEP.yml │ ├── en-UG.yml │ ├── en-US.yml │ ├── en-au-ocker.yml │ ├── en.yml │ ├── es.yml │ ├── fa.yml │ ├── fr.yml │ ├── it.yml │ ├── ja.yml │ ├── ko.yml │ ├── nb-NO.yml │ ├── nl.yml │ ├── pl.yml │ ├── pt-BR.yml │ ├── ru.yml │ ├── sk.yml │ ├── sv.yml │ ├── uk.yml │ ├── vi.yml │ ├── zh-CN.yml │ └── zh-TW.yml ├── script ├── destroy ├── generate └── txt2html ├── tasks ├── test.rake └── website.rake ├── test ├── test_array_sample_method_compat.rb ├── test_avatar.rb ├── test_en_au_ocker_locale.rb ├── test_en_ca_locale.rb ├── test_en_locale.rb ├── test_en_ug_locale.rb ├── test_en_us_locale.rb ├── test_es_locale.rb ├── test_faker.rb ├── test_faker_app.rb ├── test_faker_bitcoin.rb ├── test_faker_book.rb ├── test_faker_business.rb ├── test_faker_city.rb ├── test_faker_code.rb ├── test_faker_color.rb ├── test_faker_commerce.rb ├── test_faker_company.rb ├── test_faker_date.rb ├── test_faker_hacker_talk.rb ├── test_faker_internet.rb ├── test_faker_lorem.rb ├── test_faker_name.rb ├── test_faker_number.rb ├── test_faker_slack_emoji.rb ├── test_faker_street.rb ├── test_faker_team.rb ├── test_faker_time.rb ├── test_faker_university.rb ├── test_flexible.rb ├── test_helper.rb ├── test_locale.rb ├── test_pl_locale.rb └── test_uk_locale.rb └── website ├── index.html ├── index.txt ├── javascripts └── rounded_corners_lite.inc.js ├── stylesheets └── screen.css └── template.rhtml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /History.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/History.txt -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/License.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/Rakefile -------------------------------------------------------------------------------- /faker.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/faker.gemspec -------------------------------------------------------------------------------- /lib/extensions/array.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/extensions/array.rb -------------------------------------------------------------------------------- /lib/extensions/symbol.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/extensions/symbol.rb -------------------------------------------------------------------------------- /lib/faker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/faker.rb -------------------------------------------------------------------------------- /lib/faker/address.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/faker/address.rb -------------------------------------------------------------------------------- /lib/faker/app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/faker/app.rb -------------------------------------------------------------------------------- /lib/faker/avatar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/faker/avatar.rb -------------------------------------------------------------------------------- /lib/faker/bitcoin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/faker/bitcoin.rb -------------------------------------------------------------------------------- /lib/faker/book.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/faker/book.rb -------------------------------------------------------------------------------- /lib/faker/business.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/faker/business.rb -------------------------------------------------------------------------------- /lib/faker/code.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/faker/code.rb -------------------------------------------------------------------------------- /lib/faker/color.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/faker/color.rb -------------------------------------------------------------------------------- /lib/faker/commerce.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/faker/commerce.rb -------------------------------------------------------------------------------- /lib/faker/company.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/faker/company.rb -------------------------------------------------------------------------------- /lib/faker/date.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/faker/date.rb -------------------------------------------------------------------------------- /lib/faker/finance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/faker/finance.rb -------------------------------------------------------------------------------- /lib/faker/hacker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/faker/hacker.rb -------------------------------------------------------------------------------- /lib/faker/internet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/faker/internet.rb -------------------------------------------------------------------------------- /lib/faker/lorem.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/faker/lorem.rb -------------------------------------------------------------------------------- /lib/faker/name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/faker/name.rb -------------------------------------------------------------------------------- /lib/faker/number.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/faker/number.rb -------------------------------------------------------------------------------- /lib/faker/phone_number.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/faker/phone_number.rb -------------------------------------------------------------------------------- /lib/faker/slack_emoji.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/faker/slack_emoji.rb -------------------------------------------------------------------------------- /lib/faker/team.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/faker/team.rb -------------------------------------------------------------------------------- /lib/faker/time.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/faker/time.rb -------------------------------------------------------------------------------- /lib/faker/university.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/faker/university.rb -------------------------------------------------------------------------------- /lib/faker/version.rb: -------------------------------------------------------------------------------- 1 | module Faker #:nodoc: 2 | VERSION = "1.5.0" 3 | end 4 | -------------------------------------------------------------------------------- /lib/helpers/char.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/helpers/char.rb -------------------------------------------------------------------------------- /lib/locales/de-AT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/locales/de-AT.yml -------------------------------------------------------------------------------- /lib/locales/de-CH.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/locales/de-CH.yml -------------------------------------------------------------------------------- /lib/locales/de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/locales/de.yml -------------------------------------------------------------------------------- /lib/locales/en-AU.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/locales/en-AU.yml -------------------------------------------------------------------------------- /lib/locales/en-BORK.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/locales/en-BORK.yml -------------------------------------------------------------------------------- /lib/locales/en-CA.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/locales/en-CA.yml -------------------------------------------------------------------------------- /lib/locales/en-GB.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/locales/en-GB.yml -------------------------------------------------------------------------------- /lib/locales/en-IND.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/locales/en-IND.yml -------------------------------------------------------------------------------- /lib/locales/en-NEP.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/locales/en-NEP.yml -------------------------------------------------------------------------------- /lib/locales/en-UG.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/locales/en-UG.yml -------------------------------------------------------------------------------- /lib/locales/en-US.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/locales/en-US.yml -------------------------------------------------------------------------------- /lib/locales/en-au-ocker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/locales/en-au-ocker.yml -------------------------------------------------------------------------------- /lib/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/locales/en.yml -------------------------------------------------------------------------------- /lib/locales/es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/locales/es.yml -------------------------------------------------------------------------------- /lib/locales/fa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/locales/fa.yml -------------------------------------------------------------------------------- /lib/locales/fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/locales/fr.yml -------------------------------------------------------------------------------- /lib/locales/it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/locales/it.yml -------------------------------------------------------------------------------- /lib/locales/ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/locales/ja.yml -------------------------------------------------------------------------------- /lib/locales/ko.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/locales/ko.yml -------------------------------------------------------------------------------- /lib/locales/nb-NO.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/locales/nb-NO.yml -------------------------------------------------------------------------------- /lib/locales/nl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/locales/nl.yml -------------------------------------------------------------------------------- /lib/locales/pl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/locales/pl.yml -------------------------------------------------------------------------------- /lib/locales/pt-BR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/locales/pt-BR.yml -------------------------------------------------------------------------------- /lib/locales/ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/locales/ru.yml -------------------------------------------------------------------------------- /lib/locales/sk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/locales/sk.yml -------------------------------------------------------------------------------- /lib/locales/sv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/locales/sv.yml -------------------------------------------------------------------------------- /lib/locales/uk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/locales/uk.yml -------------------------------------------------------------------------------- /lib/locales/vi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/locales/vi.yml -------------------------------------------------------------------------------- /lib/locales/zh-CN.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/locales/zh-CN.yml -------------------------------------------------------------------------------- /lib/locales/zh-TW.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/lib/locales/zh-TW.yml -------------------------------------------------------------------------------- /script/destroy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/script/destroy -------------------------------------------------------------------------------- /script/generate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/script/generate -------------------------------------------------------------------------------- /script/txt2html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/script/txt2html -------------------------------------------------------------------------------- /tasks/test.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/tasks/test.rake -------------------------------------------------------------------------------- /tasks/website.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/tasks/website.rake -------------------------------------------------------------------------------- /test/test_array_sample_method_compat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/test/test_array_sample_method_compat.rb -------------------------------------------------------------------------------- /test/test_avatar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/test/test_avatar.rb -------------------------------------------------------------------------------- /test/test_en_au_ocker_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/test/test_en_au_ocker_locale.rb -------------------------------------------------------------------------------- /test/test_en_ca_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/test/test_en_ca_locale.rb -------------------------------------------------------------------------------- /test/test_en_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/test/test_en_locale.rb -------------------------------------------------------------------------------- /test/test_en_ug_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/test/test_en_ug_locale.rb -------------------------------------------------------------------------------- /test/test_en_us_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/test/test_en_us_locale.rb -------------------------------------------------------------------------------- /test/test_es_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/test/test_es_locale.rb -------------------------------------------------------------------------------- /test/test_faker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/test/test_faker.rb -------------------------------------------------------------------------------- /test/test_faker_app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/test/test_faker_app.rb -------------------------------------------------------------------------------- /test/test_faker_bitcoin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/test/test_faker_bitcoin.rb -------------------------------------------------------------------------------- /test/test_faker_book.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/test/test_faker_book.rb -------------------------------------------------------------------------------- /test/test_faker_business.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/test/test_faker_business.rb -------------------------------------------------------------------------------- /test/test_faker_city.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/test/test_faker_city.rb -------------------------------------------------------------------------------- /test/test_faker_code.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/test/test_faker_code.rb -------------------------------------------------------------------------------- /test/test_faker_color.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/test/test_faker_color.rb -------------------------------------------------------------------------------- /test/test_faker_commerce.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/test/test_faker_commerce.rb -------------------------------------------------------------------------------- /test/test_faker_company.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/test/test_faker_company.rb -------------------------------------------------------------------------------- /test/test_faker_date.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/test/test_faker_date.rb -------------------------------------------------------------------------------- /test/test_faker_hacker_talk.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/test/test_faker_hacker_talk.rb -------------------------------------------------------------------------------- /test/test_faker_internet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/test/test_faker_internet.rb -------------------------------------------------------------------------------- /test/test_faker_lorem.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/test/test_faker_lorem.rb -------------------------------------------------------------------------------- /test/test_faker_name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/test/test_faker_name.rb -------------------------------------------------------------------------------- /test/test_faker_number.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/test/test_faker_number.rb -------------------------------------------------------------------------------- /test/test_faker_slack_emoji.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/test/test_faker_slack_emoji.rb -------------------------------------------------------------------------------- /test/test_faker_street.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/test/test_faker_street.rb -------------------------------------------------------------------------------- /test/test_faker_team.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/test/test_faker_team.rb -------------------------------------------------------------------------------- /test/test_faker_time.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/test/test_faker_time.rb -------------------------------------------------------------------------------- /test/test_faker_university.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/test/test_faker_university.rb -------------------------------------------------------------------------------- /test/test_flexible.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/test/test_flexible.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/test_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/test/test_locale.rb -------------------------------------------------------------------------------- /test/test_pl_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/test/test_pl_locale.rb -------------------------------------------------------------------------------- /test/test_uk_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/test/test_uk_locale.rb -------------------------------------------------------------------------------- /website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/website/index.html -------------------------------------------------------------------------------- /website/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/website/index.txt -------------------------------------------------------------------------------- /website/javascripts/rounded_corners_lite.inc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/website/javascripts/rounded_corners_lite.inc.js -------------------------------------------------------------------------------- /website/stylesheets/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/website/stylesheets/screen.css -------------------------------------------------------------------------------- /website/template.rhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/faker/HEAD/website/template.rhtml --------------------------------------------------------------------------------