[DRE-commits] [ruby-faker] 02/10: Merge tag 'upstream/1.6.6'

Praveen Arimbrathodiyil praveen at moszumanska.debian.org
Mon Oct 31 17:24:07 UTC 2016


This is an automated email from the git hooks/post-receive script.

praveen pushed a commit to branch master
in repository ruby-faker.

commit 3b55d24f8475a3f9cb3d934308a51c3f0fb40f45
Merge: 83fb5f8 cf7b16f
Author: Pirate Praveen <praveen at debian.org>
Date:   Mon Oct 31 16:28:28 2016 +0530

    Merge tag 'upstream/1.6.6'
    
    Upstream version 1.6.6
    
    # gpg: Signature made Monday 31 October 2016 04:28:27 PM IST using RSA key ID CE1F9C674512C22A
    # gpg: Good signature from "Praveen Arimbrathodiyil (piratepin) <praveen at debian.org>" [ultimate]
    # gpg:                 aka "Pirate Praveen (pirates.org.in) <praveen at onenetbeyond.org>" [ultimate]
    # gpg:                 aka "Pirate Praveen (piratesin) <me at j4v4m4n.in>" [ultimate]
    # gpg:                 aka "Pirate Praveen (PP) <praveen at privacyrequired.com>" [ultimate]
    # gpg:                 aka "Praveen Arimbrathodiyil (j4v4m4n) <pravi.a at gmail.com>" [ultimate]

 .gitignore                                         |  11 +
 .travis.yml                                        |  13 +
 CONTRIBUTING.md                                    |  23 ++
 Gemfile                                            |  11 +
 Gemfile.lock                                       |  24 ++
 History.txt                                        |  41 +++
 README.md                                          | 406 +++++++++++++++++++--
 Rakefile                                           |   6 +
 faker.gemspec                                      |  20 +
 lib/faker.rb                                       |  50 ++-
 lib/faker/address.rb                               |   1 -
 lib/faker/app.rb                                   |   2 +-
 lib/faker/avatar.rb                                |   5 +-
 lib/faker/beer.rb                                  |  40 ++
 lib/faker/book.rb                                  |   6 +-
 lib/faker/boolean.rb                               |   9 +
 lib/faker/cat.rb                                   |  19 +
 lib/faker/chuck_norris.rb                          |  11 +
 lib/faker/code.rb                                  |  77 ++++
 lib/faker/color.rb                                 |   4 +
 lib/faker/commerce.rb                              |  10 +-
 lib/faker/company.rb                               |  29 +-
 lib/faker/crypto.rb                                |  19 +
 lib/faker/date.rb                                  |  42 ++-
 lib/faker/educator.rb                              |  23 ++
 lib/faker/file.rb                                  |  23 ++
 lib/faker/game_of_thrones.rb                       |  17 +
 lib/faker/hacker.rb                                |  10 +-
 lib/faker/{lorem.rb => hipster.rb}                 |  27 +-
 lib/faker/id_number.rb                             |  36 ++
 lib/faker/internet.rb                              | 120 ++++--
 lib/faker/lorem.rb                                 |  28 +-
 lib/faker/music.rb                                 |  21 ++
 lib/faker/name.rb                                  |   7 +
 lib/faker/number.rb                                |  26 +-
 lib/faker/placeholdit.rb                           |  20 +
 lib/faker/pokemon.rb                               |  13 +
 lib/faker/shakespeare.rb                           |  83 +++++
 lib/faker/space.rb                                 |  54 +++
 lib/faker/star_wars.rb                             |  67 ++++
 lib/faker/superhero.rb                             |  25 ++
 lib/faker/time.rb                                  |  16 +-
 lib/faker/vehicle.rb                               |  37 ++
 lib/faker/version.rb                               |   2 +-
 lib/faker/yoda.rb                                  |  10 +
 lib/locales/ca-CAT.yml                             |  24 ++
 lib/locales/ca.yml                                 |  25 ++
 lib/locales/da-DK.yml                              |  69 ++++
 lib/locales/de.yml                                 |  43 ++-
 lib/locales/en-AU.yml                              |   4 +-
 lib/locales/en-GB.yml                              |   2 +-
 lib/locales/en-NEP.yml                             |  12 +-
 lib/locales/en-NZ.yml                              |  25 ++
 lib/locales/en-PAK.yml                             |  17 +
 lib/locales/en-SG.yml                              |  31 ++
 lib/locales/en-US.yml                              |  17 +-
 lib/locales/en-au-ocker.yml                        |   8 +-
 lib/locales/en.yml                                 | 244 ++++++++++++-
 lib/locales/es-MX.yml                              |  82 +++++
 lib/locales/es.yml                                 |  14 +
 lib/locales/fi-FI.yml                              |  29 ++
 lib/locales/fr.yml                                 |  18 +-
 lib/locales/he.yml                                 |  25 ++
 lib/locales/it.yml                                 |  12 +-
 lib/locales/ja.yml                                 |  26 +-
 lib/locales/nb-NO.yml                              |   5 +-
 lib/locales/pl.yml                                 |   2 +-
 lib/locales/pt-BR.yml                              |  78 ++--
 lib/locales/{pt-BR.yml => pt.yml}                  |  29 +-
 lib/locales/sk.yml                                 |   4 +-
 lib/locales/sv.yml                                 |  23 +-
 lib/locales/zh-CN.yml                              |   2 +
 metadata.yml                                       | 187 ----------
 script/destroy                                     |  14 +
 script/generate                                    |  14 +
 script/txt2html                                    |  74 ++++
 tasks/test.rake                                    |  11 +
 tasks/website.rake                                 |  16 +
 test/test_avatar.rb                                |  14 +-
 test/test_ca_cat_locale.rb                         |  35 ++
 test/test_ca_locale.rb                             |  22 ++
 test/test_da_dk_locale.rb                          |  36 ++
 test/test_de_at_locale.rb                          |  27 ++
 test/test_de_ch_locale.rb                          |  19 +
 test/test_de_locale.rb                             |  44 +++
 test/test_en_au_locale.rb                          |  28 ++
 test/test_en_au_ocker_locale.rb                    |  12 +-
 test/test_en_gb_locale.rb                          |  40 ++
 test/test_en_ind_locale.rb                         |  23 ++
 test/test_en_locale.rb                             |  15 +-
 test/test_en_nep_locale.rb                         |  28 ++
 test/test_en_nz_locale.rb                          |  33 ++
 test/test_en_pak_locale.rb                         |  22 ++
 test/test_en_us_locale.rb                          |  23 +-
 test/test_es_locale.rb                             |   8 +-
 test/test_es_mx_locale.rb                          |  32 ++
 test/test_fa_locale.rb                             |  18 +
 test/test_faker_beer.rb                            |  41 +++
 test/test_faker_birthday_in_leap_year.rb           |  29 ++
 test/test_faker_book.rb                            |   6 +-
 test/test_faker_boolean.rb                         |  12 +
 test/test_faker_cat.rb                             |  20 +
 test/test_faker_chuck_norris.rb                    |  12 +
 test/test_faker_city.rb                            |   7 +
 test/test_faker_code.rb                            |  32 ++
 test/test_faker_color.rb                           |   4 +
 test/test_faker_commerce.rb                        |  19 +-
 test/test_faker_company.rb                         |  24 +-
 test/test_faker_crypto.rb                          |  19 +
 test/test_faker_date.rb                            |  18 +-
 test/test_faker_educator.rb                        |  25 ++
 test/test_faker_file.rb                            |  21 ++
 test/test_faker_game_of_thrones.rb                 |  19 +
 .../{test_faker_lorem.rb => test_faker_hipster.rb} |  51 ++-
 test/test_faker_internet.rb                        |  70 +++-
 test/test_faker_lorem.rb                           |  24 +-
 test/test_faker_music.rb                           |  30 ++
 test/test_faker_name.rb                            |  12 +
 test/test_faker_number.rb                          |  30 ++
 test/test_faker_pokemon.rb                         |  16 +
 test/test_faker_shakespeare.rb                     |  53 +++
 test/test_faker_space.rb                           |  56 +++
 test/test_faker_star_wars.rb                       |  74 ++++
 test/test_faker_street.rb                          |   6 +
 test/test_faker_superhero.rb                       |  16 +
 test/test_faker_time.rb                            |  37 +-
 test/test_faker_vehicle.rb                         |  38 ++
 test/test_faker_yoda.rb                            |  11 +
 test/test_fi_locale.rb                             |  39 ++
 test/test_flexible.rb                              |   8 +-
 test/test_fr_locale.rb                             |  64 ++++
 test/test_he_locale.rb                             |  19 +
 test/test_helper.rb                                |   1 +
 test/test_it_locale.rb                             |  41 +++
 test/test_locale.rb                                |   2 +
 test/test_placeholdit.rb                           |  92 +++++
 test/test_pt_locale.rb                             |  27 ++
 test/test_sv_locale.rb                             |  28 ++
 138 files changed, 3886 insertions(+), 476 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/ruby-faker.git



More information about the Pkg-ruby-extras-commits mailing list