logstash-output-scalyr 0.1.7 → 0.1.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +32 -0
- data/Gemfile +5 -0
- data/README.md +46 -2
- data/lib/logstash/outputs/scalyr.rb +272 -144
- data/lib/scalyr/common/client.rb +78 -62
- data/lib/scalyr/common/util.rb +7 -0
- data/lib/scalyr/constants.rb +2 -0
- data/logstash-output-scalyr.gemspec +1 -1
- data/spec/benchmarks/flattening_and_serialization.rb +125 -0
- data/spec/benchmarks/metrics_overhead.rb +48 -0
- data/spec/logstash/outputs/scalyr_integration_spec.rb +148 -8
- data/spec/logstash/outputs/scalyr_spec.rb +58 -14
- data/vendor/bundle/jruby/2.5.0/cache/addressable-2.7.0.gem +0 -0
- data/vendor/bundle/jruby/2.5.0/cache/crack-0.4.5.gem +0 -0
- data/vendor/bundle/jruby/2.5.0/cache/hashdiff-1.0.1.gem +0 -0
- data/vendor/bundle/jruby/2.5.0/cache/public_suffix-4.0.6.gem +0 -0
- data/vendor/bundle/jruby/2.5.0/cache/rexml-3.2.5.gem +0 -0
- data/vendor/bundle/jruby/2.5.0/cache/webmock-3.13.0.gem +0 -0
- data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/CHANGELOG.md +235 -0
- data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/Gemfile +32 -0
- data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/LICENSE.txt +202 -0
- data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/README.md +121 -0
- data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/Rakefile +34 -0
- data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/data/unicode.data +0 -0
- data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/lib/addressable.rb +4 -0
- data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/lib/addressable/idna.rb +27 -0
- data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/lib/addressable/idna/native.rb +61 -0
- data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/lib/addressable/idna/pure.rb +676 -0
- data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/lib/addressable/template.rb +1045 -0
- data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/lib/addressable/uri.rb +2529 -0
- data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/lib/addressable/version.rb +32 -0
- data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/spec/addressable/idna_spec.rb +300 -0
- data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/spec/addressable/net_http_compat_spec.rb +30 -0
- data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/spec/addressable/rack_mount_compat_spec.rb +106 -0
- data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/spec/addressable/security_spec.rb +59 -0
- data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/spec/addressable/template_spec.rb +1451 -0
- data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/spec/addressable/uri_spec.rb +6603 -0
- data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/spec/spec_helper.rb +24 -0
- data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/tasks/clobber.rake +4 -0
- data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/tasks/gem.rake +93 -0
- data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/tasks/git.rake +47 -0
- data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/tasks/metrics.rake +24 -0
- data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/tasks/rspec.rake +23 -0
- data/vendor/bundle/jruby/2.5.0/gems/addressable-2.7.0/tasks/yard.rake +29 -0
- data/vendor/bundle/jruby/2.5.0/gems/crack-0.4.5/lib/crack.rb +7 -0
- data/vendor/bundle/jruby/2.5.0/gems/crack-0.4.5/lib/crack/json.rb +98 -0
- data/vendor/bundle/jruby/2.5.0/gems/crack-0.4.5/lib/crack/util.rb +17 -0
- data/vendor/bundle/jruby/2.5.0/gems/crack-0.4.5/lib/crack/version.rb +3 -0
- data/vendor/bundle/jruby/2.5.0/gems/crack-0.4.5/lib/crack/xml.rb +238 -0
- data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/Gemfile +8 -0
- data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/LICENSE +19 -0
- data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/README.md +276 -0
- data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/Rakefile +18 -0
- data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/changelog.md +100 -0
- data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/hashdiff.gemspec +39 -0
- data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/lib/hashdiff.rb +10 -0
- data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/lib/hashdiff/compare_hashes.rb +69 -0
- data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/lib/hashdiff/diff.rb +177 -0
- data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/lib/hashdiff/lcs.rb +66 -0
- data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/lib/hashdiff/lcs_compare_arrays.rb +32 -0
- data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/lib/hashdiff/linear_compare_array.rb +159 -0
- data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/lib/hashdiff/patch.rb +88 -0
- data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/lib/hashdiff/util.rb +155 -0
- data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/lib/hashdiff/version.rb +5 -0
- data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/spec/hashdiff/best_diff_spec.rb +75 -0
- data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/spec/hashdiff/diff_array_spec.rb +60 -0
- data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/spec/hashdiff/diff_spec.rb +360 -0
- data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/spec/hashdiff/lcs_spec.rb +76 -0
- data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/spec/hashdiff/linear_compare_array_spec.rb +50 -0
- data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/spec/hashdiff/patch_spec.rb +185 -0
- data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/spec/hashdiff/readme_spec.rb +15 -0
- data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/spec/hashdiff/util_spec.rb +116 -0
- data/vendor/bundle/jruby/2.5.0/gems/hashdiff-1.0.1/spec/spec_helper.rb +15 -0
- data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/2.0-Upgrade.md +52 -0
- data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/CHANGELOG.md +406 -0
- data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/Gemfile +15 -0
- data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/LICENSE.txt +22 -0
- data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/README.md +207 -0
- data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/Rakefile +51 -0
- data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/SECURITY.md +104 -0
- data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/bin/console +15 -0
- data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/codecov.yml +12 -0
- data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/data/list.txt +13380 -0
- data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/lib/public_suffix.rb +179 -0
- data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/lib/public_suffix/domain.rb +235 -0
- data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/lib/public_suffix/errors.rb +41 -0
- data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/lib/public_suffix/list.rb +247 -0
- data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/lib/public_suffix/rule.rb +350 -0
- data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/lib/public_suffix/version.rb +13 -0
- data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/public_suffix.gemspec +29 -0
- data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/test/acceptance_test.rb +131 -0
- data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/test/benchmarks/bm_find.rb +66 -0
- data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/test/benchmarks/bm_find_all.rb +102 -0
- data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/test/benchmarks/bm_names.rb +91 -0
- data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/test/benchmarks/bm_select.rb +26 -0
- data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/test/benchmarks/bm_select_incremental.rb +25 -0
- data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/test/benchmarks/bm_valid.rb +101 -0
- data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/test/profilers/domain_profiler.rb +12 -0
- data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/test/profilers/find_profiler.rb +12 -0
- data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/test/profilers/find_profiler_jp.rb +12 -0
- data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/test/profilers/initialization_profiler.rb +11 -0
- data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/test/profilers/list_profsize.rb +11 -0
- data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/test/profilers/object_binsize.rb +57 -0
- data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/test/psl_test.rb +52 -0
- data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/test/test_helper.rb +18 -0
- data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/test/tests.txt +98 -0
- data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/test/unit/domain_test.rb +106 -0
- data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/test/unit/errors_test.rb +25 -0
- data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/test/unit/list_test.rb +241 -0
- data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/test/unit/public_suffix_test.rb +188 -0
- data/vendor/bundle/jruby/2.5.0/gems/public_suffix-4.0.6/test/unit/rule_test.rb +222 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/LICENSE.txt +22 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/NEWS.md +178 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/README.md +48 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/doc/rexml/context.rdoc +143 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/doc/rexml/tasks/rdoc/child.rdoc +87 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/doc/rexml/tasks/rdoc/document.rdoc +276 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/doc/rexml/tasks/rdoc/element.rdoc +602 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/doc/rexml/tasks/rdoc/node.rdoc +97 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/doc/rexml/tasks/rdoc/parent.rdoc +267 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/doc/rexml/tasks/tocs/child_toc.rdoc +12 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/doc/rexml/tasks/tocs/document_toc.rdoc +30 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/doc/rexml/tasks/tocs/element_toc.rdoc +55 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/doc/rexml/tasks/tocs/master_toc.rdoc +135 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/doc/rexml/tasks/tocs/node_toc.rdoc +16 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/doc/rexml/tasks/tocs/parent_toc.rdoc +25 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml.rb +3 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/attlistdecl.rb +63 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/attribute.rb +205 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/cdata.rb +68 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/child.rb +97 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/comment.rb +80 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/doctype.rb +311 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/document.rb +451 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/dtd/attlistdecl.rb +11 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/dtd/dtd.rb +47 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/dtd/elementdecl.rb +18 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/dtd/entitydecl.rb +57 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/dtd/notationdecl.rb +40 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/element.rb +2599 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/encoding.rb +51 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/entity.rb +171 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/formatters/default.rb +116 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/formatters/pretty.rb +142 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/formatters/transitive.rb +58 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/functions.rb +447 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/instruction.rb +79 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/light/node.rb +188 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/namespace.rb +59 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/node.rb +76 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/output.rb +30 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/parent.rb +166 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/parseexception.rb +52 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/parsers/baseparser.rb +694 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/parsers/lightparser.rb +59 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/parsers/pullparser.rb +197 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/parsers/sax2parser.rb +273 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/parsers/streamparser.rb +61 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/parsers/treeparser.rb +101 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/parsers/ultralightparser.rb +57 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/parsers/xpathparser.rb +689 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/quickpath.rb +266 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/rexml.rb +37 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/sax2listener.rb +98 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/security.rb +28 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/source.rb +298 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/streamlistener.rb +93 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/text.rb +424 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/undefinednamespaceexception.rb +9 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/validation/relaxng.rb +539 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/validation/validation.rb +144 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/validation/validationexception.rb +10 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/xmldecl.rb +130 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/xmltokens.rb +85 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/xpath.rb +81 -0
- data/vendor/bundle/jruby/2.5.0/gems/rexml-3.2.5/lib/rexml/xpath_parser.rb +974 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/CHANGELOG.md +1894 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/Gemfile +9 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/LICENSE +20 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/README.md +1176 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/Rakefile +38 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock.rb +59 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/api.rb +109 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/assertion_failure.rb +11 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/callback_registry.rb +35 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/config.rb +18 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/cucumber.rb +10 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/deprecation.rb +9 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/errors.rb +17 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/http_lib_adapters/async_http_client_adapter.rb +216 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/http_lib_adapters/curb_adapter.rb +351 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/http_lib_adapters/em_http_request_adapter.rb +231 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/http_lib_adapters/excon_adapter.rb +165 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/http_lib_adapters/http_lib_adapter.rb +7 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/http_lib_adapters/http_lib_adapter_registry.rb +19 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/http_lib_adapters/http_rb/client.rb +17 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/http_lib_adapters/http_rb/request.rb +16 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/http_lib_adapters/http_rb/response.rb +64 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/http_lib_adapters/http_rb/streamer.rb +29 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/http_lib_adapters/http_rb/webmock.rb +68 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/http_lib_adapters/http_rb_adapter.rb +37 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/http_lib_adapters/httpclient_adapter.rb +259 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/http_lib_adapters/manticore_adapter.rb +145 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/http_lib_adapters/net_http.rb +385 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/http_lib_adapters/net_http_response.rb +34 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/http_lib_adapters/patron_adapter.rb +130 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/http_lib_adapters/typhoeus_hydra_adapter.rb +174 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/matchers/any_arg_matcher.rb +13 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/matchers/hash_argument_matcher.rb +21 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/matchers/hash_excluding_matcher.rb +15 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/matchers/hash_including_matcher.rb +17 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/minitest.rb +41 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/rack_response.rb +69 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/request_body_diff.rb +64 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/request_execution_verifier.rb +77 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/request_pattern.rb +405 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/request_registry.rb +35 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/request_signature.rb +54 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/request_signature_snippet.rb +61 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/request_stub.rb +100 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/response.rb +159 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/responses_sequence.rb +40 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/rspec.rb +42 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/rspec/matchers.rb +27 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/rspec/matchers/request_pattern_matcher.rb +78 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/rspec/matchers/webmock_matcher.rb +67 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/stub_registry.rb +82 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/stub_request_snippet.rb +38 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/test_unit.rb +20 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/util/hash_counter.rb +39 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/util/hash_keys_stringifier.rb +25 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/util/hash_validator.rb +17 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/util/headers.rb +64 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/util/json.rb +67 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/util/query_mapper.rb +281 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/util/uri.rb +111 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/util/values_stringifier.rb +20 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/util/version_checker.rb +111 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/version.rb +3 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/lib/webmock/webmock.rb +163 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/minitest/test_helper.rb +34 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/minitest/test_webmock.rb +9 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/minitest/webmock_spec.rb +60 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/async_http_client/async_http_client_spec.rb +375 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/async_http_client/async_http_client_spec_helper.rb +73 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/curb/curb_spec.rb +499 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/curb/curb_spec_helper.rb +147 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/em_http_request/em_http_request_spec.rb +462 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/em_http_request/em_http_request_spec_helper.rb +77 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/excon/excon_spec.rb +77 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/excon/excon_spec_helper.rb +52 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/http_rb/http_rb_spec.rb +93 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/http_rb/http_rb_spec_helper.rb +54 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/httpclient/httpclient_spec.rb +217 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/httpclient/httpclient_spec_helper.rb +57 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/manticore/manticore_spec.rb +107 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/manticore/manticore_spec_helper.rb +35 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/net_http/net_http_shared.rb +153 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/net_http/net_http_spec.rb +369 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/net_http/net_http_spec_helper.rb +64 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/net_http/real_net_http_spec.rb +20 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/patron/patron_spec.rb +125 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/patron/patron_spec_helper.rb +54 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/shared/allowing_and_disabling_net_connect.rb +313 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/shared/callbacks.rb +148 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/shared/complex_cross_concern_behaviors.rb +36 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/shared/enabling_and_disabling_webmock.rb +95 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/shared/precedence_of_stubs.rb +15 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/shared/request_expectations.rb +930 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/shared/returning_declared_responses.rb +409 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/shared/stubbing_requests.rb +678 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/typhoeus/typhoeus_hydra_spec.rb +135 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/typhoeus/typhoeus_hydra_spec_helper.rb +60 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/acceptance/webmock_shared.rb +41 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/fixtures/test.txt +1 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/quality_spec.rb +84 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/spec_helper.rb +48 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/support/example_curl_output.txt +22 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/support/failures.rb +9 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/support/my_rack_app.rb +53 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/support/network_connection.rb +19 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/support/webmock_server.rb +70 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/api_spec.rb +175 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/errors_spec.rb +129 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/http_lib_adapters/http_lib_adapter_registry_spec.rb +17 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/http_lib_adapters/http_lib_adapter_spec.rb +12 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/matchers/hash_excluding_matcher_spec.rb +61 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/matchers/hash_including_matcher_spec.rb +87 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/rack_response_spec.rb +112 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/request_body_diff_spec.rb +90 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/request_execution_verifier_spec.rb +208 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/request_pattern_spec.rb +736 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/request_registry_spec.rb +95 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/request_signature_snippet_spec.rb +89 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/request_signature_spec.rb +155 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/request_stub_spec.rb +199 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/response_spec.rb +286 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/stub_registry_spec.rb +103 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/stub_request_snippet_spec.rb +115 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/util/hash_counter_spec.rb +39 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/util/hash_keys_stringifier_spec.rb +27 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/util/headers_spec.rb +28 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/util/json_spec.rb +33 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/util/query_mapper_spec.rb +157 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/util/uri_spec.rb +371 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/util/version_checker_spec.rb +65 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/spec/unit/webmock_spec.rb +60 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/test/http_request.rb +24 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/test/shared_test.rb +108 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/test/test_helper.rb +23 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/test/test_webmock.rb +12 -0
- data/vendor/bundle/jruby/2.5.0/gems/webmock-3.13.0/webmock.gemspec +54 -0
- data/vendor/bundle/jruby/2.5.0/specifications/addressable-2.7.0.gemspec +39 -0
- data/vendor/bundle/jruby/2.5.0/specifications/crack-0.4.5.gemspec +32 -0
- data/vendor/bundle/jruby/2.5.0/specifications/hashdiff-1.0.1.gemspec +46 -0
- data/vendor/bundle/jruby/2.5.0/specifications/public_suffix-4.0.6.gemspec +24 -0
- data/vendor/bundle/jruby/2.5.0/specifications/rexml-3.2.5.gemspec +42 -0
- data/vendor/bundle/jruby/2.5.0/specifications/webmock-3.13.0.gemspec +85 -0
- metadata +313 -1045
- data/spec/scalyr/common/flattening_benchmark.rb +0 -95
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/CHANGELOG.md +0 -2063
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/CONTRIBUTING.md +0 -107
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/Gemfile +0 -6
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/Gemfile.lock +0 -68
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/History.md +0 -176
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/License.txt +0 -20
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/README.md +0 -400
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/Rakefile +0 -26
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/bin/faker +0 -5
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/blockchain/aeternity.md +0 -12
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/blockchain/bitcoin.md +0 -7
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/blockchain/ethereum.md +0 -7
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/blockchain/tezos.md +0 -17
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/books/book.md +0 -15
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/books/culture_series.md +0 -15
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/books/dune.md +0 -23
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/books/lovecraft.md +0 -42
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/creature/animal.md +0 -5
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/creature/bird.md +0 -42
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/creature/cat.md +0 -14
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/creature/dog.md +0 -27
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/creature/horse.md +0 -7
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/address.md +0 -55
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/adjective.md +0 -9
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/alphanumeric.md +0 -11
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/ancient.md +0 -13
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/app.md +0 -19
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/appliance.md +0 -9
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/artist.md +0 -7
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/avatar.md +0 -15
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/bank.md +0 -20
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/barcode.md +0 -36
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/beer.md +0 -23
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/blood.md +0 -11
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/boolean.md +0 -10
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/bossa_nova.md +0 -7
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/business.md +0 -9
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/cannabis.md +0 -35
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/chile_rut.md +0 -22
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/chuck_norris.md +0 -7
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/code.md +0 -22
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/coffee.md +0 -13
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/coin.md +0 -9
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/color.md +0 -13
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/commerce.md +0 -24
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/company.md +0 -84
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/compass.md +0 -50
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/computer.md +0 -17
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/construction.md +0 -23
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/cosmere.md +0 -23
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/crypto.md +0 -13
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/crypto_coin.md +0 -13
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/currency.md +0 -9
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/date.md +0 -39
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/dc_comics.md +0 -15
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/demographic.md +0 -20
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/dessert.md +0 -14
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/device.md +0 -17
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/driving_licence.md +0 -30
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/educator.md +0 -19
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/electrical_components.md +0 -11
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/esport.md +0 -18
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/file.md +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/fillmurray.md +0 -10
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/finance.md +0 -19
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/food.md +0 -23
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/funny_name.md +0 -15
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/gender.md +0 -11
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/greek_philosophers.md +0 -9
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/hacker.md +0 -23
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/harry_potter.md +0 -17
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/hipster.md +0 -43
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/hitchhikers_guide_to_the_galaxy.md +0 -19
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/house.md +0 -7
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/id_number.md +0 -42
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/industry_segments.md +0 -11
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/internet.md +0 -79
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/invoice.md +0 -9
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/job.md +0 -17
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/json.md +0 -64
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/kpop.md +0 -15
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/lorem.md +0 -62
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/lorem_flickr.md +0 -34
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/lorem_pixel.md +0 -15
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/markdown.md +0 -41
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/marketing.md +0 -5
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/measurement.md +0 -27
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/michael_scott.md +0 -7
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/military.md +0 -17
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/mountain.md +0 -6
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/name.md +0 -25
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/nation.md +0 -19
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/national_health_service.md +0 -8
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/nato_phonetic_alphabet.md +0 -8
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/number.md +0 -50
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/omniauth.md +0 -293
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/phone_number.md +0 -68
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/placeholdit.md +0 -27
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/programming_language.md +0 -7
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/relationship.md +0 -17
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/restaurant.md +0 -11
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/rock_band.md +0 -5
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/rupaul.md +0 -9
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/science.md +0 -13
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/slack_emoji.md +0 -32
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/source.md +0 -25
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/south_africa.md +0 -29
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/space.md +0 -47
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/string.md +0 -11
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/stripe.md +0 -35
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/subscription.md +0 -13
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/superhero.md +0 -20
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/tea.md +0 -15
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/team.md +0 -18
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/time.md +0 -40
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/twitter.md +0 -29
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/types.md +0 -34
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/university.md +0 -20
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/vehicle.md +0 -71
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/verbs.md +0 -13
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/default/world_cup.md +0 -19
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/drone/drone.md +0 -34
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/fantasy/tolkien.md +0 -15
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/games/clash_of_clans.md +0 -9
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/games/dnd.md +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/games/dota.md +0 -22
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/games/elder_scrolls.md +0 -23
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/games/fallout.md +0 -11
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/games/game.md +0 -12
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/games/half_life.md +0 -12
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/games/heroes.md +0 -11
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/games/heroes_of_the_storm.md +0 -11
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/games/league_of_legends.md +0 -17
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/games/minecraft.md +0 -27
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/games/myst.md +0 -15
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/games/overwatch.md +0 -11
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/games/pokemon.md +0 -11
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/games/sonic_the_hedgehog.md +0 -12
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/games/street_fighter.md +0 -15
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/games/super_mario.md +0 -12
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/games/super_smash_bros.md +0 -11
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/games/touhou.md +0 -18
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/games/warhammer_fantasy.md +0 -18
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/games/witcher.md +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/games/world_of_warcraft.md +0 -15
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/games/zelda.md +0 -17
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/internet/http.md +0 -11
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/japanese_media/conan.md +0 -9
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/japanese_media/doraemon.md +0 -9
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/japanese_media/dragon_ball.md +0 -9
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/japanese_media/naruto.md +0 -11
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/japanese_media/one_piece.md +0 -15
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/japanese_media/studio_ghibli.md +0 -9
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/japanese_media/sword_art_online.md +0 -17
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/movies/back_to_the_future.md +0 -9
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/movies/departed.md +0 -11
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/movies/ghostbusters.md +0 -9
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/movies/grateful_dead.md +0 -7
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/movies/harry_potter.md +0 -17
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/movies/hitchhikers_guide_to_the_galaxy.md +0 -19
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/movies/hobbit.md +0 -15
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/movies/how_to_train_your_dragon.md +0 -7
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/movies/lebowski.md +0 -11
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/movies/lord_of_the_rings.md +0 -7
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/movies/movie.md +0 -7
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/movies/princess_bride.md +0 -9
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/movies/room.md +0 -11
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/movies/star_wars.md +0 -27
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/movies/v_for_vendetta.md +0 -9
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/music/grateful_dead.md +0 -7
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/music/hiphop.md +0 -10
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/music/music.md +0 -19
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/music/opera.md +0 -47
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/music/pearl_jam.md +0 -9
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/music/phish.md +0 -9
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/music/prince.md +0 -12
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/music/rock_band.md +0 -7
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/music/rush.md +0 -7
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/music/umphreys_mcgee.md +0 -5
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/quotes/chiquito.md +0 -12
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/quotes/quote.md +0 -19
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/quotes/rajnikanth.md +0 -5
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/quotes/shakespeare.md +0 -11
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/sports/basketball.md +0 -11
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/sports/football.md +0 -15
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/sports/volleyball.md +0 -13
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/tv_shows/aqua_teen_hunger_force.md +0 -7
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/tv_shows/big_bang_theory.md +0 -7
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/tv_shows/bojack_horseman.md +0 -9
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/tv_shows/breaking_bad.md +0 -9
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/tv_shows/buffy.md +0 -13
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/tv_shows/community.md +0 -9
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/tv_shows/dr_who.md +0 -17
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/tv_shows/dumb_and_dumber.md +0 -9
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/tv_shows/family_guy.md +0 -9
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/tv_shows/final_space.md +0 -9
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/tv_shows/friends.md +0 -11
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/tv_shows/game_of_thrones.md +0 -15
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/tv_shows/hey_arnold.md +0 -11
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/tv_shows/how_i_met_your_mother.md +0 -13
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/tv_shows/michael_scott.md +0 -7
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/tv_shows/new_girl.md +0 -7
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/tv_shows/parks_and_rec.md +0 -7
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/tv_shows/rick_and_morty.md +0 -11
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/tv_shows/rupaul.md +0 -9
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/tv_shows/seinfeld.md +0 -11
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/tv_shows/silicon_valley.md +0 -19
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/tv_shows/simpsons.md +0 -11
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/tv_shows/south_park.md +0 -7
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/tv_shows/star_trek.md +0 -13
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/tv_shows/stargate.md +0 -9
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/tv_shows/stranger_things.md +0 -9
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/tv_shows/suits.md +0 -6
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/tv_shows/the_expanse.md +0 -11
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/tv_shows/the_fresh_prince_of_bel_air.md +0 -9
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/tv_shows/the_it_crowd.md +0 -11
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/tv_shows/the_thick_of_it.md +0 -9
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/tv_shows/twin_peaks.md +0 -11
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/tv_shows/venture_bros.md +0 -11
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/doc/unreleased/music/show.md +0 -7
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/faker.gemspec +0 -60
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker.rb +0 -315
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/blockchain/aeternity.rb +0 -70
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/blockchain/bitcoin.rb +0 -60
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/blockchain/ethereum.rb +0 -26
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/blockchain/tezos.rb +0 -135
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/books/book.rb +0 -61
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/books/culture_series.rb +0 -83
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/books/dune.rb +0 -132
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/books/lovecraft.rb +0 -280
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/creature/animal.rb +0 -22
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/creature/bird.rb +0 -203
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/creature/cat.rb +0 -50
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/creature/dog.rb +0 -115
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/creature/horse.rb +0 -37
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/address.rb +0 -368
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/alphanumeric.rb +0 -73
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/ancient.rb +0 -59
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/app.rb +0 -77
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/appliance.rb +0 -33
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/artist.rb +0 -20
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/avatar.rb +0 -60
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/bank.rb +0 -207
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/barcode.rb +0 -165
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/beer.rb +0 -113
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/blood.rb +0 -48
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/boolean.rb +0 -26
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/bossa_nova.rb +0 -33
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/business.rb +0 -50
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/camera.rb +0 -46
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/cannabis.rb +0 -135
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/chile_rut.rb +0 -98
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/chuck_norris.rb +0 -25
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/code.rb +0 -282
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/coffee.rb +0 -82
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/coin.rb +0 -33
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/color.rb +0 -79
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/commerce.rb +0 -143
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/company.rb +0 -581
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/compass.rb +0 -202
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/computer.rb +0 -63
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/construction.rb +0 -83
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/cosmere.rb +0 -138
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/crypto.rb +0 -61
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/crypto_coin.rb +0 -94
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/currency.rb +0 -46
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/date.rb +0 -186
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/dc_comics.rb +0 -70
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/demographic.rb +0 -98
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/dessert.rb +0 -48
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/device.rb +0 -85
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/driving_licence.rb +0 -131
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/drone.rb +0 -332
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/educator.rb +0 -102
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/electrical_components.rb +0 -48
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/esport.rb +0 -72
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/faker_adjective.rb +0 -35
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/file.rb +0 -100
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/fillmurray.rb +0 -45
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/finance.rb +0 -89
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/food.rb +0 -113
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/funny_name.rb +0 -90
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/gender.rb +0 -46
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/greek_philosophers.rb +0 -33
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/hacker.rb +0 -103
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/hipster.rb +0 -194
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/house.rb +0 -33
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/id_number.rb +0 -313
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/industry_segments.rb +0 -61
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/internet.rb +0 -584
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/internet_http.rb +0 -48
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/invoice.rb +0 -136
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/job.rb +0 -61
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/json.rb +0 -143
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/kpop.rb +0 -85
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/lorem.rb +0 -306
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/lorem_flickr.rb +0 -138
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/lorem_pixel.rb +0 -70
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/markdown.rb +0 -175
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/marketing.rb +0 -22
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/measurement.rb +0 -207
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/military.rb +0 -98
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/mountain.rb +0 -33
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/name.rb +0 -156
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/nation.rb +0 -76
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/nato_phonetic_alphabet.rb +0 -20
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/nhs.rb +0 -57
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/number.rb +0 -289
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/omniauth.rb +0 -461
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/phone_number.rb +0 -137
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/placeholdit.rb +0 -63
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/programming_language.rb +0 -33
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/relationship.rb +0 -91
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/restaurant.rb +0 -63
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/science.rb +0 -72
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/slack_emoji.rb +0 -124
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/source.rb +0 -76
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/south_africa.rb +0 -141
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/space.rb +0 -191
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/string.rb +0 -66
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/stripe.rb +0 -142
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/subscription.rb +0 -70
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/superhero.rb +0 -72
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/tea.rb +0 -41
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/team.rb +0 -74
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/time.rb +0 -179
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/twitter.rb +0 -223
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/types.rb +0 -182
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/university.rb +0 -75
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/vehicle.rb +0 -342
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/verb.rb +0 -72
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/default/world_cup.rb +0 -86
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/fantasy/tolkien.rb +0 -67
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/games/clash_of_clans.rb +0 -48
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/games/control.rb +0 -113
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/games/dnd.rb +0 -136
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/games/dota.rb +0 -80
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/games/elder_scrolls.rb +0 -139
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/games/fallout.rb +0 -62
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/games/game.rb +0 -48
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/games/half_life.rb +0 -48
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/games/heroes.rb +0 -61
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/games/heroes_of_the_storm.rb +0 -72
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/games/league_of_legends.rb +0 -87
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/games/minecraft.rb +0 -113
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/games/myst.rb +0 -74
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/games/overwatch.rb +0 -48
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/games/pokemon.rb +0 -48
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/games/sonic_the_hedgehog.rb +0 -48
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/games/street_fighter.rb +0 -61
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/games/super_mario.rb +0 -48
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/games/super_smash_bros.rb +0 -35
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/games/touhou.rb +0 -75
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/games/warhammer_fantasy.rb +0 -74
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/games/witcher.rb +0 -126
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/games/world_of_warcraft.rb +0 -60
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/games/zelda.rb +0 -62
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/japanese_media/conan.rb +0 -48
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/japanese_media/doraemon.rb +0 -48
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/japanese_media/dragon_ball.rb +0 -48
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/japanese_media/naruto.rb +0 -61
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/japanese_media/one_piece.rb +0 -87
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/japanese_media/studio_ghibli.rb +0 -48
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/japanese_media/sword_art_online.rb +0 -61
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/movies/back_to_the_future.rb +0 -49
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/movies/departed.rb +0 -49
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/movies/ghostbusters.rb +0 -49
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/movies/harry_potter.rb +0 -87
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/movies/hitchhikers_guide_to_the_galaxy.rb +0 -106
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/movies/hobbit.rb +0 -62
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/movies/how_to_train_your_dragon.rb +0 -48
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/movies/lebowski.rb +0 -48
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/movies/lord_of_the_rings.rb +0 -49
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/movies/movie.rb +0 -33
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/movies/princess_bride.rb +0 -36
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/movies/room.rb +0 -63
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/movies/star_wars.rb +0 -273
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/movies/v_for_vendetta.rb +0 -50
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/music/grateful_dead.rb +0 -37
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/music/hiphop.rb +0 -48
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/music/music.rb +0 -145
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/music/opera.rb +0 -298
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/music/pearl_jam.rb +0 -50
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/music/phish.rb +0 -48
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/music/prince.rb +0 -64
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/music/rock_band.rb +0 -34
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/music/rush.rb +0 -37
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/music/show.rb +0 -49
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/music/umphreys_mcgee.rb +0 -22
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/quotes/chiquito.rb +0 -80
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/quotes/quote.rb +0 -111
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/quotes/rajnikanth.rb +0 -27
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/quotes/shakespeare.rb +0 -111
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/sports/basketball.rb +0 -61
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/sports/football.rb +0 -74
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/sports/volleyball.rb +0 -74
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/tv_shows/aqua_teen_hunger_force.rb +0 -37
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/tv_shows/big_bang_theory.rb +0 -37
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/tv_shows/bojack_horseman.rb +0 -51
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/tv_shows/breaking_bad.rb +0 -37
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/tv_shows/buffy.rb +0 -89
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/tv_shows/community.rb +0 -38
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/tv_shows/dr_who.rb +0 -115
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/tv_shows/dumb_and_dumber.rb +0 -51
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/tv_shows/family_guy.rb +0 -51
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/tv_shows/final_space.rb +0 -51
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/tv_shows/friends.rb +0 -50
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/tv_shows/futurama.rb +0 -65
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/tv_shows/game_of_thrones.rb +0 -77
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/tv_shows/hey_arnold.rb +0 -50
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/tv_shows/how_i_met_your_mother.rb +0 -64
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/tv_shows/michael_scott.rb +0 -26
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/tv_shows/new_girl.rb +0 -38
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/tv_shows/parks_and_rec.rb +0 -37
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/tv_shows/rick_and_morty.rb +0 -51
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/tv_shows/ru_paul.rb +0 -37
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/tv_shows/seinfeld.rb +0 -51
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/tv_shows/silicon_valley.rb +0 -118
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/tv_shows/simpsons.rb +0 -65
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/tv_shows/south_park.rb +0 -38
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/tv_shows/star_trek.rb +0 -63
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/tv_shows/stargate.rb +0 -51
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/tv_shows/stranger_things.rb +0 -38
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/tv_shows/suits.rb +0 -37
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/tv_shows/the_expanse.rb +0 -63
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/tv_shows/the_fresh_prince_of_bel_air.rb +0 -64
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/tv_shows/the_it_crowd.rb +0 -64
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/tv_shows/the_thick_of_it.rb +0 -51
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/tv_shows/twin_peaks.rb +0 -51
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/tv_shows/venture_bros.rb +0 -65
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/faker/version.rb +0 -5
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/helpers/base58.rb +0 -22
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/helpers/char.rb +0 -61
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/helpers/unique_generator.rb +0 -58
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/README.md +0 -40
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/ar.yml +0 -102
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/bg.yml +0 -44
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/ca-CAT.yml +0 -24
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/ca.yml +0 -23
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/da-DK.yml +0 -73
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/de-AT.yml +0 -58
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/de-CH.yml +0 -1714
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/de.yml +0 -176
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/ee.yml +0 -61
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en-AU.yml +0 -68
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en-BORK.yml +0 -4
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en-CA.yml +0 -39
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en-GB.yml +0 -14
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en-IND.yml +0 -26
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en-MS.yml +0 -48
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en-NEP.yml +0 -52
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en-NG.yml +0 -77
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en-NZ.yml +0 -165
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en-PAK.yml +0 -19
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en-SG.yml +0 -36
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en-TH.yml +0 -360
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en-UG.yml +0 -128
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en-US.yml +0 -129
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en-ZA.yml +0 -148
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en-au-ocker.yml +0 -34
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en.yml +0 -8
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/README.md +0 -13
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/address.yml +0 -587
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/adjective.yml +0 -179
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/ancient.yml +0 -7
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/animal.yml +0 -6
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/app.yml +0 -8
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/appliance.yml +0 -5
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/aqua_teen_hunger_force.yml +0 -36
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/artist.yml +0 -4
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/back_to_the_future.yml +0 -120
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/bank.yml +0 -302
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/barcode.yml +0 -24
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/basketball.yml +0 -99
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/beer.yml +0 -9
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/big_bang_theory.yml +0 -38
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/bird.yml +0 -1281
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/blood.yml +0 -13
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/bojack_horseman.yml +0 -6
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/book.yml +0 -491
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/bossa_nova.yml +0 -6
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/breaking_bad.yml +0 -28
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/buffy.yml +0 -260
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/business.yml +0 -5
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/camera.yml +0 -611
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/cannabis.yml +0 -13
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/cat.yml +0 -7
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/chiquito.yml +0 -64
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/chuck_norris.yml +0 -82
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/clash_of_clan.yml +0 -101
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/code.yml +0 -4
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/coffee.yml +0 -31
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/coin.yml +0 -6
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/color.yml +0 -4
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/commerce.yml +0 -11
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/community.yml +0 -33
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/company.yml +0 -22
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/compass.yml +0 -34
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/computer.yml +0 -36
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/conan.yml +0 -171
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/construction.yml +0 -425
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/control.yml +0 -247
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/cosmere.yml +0 -57
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/crypto_coin.yml +0 -25
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/culture_series.yml +0 -307
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/currency.yml +0 -6
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/dc_comics.yml +0 -52
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/demographic.yml +0 -221
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/departed.yml +0 -50
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/dessert.yml +0 -6
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/device.yml +0 -115
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/dnd.yml +0 -451
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/dog.yml +0 -11
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/doraemon.yml +0 -286
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/dota.yml +0 -573
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/dr_who.yml +0 -96
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/dragon_ball.yml +0 -246
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/driving_license.yml +0 -181
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/drone.yml +0 -95
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/dumb_and_dumber.yml +0 -59
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/dune.yml +0 -298
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/educator.yml +0 -80
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/elder_scrolls.yml +0 -585
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/electrical_components.yml +0 -6
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/esport.yml +0 -8
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/fallout.yml +0 -315
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/family_guy.yml +0 -7
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/file.yml +0 -5
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/final_space.yml +0 -37
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/finance.yml +0 -166
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/food.yml +0 -13
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/football.yml +0 -8
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/fresh_prince_of_bel_air.yml +0 -73
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/friends.yml +0 -6
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/funny_name.yml +0 -4
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/futurama.yml +0 -344
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/game.yml +0 -283
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/game_of_thrones.yml +0 -8
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/gender.yml +0 -6
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/ghostbusters.yml +0 -91
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/grateful_dead.yml +0 -48
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/greek_philosophers.yml +0 -26
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/hacker.yml +0 -8
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/half_life.yml +0 -88
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/harry_potter.yml +0 -9
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/heroes.yml +0 -411
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/heroes_of_the_storm.yml +0 -134
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/hey_arnold.yml +0 -24
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/hipster.yml +0 -4
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/hitchhikers_guide_to_the_galaxy.yml +0 -45
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/horse.yml +0 -6
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/house.yml +0 -5
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/how_i_met_your_mother.yml +0 -28
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/how_to_train_your_dragon.yml +0 -174
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/id_number.yml +0 -5
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/industry_segments.yml +0 -7
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/internet.yml +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/invoice.yml +0 -6
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/jack_handey.yml +0 -54
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/job.yml +0 -15
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/kpop.yml +0 -83
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/league_of_legends.yml +0 -289
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/lebowski.yml +0 -43
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/lorem.yml +0 -11
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/lovecraft.yml +0 -79
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/markdown.yml +0 -5
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/marketing.yml +0 -4
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/measurement.yml +0 -11
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/michael_scott.yml +0 -45
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/military.yml +0 -182
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/minecraft.yml +0 -663
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/mountain.yml +0 -158
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/movie.yml +0 -196
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/music.yml +0 -464
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/myst.yml +0 -104
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/name.yml +0 -26
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/naruto.yml +0 -231
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/nation.yml +0 -11
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/nato_phonetic_alphabet.yml +0 -4
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/new_girl.yml +0 -40
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/one_piece.yml +0 -9
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/opera.yml +0 -340
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/overwatch.yml +0 -2654
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/parks_and_rec.yml +0 -7
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/pearl_jam.yml +0 -213
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/phish.yml +0 -395
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/phone_number.yml +0 -7
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/pokemon.yml +0 -421
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/prince.yml +0 -227
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/princess_bride.yml +0 -5
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/programming_language.yml +0 -6
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/quote.yml +0 -695
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/rajnikanth.yml +0 -77
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/relationship.yml +0 -10
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/restaurant.yml +0 -129
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/rick_and_morty.yml +0 -6
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/rock_band.yml +0 -5
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/room.yml +0 -68
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/rupaul.yml +0 -125
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/rush.yml +0 -32
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/science.yml +0 -358
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/seinfeld.yml +0 -6
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/shakespeare.yml +0 -53
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/show.yml +0 -597
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/silicon_valley.yml +0 -53
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/simpsons.yml +0 -694
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/slack_emoji.yml +0 -20
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/sonic_the_hedgehog.yml +0 -410
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/source.yml +0 -46
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/south_park.yml +0 -5
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/space.yml +0 -17
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/star_trek.yml +0 -7
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/star_wars.yml +0 -606
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/stargate.yml +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/stranger_thing.yml +0 -36
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/street_fighter.yml +0 -1524
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/stripe.yml +0 -42
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/studio_ghibli.yml +0 -107
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/subscription.yml +0 -8
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/suits.yml +0 -45
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/super_mario.yml +0 -58
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/super_smash_bros.yml +0 -220
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/superhero.yml +0 -12
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/sword_art_online.yml +0 -334
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/tea.yml +0 -172
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/team.yml +0 -8
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/the_expanse.yml +0 -7
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/the_it_crowd.yml +0 -155
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/the_thick_of_it.yml +0 -6
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/tolkien.yml +0 -2453
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/touhou.yml +0 -839
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/twin_peaks.yml +0 -6
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/umphreys_mcgee.yml +0 -4
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/university.yml +0 -10
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/v_for_vendetta.yml +0 -163
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/vehicle.yml +0 -80
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/venture_bros.yml +0 -7
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/verbs.yml +0 -8
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/volleyball.yml +0 -501
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/warhammer_fantasy.yml +0 -582
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/witcher.yml +0 -430
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/world_cup.yml +0 -271
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/world_of_warcraft.yml +0 -126
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/yoda.yml +0 -4
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/en/zelda.yml +0 -966
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/es-AR.yml +0 -4603
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/es-MX.yml +0 -105
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/es.yml +0 -150
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/fa.yml +0 -12
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/fi-FI.yml +0 -35
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/fr-CA.yml +0 -107
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/fr-CH.yml +0 -78
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/fr.yml +0 -3
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/fr/address.yml +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/fr/book.yml +0 -7
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/fr/color.yml +0 -4
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/fr/company.yml +0 -17
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/fr/compass.yml +0 -23
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/fr/demographic.yml +0 -4
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/fr/gender.yml +0 -6
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/fr/internet.yml +0 -5
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/fr/lorem.yml +0 -5
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/fr/measurement.yml +0 -7
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/fr/name.yml +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/fr/phone_number.yml +0 -7
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/fr/pokemon.yml +0 -9
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/he.yml +0 -27
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/hy.yml +0 -411
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/id.yml +0 -26
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/it.yml +0 -71
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/ja/README.md +0 -13
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/ja/address.yml +0 -124450
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/ja/ancient.yml +0 -4
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/ja/bank.yml +0 -4
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/ja/book.yml +0 -7
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/ja/coffee.yml +0 -4
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/ja/color.yml +0 -4
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/ja/commerce.yml +0 -11
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/ja/company.yml +0 -8
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/ja/creature.yml +0 -9
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/ja/food.yml +0 -4
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/ja/games.yml +0 -18
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/ja/gender.yml +0 -4
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/ja/lorem.yml +0 -9
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/ja/name.yml +0 -13
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/ja/phone_number.yml +0 -7
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/ja/restaurant.yml +0 -11
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/ja/space.yml +0 -5
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/ja/subscription.yml +0 -8
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/ja/university.yml +0 -9
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/ko.yml +0 -132
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/lv.yml +0 -55
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/nb-NO.yml +0 -64
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/nl.yml +0 -92
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/no.yml +0 -7
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/pl.yml +0 -77
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/pt-BR.yml +0 -720
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/pt.yml +0 -68
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/ru.yml +0 -117
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/sk.yml +0 -80
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/sv.yml +0 -81
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/th.yml +0 -380
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/tr.yml +0 -40
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/uk.yml +0 -88
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/vi.yml +0 -68
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/zh-CN.yml +0 -56
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/lib/locales/zh-TW.yml +0 -29
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/script/destroy +0 -16
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/script/generate +0 -16
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/script/txt2html +0 -81
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/tasks/reformat_yaml.rake +0 -26
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/tasks/test.rake +0 -12
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/tasks/website.rake +0 -18
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/blockchain/test_aeternity.rb +0 -25
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/blockchain/test_bitcoin.rb +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/blockchain/test_ethereum.rb +0 -13
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/blockchain/test_tezos.rb +0 -40
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/books/test_book.rb +0 -25
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/books/test_dune.rb +0 -33
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/books/test_faker_culture_series.rb +0 -33
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/books/test_faker_dune.rb +0 -57
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/books/test_lovecraft.rb +0 -104
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/creature/test_faker_animal.rb +0 -13
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/creature/test_faker_bird.rb +0 -93
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/creature/test_faker_cat.rb +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/creature/test_faker_dog.rb +0 -41
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/creature/test_faker_horse.rb +0 -17
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_alphanum.rb +0 -49
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_array_sample_method_compat.rb +0 -57
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_avatar.rb +0 -45
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_barcodes.rb +0 -76
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_country_code.rb +0 -33
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_address.rb +0 -101
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_adjective.rb +0 -17
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_ancient.rb +0 -25
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_app.rb +0 -62
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_appliance.rb +0 -17
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_artist.rb +0 -13
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_bank.rb +0 -553
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_beer.rb +0 -45
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_birthday_in_leap_year.rb +0 -42
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_blood.rb +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_boolean.rb +0 -14
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_bossa_nova.rb +0 -17
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_business.rb +0 -34
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_camera.rb +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_cannabis.rb +0 -65
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_char.rb +0 -18
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_chile_rut.rb +0 -27
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_chuck_norris.rb +0 -13
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_city.rb +0 -55
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_code.rb +0 -79
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_coffee.rb +0 -55
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_coin.rb +0 -17
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_color.rb +0 -50
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_commerce.rb +0 -98
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_company.rb +0 -272
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_compass.rb +0 -42
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_computer.rb +0 -33
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_construction.rb +0 -45
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_cosmere.rb +0 -45
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_crypto.rb +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_crypto_coin.rb +0 -43
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_currency.rb +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_date.rb +0 -183
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_dc_comics.rb +0 -29
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_demographic.rb +0 -37
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_dessert.rb +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_device.rb +0 -35
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_driving_licence.rb +0 -98
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_drone.rb +0 -109
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_educator.rb +0 -37
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_electrical_components.rb +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_esport.rb +0 -29
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_file.rb +0 -33
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_fillmurray.rb +0 -35
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_finance.rb +0 -44
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_food.rb +0 -51
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_funny_name.rb +0 -34
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_gender.rb +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_greek_philosophers.rb +0 -17
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_hacker_talk.rb +0 -37
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_hipster.rb +0 -99
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_house.rb +0 -17
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_id_number.rb +0 -192
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_industry_segments.rb +0 -25
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_internet.rb +0 -342
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_internet_http.rb +0 -40
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_job.rb +0 -25
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_job_locale.rb +0 -18
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_json.rb +0 -27
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_kpop.rb +0 -33
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_lorem.rb +0 -132
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_lorem_flickr.rb +0 -126
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_markdown.rb +0 -105
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_marketing.rb +0 -13
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_measurement.rb +0 -59
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_military.rb +0 -37
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_mountain.rb +0 -17
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_name.rb +0 -54
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_nation.rb +0 -29
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_national_health_service.rb +0 -27
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_number.rb +0 -137
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_omniauth.rb +0 -518
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_phone_number.rb +0 -26
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_programming_language.rb +0 -17
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_relationship.rb +0 -44
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_restaurant.rb +0 -25
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_science.rb +0 -29
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_slack_emoji.rb +0 -46
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_source.rb +0 -41
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_south_africa.rb +0 -65
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_space.rb +0 -65
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_street.rb +0 -76
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_string.rb +0 -64
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_stripe.rb +0 -65
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_subscription.rb +0 -29
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_superhero.rb +0 -17
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_tea.rb +0 -31
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_team.rb +0 -25
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_time.rb +0 -134
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_types.rb +0 -82
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_unique_generator.rb +0 -124
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_university.rb +0 -38
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_vehicle.rb +0 -110
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_verb.rb +0 -29
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_world_cup.rb +0 -29
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_faker_zip_code.rb +0 -66
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_half_life.rb +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_invoice.rb +0 -38
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_lorem_pixel.rb +0 -71
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_nato_phonetic_alphabet.rb +0 -13
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_placeholdit.rb +0 -101
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/default/test_twitter.rb +0 -56
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/fantasy/test_faker_fantasy_tolkien.rb +0 -25
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/games/test_faker_clash_of_clans.rb +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/games/test_faker_control.rb +0 -41
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/games/test_faker_dnd.rb +0 -45
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/games/test_faker_dota.rb +0 -37
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/games/test_faker_elder_scrolls.rb +0 -49
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/games/test_faker_fallout.rb +0 -25
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/games/test_faker_game.rb +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/games/test_faker_heroes.rb +0 -25
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/games/test_faker_heroes_of_the_storm.rb +0 -25
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/games/test_faker_league_of_legends.rb +0 -33
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/games/test_faker_minecraft.rb +0 -41
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/games/test_faker_myst.rb +0 -29
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/games/test_faker_overwatch.rb +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/games/test_faker_pokemon.rb +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/games/test_faker_sonic_the_hedgehog.rb +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/games/test_faker_street_fighter.rb +0 -25
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/games/test_faker_super_mario.rb +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/games/test_faker_super_smash_bros.rb +0 -17
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/games/test_faker_touhou.rb +0 -29
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/games/test_faker_warhammer_fantasy.rb +0 -29
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/games/test_faker_witcher.rb +0 -45
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/games/test_faker_world_of_warcraft.rb +0 -25
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/games/test_faker_zelda.rb +0 -25
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/japanese_media/test_faker_conan.rb +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/japanese_media/test_faker_doraemon.rb +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/japanese_media/test_faker_dragon_ball.rb +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/japanese_media/test_faker_one_piece.rb +0 -33
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/japanese_media/test_faker_studio_ghibli.rb +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/japanese_media/test_faker_sword_art_online.rb +0 -25
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/japanese_media/text_faker_naruto.rb +0 -25
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/movies/test_faker_back_to_the_future.rb +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/movies/test_faker_departed.rb +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/movies/test_faker_harry_potter.rb +0 -33
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/movies/test_faker_hitchhikers_guide_to_the_galaxy.rb +0 -37
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/movies/test_faker_hobbit.rb +0 -25
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/movies/test_faker_how_to_train_your_dragon.rb +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/movies/test_faker_lebowski.rb +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/movies/test_faker_lord_of_the_rings.rb +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/movies/test_faker_movie.rb +0 -17
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/movies/test_faker_movies_ghostbusters.rb +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/movies/test_faker_princess_bride.rb +0 -17
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/movies/test_faker_room.rb +0 -25
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/movies/test_faker_star_wars.rb +0 -90
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/movies/test_faker_v_for_vendetta.rb +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/music/test_faker_grateful_dead.rb +0 -17
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/music/test_faker_hiphop.rb +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/music/test_faker_music.rb +0 -67
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/music/test_faker_opera.rb +0 -97
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/music/test_faker_pearl_jam.rb +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/music/test_faker_phish.rb +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/music/test_faker_prince.rb +0 -25
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/music/test_faker_rock_band.rb +0 -17
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/music/test_faker_rush.rb +0 -17
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/music/test_faker_show.rb +0 -17
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/music/test_faker_umphreys_mcgee.rb +0 -13
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/quotes/test_faker_chiquito.rb +0 -25
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/quotes/test_faker_quote.rb +0 -41
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/quotes/test_faker_rajnikanth.rb +0 -13
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/quotes/test_faker_shakespeare.rb +0 -25
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/sports/test_faker_basketball.rb +0 -25
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/sports/test_faker_football.rb +0 -29
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/sports/test_faker_volleyball.rb +0 -29
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/tv_shows/test_aqua_teen_hunger_force.rb +0 -17
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/tv_shows/test_big_bang_theory.rb +0 -17
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/tv_shows/test_bojack_horseman.rb +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/tv_shows/test_breaking_bad.rb +0 -17
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/tv_shows/test_buffy.rb +0 -34
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/tv_shows/test_community.rb +0 -17
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/tv_shows/test_dr_who.rb +0 -56
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/tv_shows/test_dumb_and_dumber.rb +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/tv_shows/test_family_guy.rb +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/tv_shows/test_final_space.rb +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/tv_shows/test_friends.rb +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/tv_shows/test_futurama.rb +0 -25
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/tv_shows/test_game_of_thrones.rb +0 -29
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/tv_shows/test_hey_arnold.rb +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/tv_shows/test_how_i_met_your_mother.rb +0 -25
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/tv_shows/test_michael_scott.rb +0 -13
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/tv_shows/test_new_girl.rb +0 -17
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/tv_shows/test_parks_and_rec.rb +0 -17
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/tv_shows/test_rick_and_morty.rb +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/tv_shows/test_ru_paul.rb +0 -17
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/tv_shows/test_seinfeld.rb +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/tv_shows/test_silicon_valley.rb +0 -41
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/tv_shows/test_simpsons.rb +0 -35
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/tv_shows/test_south_park.rb +0 -17
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/tv_shows/test_star_trek.rb +0 -25
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/tv_shows/test_stargate.rb +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/tv_shows/test_stranger_things.rb +0 -17
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/tv_shows/test_suits.rb +0 -17
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/tv_shows/test_the_expanse.rb +0 -25
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/tv_shows/test_the_fresh_prince_of_bel_air.rb +0 -26
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/tv_shows/test_the_it_crowd.rb +0 -25
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/tv_shows/test_the_thick_of_it.rb +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/tv_shows/test_twin_peaks.rb +0 -21
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/faker/tv_shows/test_venture_bros.rb +0 -25
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/support/assert_not_english.rb +0 -5
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_ar_locale.rb +0 -81
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_bg_locale.rb +0 -51
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_ca_cat_locale.rb +0 -38
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_ca_locale.rb +0 -28
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_da_dk_locale.rb +0 -57
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_de_at_locale.rb +0 -53
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_de_ch_locale.rb +0 -29
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_de_locale.rb +0 -134
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_determinism.rb +0 -58
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_ee_locale.rb +0 -68
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_en_au_locale.rb +0 -37
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_en_au_ocker_locale.rb +0 -49
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_en_ca_locale.rb +0 -61
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_en_gb_locale.rb +0 -62
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_en_ind_locale.rb +0 -37
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_en_locale.rb +0 -56
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_en_ms_locale.rb +0 -46
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_en_nep_locale.rb +0 -41
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_en_ng_locale.rb +0 -40
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_en_nz_locale.rb +0 -51
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_en_pak_locale.rb +0 -36
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_en_sg_locale.rb +0 -38
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_en_th_locale.rb +0 -18
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_en_ug_locale.rb +0 -42
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_en_us_locale.rb +0 -95
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_en_za_locale.rb +0 -39
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_es_ar_locale.rb +0 -361
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_es_locale.rb +0 -105
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_es_mx_locale.rb +0 -71
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_fa_locale.rb +0 -20
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_faker.rb +0 -126
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_fi_locale.rb +0 -47
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_flexible.rb +0 -72
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_fr_ca_locale.rb +0 -80
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_fr_ch_locale.rb +0 -77
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_fr_locale.rb +0 -133
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_he_locale.rb +0 -31
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_helper.rb +0 -40
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_hy_locale.rb +0 -163
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_id_locale.rb +0 -38
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_it_locale.rb +0 -62
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_ja_locale.rb +0 -184
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_ko_locale.rb +0 -75
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_locale.rb +0 -81
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_lv_locale.rb +0 -57
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_nb_no_locale.rb +0 -56
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_nl_locale.rb +0 -72
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_no_no_locale.rb +0 -30
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_pl_locale.rb +0 -71
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_pt_br_locale.rb +0 -148
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_pt_locale.rb +0 -44
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_ru_locale.rb +0 -62
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_seeding.rb +0 -22
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_sk_locale.rb +0 -58
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_sv_locale.rb +0 -66
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_th_locale.rb +0 -18
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_tr_locale.rb +0 -46
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_uk_locale.rb +0 -57
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_vi_locale.rb +0 -50
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_zh_cn_locale.rb +0 -48
- data/vendor/bundle/jruby/2.5.0/bundler/gems/faker-e1bd4a5a5777/test/test_zh_tw_locale.rb +0 -37
- data/vendor/bundle/jruby/2.5.0/cache/bundler/git/faker-9fbfdc74b06b6ae28040c03e3de8c9c3b48df274/FETCH_HEAD +0 -84
- data/vendor/bundle/jruby/2.5.0/cache/bundler/git/faker-9fbfdc74b06b6ae28040c03e3de8c9c3b48df274/HEAD +0 -1
- data/vendor/bundle/jruby/2.5.0/cache/bundler/git/faker-9fbfdc74b06b6ae28040c03e3de8c9c3b48df274/config +0 -8
- data/vendor/bundle/jruby/2.5.0/cache/bundler/git/faker-9fbfdc74b06b6ae28040c03e3de8c9c3b48df274/description +0 -1
- data/vendor/bundle/jruby/2.5.0/cache/bundler/git/faker-9fbfdc74b06b6ae28040c03e3de8c9c3b48df274/hooks/applypatch-msg.sample +0 -15
- data/vendor/bundle/jruby/2.5.0/cache/bundler/git/faker-9fbfdc74b06b6ae28040c03e3de8c9c3b48df274/hooks/commit-msg.sample +0 -24
- data/vendor/bundle/jruby/2.5.0/cache/bundler/git/faker-9fbfdc74b06b6ae28040c03e3de8c9c3b48df274/hooks/fsmonitor-watchman.sample +0 -114
- data/vendor/bundle/jruby/2.5.0/cache/bundler/git/faker-9fbfdc74b06b6ae28040c03e3de8c9c3b48df274/hooks/post-update.sample +0 -8
- data/vendor/bundle/jruby/2.5.0/cache/bundler/git/faker-9fbfdc74b06b6ae28040c03e3de8c9c3b48df274/hooks/pre-applypatch.sample +0 -14
- data/vendor/bundle/jruby/2.5.0/cache/bundler/git/faker-9fbfdc74b06b6ae28040c03e3de8c9c3b48df274/hooks/pre-commit.sample +0 -49
- data/vendor/bundle/jruby/2.5.0/cache/bundler/git/faker-9fbfdc74b06b6ae28040c03e3de8c9c3b48df274/hooks/pre-merge-commit.sample +0 -13
- data/vendor/bundle/jruby/2.5.0/cache/bundler/git/faker-9fbfdc74b06b6ae28040c03e3de8c9c3b48df274/hooks/pre-push.sample +0 -53
- data/vendor/bundle/jruby/2.5.0/cache/bundler/git/faker-9fbfdc74b06b6ae28040c03e3de8c9c3b48df274/hooks/pre-rebase.sample +0 -169
- data/vendor/bundle/jruby/2.5.0/cache/bundler/git/faker-9fbfdc74b06b6ae28040c03e3de8c9c3b48df274/hooks/pre-receive.sample +0 -24
- data/vendor/bundle/jruby/2.5.0/cache/bundler/git/faker-9fbfdc74b06b6ae28040c03e3de8c9c3b48df274/hooks/prepare-commit-msg.sample +0 -42
- data/vendor/bundle/jruby/2.5.0/cache/bundler/git/faker-9fbfdc74b06b6ae28040c03e3de8c9c3b48df274/hooks/update.sample +0 -128
- data/vendor/bundle/jruby/2.5.0/cache/bundler/git/faker-9fbfdc74b06b6ae28040c03e3de8c9c3b48df274/info/exclude +0 -6
- data/vendor/bundle/jruby/2.5.0/cache/bundler/git/faker-9fbfdc74b06b6ae28040c03e3de8c9c3b48df274/objects/pack/pack-8ab03e0b867a26c53052bce5913c8523125a8b7e.idx +0 -0
- data/vendor/bundle/jruby/2.5.0/cache/bundler/git/faker-9fbfdc74b06b6ae28040c03e3de8c9c3b48df274/objects/pack/pack-8ab03e0b867a26c53052bce5913c8523125a8b7e.pack +0 -0
- data/vendor/bundle/jruby/2.5.0/cache/bundler/git/faker-9fbfdc74b06b6ae28040c03e3de8c9c3b48df274/packed-refs +0 -126
- data/vendor/bundle/jruby/2.5.0/cache/connection_pool-2.2.3.gem +0 -0
- data/vendor/bundle/jruby/2.5.0/cache/net-http-persistent-4.0.0.gem +0 -0
- data/vendor/bundle/jruby/2.5.0/gems/connection_pool-2.2.3/Changes.md +0 -130
- data/vendor/bundle/jruby/2.5.0/gems/connection_pool-2.2.3/Gemfile +0 -5
- data/vendor/bundle/jruby/2.5.0/gems/connection_pool-2.2.3/LICENSE +0 -20
- data/vendor/bundle/jruby/2.5.0/gems/connection_pool-2.2.3/README.md +0 -121
- data/vendor/bundle/jruby/2.5.0/gems/connection_pool-2.2.3/Rakefile +0 -7
- data/vendor/bundle/jruby/2.5.0/gems/connection_pool-2.2.3/connection_pool.gemspec +0 -20
- data/vendor/bundle/jruby/2.5.0/gems/connection_pool-2.2.3/lib/connection_pool.rb +0 -110
- data/vendor/bundle/jruby/2.5.0/gems/connection_pool-2.2.3/lib/connection_pool/timed_stack.rb +0 -170
- data/vendor/bundle/jruby/2.5.0/gems/connection_pool-2.2.3/lib/connection_pool/version.rb +0 -3
- data/vendor/bundle/jruby/2.5.0/gems/connection_pool-2.2.3/lib/connection_pool/wrapper.rb +0 -43
- data/vendor/bundle/jruby/2.5.0/gems/connection_pool-2.2.3/test/helper.rb +0 -8
- data/vendor/bundle/jruby/2.5.0/gems/connection_pool-2.2.3/test/test_connection_pool.rb +0 -553
- data/vendor/bundle/jruby/2.5.0/gems/connection_pool-2.2.3/test/test_connection_pool_timed_stack.rb +0 -140
- data/vendor/bundle/jruby/2.5.0/gems/net-http-persistent-4.0.0/Gemfile +0 -15
- data/vendor/bundle/jruby/2.5.0/gems/net-http-persistent-4.0.0/History.txt +0 -430
- data/vendor/bundle/jruby/2.5.0/gems/net-http-persistent-4.0.0/Manifest.txt +0 -14
- data/vendor/bundle/jruby/2.5.0/gems/net-http-persistent-4.0.0/README.rdoc +0 -82
- data/vendor/bundle/jruby/2.5.0/gems/net-http-persistent-4.0.0/Rakefile +0 -31
- data/vendor/bundle/jruby/2.5.0/gems/net-http-persistent-4.0.0/lib/net/http/persistent.rb +0 -1088
- data/vendor/bundle/jruby/2.5.0/gems/net-http-persistent-4.0.0/lib/net/http/persistent/connection.rb +0 -40
- data/vendor/bundle/jruby/2.5.0/gems/net-http-persistent-4.0.0/lib/net/http/persistent/pool.rb +0 -53
- data/vendor/bundle/jruby/2.5.0/gems/net-http-persistent-4.0.0/lib/net/http/persistent/timed_stack_multi.rb +0 -79
- data/vendor/bundle/jruby/2.5.0/gems/net-http-persistent-4.0.0/test/test_net_http_persistent.rb +0 -1441
- data/vendor/bundle/jruby/2.5.0/gems/net-http-persistent-4.0.0/test/test_net_http_persistent_timed_stack_multi.rb +0 -151
- data/vendor/bundle/jruby/2.5.0/specifications/connection_pool-2.2.3.gemspec +0 -38
- data/vendor/bundle/jruby/2.5.0/specifications/net-http-persistent-4.0.0.gemspec +0 -53
@@ -1,95 +0,0 @@
|
|
1
|
-
require 'benchmark'
|
2
|
-
require 'json'
|
3
|
-
|
4
|
-
require_relative '../../../lib/scalyr/common/util'
|
5
|
-
|
6
|
-
# NOTE: When using jRuby using multiple iterations with the same dataset doesn't make
|
7
|
-
# sense since it will just use JITed version of the code which will be very fast. If we
|
8
|
-
# wanted to accurately measure using multiple iterations we would need te different
|
9
|
-
# input data for each iteration.
|
10
|
-
|
11
|
-
def rand_str(len)
|
12
|
-
return (0...len).map { (65 + rand(26)).chr }.join
|
13
|
-
end
|
14
|
-
|
15
|
-
def generate_hash(widths)
|
16
|
-
result = {}
|
17
|
-
if widths.empty?
|
18
|
-
return rand_str(20)
|
19
|
-
else
|
20
|
-
widths[0].times do
|
21
|
-
result[rand_str(9)] = generate_hash(widths[1..widths.length])
|
22
|
-
end
|
23
|
-
return result
|
24
|
-
end
|
25
|
-
end
|
26
|
-
|
27
|
-
ITERATIONS = 500
|
28
|
-
|
29
|
-
puts "Using %s iterations" % [ITERATIONS]
|
30
|
-
puts ""
|
31
|
-
|
32
|
-
# Around ~512 keys in a hash
|
33
|
-
data = []
|
34
|
-
ITERATIONS.times do
|
35
|
-
data << generate_hash([8, 4, 4, 4])
|
36
|
-
end
|
37
|
-
|
38
|
-
puts "Using %s total keys in a hash" % [Scalyr::Common::Util.flatten(data[0]).count]
|
39
|
-
puts ""
|
40
|
-
|
41
|
-
result = []
|
42
|
-
ITERATIONS.times do |i|
|
43
|
-
result << Benchmark.measure { Scalyr::Common::Util.flatten(data[i]) }
|
44
|
-
end
|
45
|
-
|
46
|
-
sum = result.inject(nil) { |sum, t| sum.nil? ? sum = t : sum += t }
|
47
|
-
avg = sum / result.size
|
48
|
-
|
49
|
-
Benchmark.bm(7, "sum:", "avg:") do |b|
|
50
|
-
[sum, avg]
|
51
|
-
end
|
52
|
-
|
53
|
-
# Around ~960 keys in a hash
|
54
|
-
data = []
|
55
|
-
ITERATIONS.times do
|
56
|
-
data << generate_hash([12, 5, 4, 4])
|
57
|
-
end
|
58
|
-
|
59
|
-
puts ""
|
60
|
-
puts "Using %s total keys in a hash" % [Scalyr::Common::Util.flatten(data[0]).count]
|
61
|
-
puts ""
|
62
|
-
|
63
|
-
result = []
|
64
|
-
ITERATIONS.times do |i|
|
65
|
-
result << Benchmark.measure { Scalyr::Common::Util.flatten(data[i]) }
|
66
|
-
end
|
67
|
-
|
68
|
-
sum = result.inject(nil) { |sum, t| sum.nil? ? sum = t : sum += t }
|
69
|
-
avg = sum / result.size
|
70
|
-
|
71
|
-
Benchmark.bm(7, "sum:", "avg:") do |b|
|
72
|
-
[sum, avg]
|
73
|
-
end
|
74
|
-
|
75
|
-
# Around ~2700 keys in a hash
|
76
|
-
data = []
|
77
|
-
ITERATIONS.times do
|
78
|
-
data << generate_hash([14, 8, 6, 4])
|
79
|
-
end
|
80
|
-
|
81
|
-
puts ""
|
82
|
-
puts "Using %s total keys in a hash" % [Scalyr::Common::Util.flatten(data[0]).count]
|
83
|
-
puts ""
|
84
|
-
|
85
|
-
result = []
|
86
|
-
ITERATIONS.times do |i|
|
87
|
-
result << Benchmark.measure { Scalyr::Common::Util.flatten(data[i]) }
|
88
|
-
end
|
89
|
-
|
90
|
-
sum = result.inject(nil) { |sum, t| sum.nil? ? sum = t : sum += t }
|
91
|
-
avg = sum / result.size
|
92
|
-
|
93
|
-
Benchmark.bm(7, "sum:", "avg:") do |b|
|
94
|
-
[sum, avg]
|
95
|
-
end
|
@@ -1,2063 +0,0 @@
|
|
1
|
-
# Change Log
|
2
|
-
|
3
|
-
## [v2.18.0](https://github.com/faker-ruby/faker/tree/v2.18.0) (2021-05-15)
|
4
|
-
|
5
|
-
## Bug/Fixes
|
6
|
-
|
7
|
-
- [PR #2300](https://github.com/faker-ruby/faker/pull/2300) Fix space.company by adding missing quote [@koic](https://github.com/koic)
|
8
|
-
- [PR #2044](https://github.com/faker-ruby/faker/pull/2044) Workaround for cc-test-reporter with SimpleCov 0.18 [@koic](https://github.com/koic)
|
9
|
-
|
10
|
-
## Chores
|
11
|
-
|
12
|
-
- [PR #2316](https://github.com/faker-ruby/faker/pull/2316) Fix typo in test method [@yujideveloper](https://github.com/yujideveloper)
|
13
|
-
|
14
|
-
## Documentation
|
15
|
-
|
16
|
-
- [PR #2290](https://github.com/faker-ruby/faker/pull/2290) Fix typo [@d-holbach](https://github.com/d-holbach)
|
17
|
-
- [PR #2282](https://github.com/faker-ruby/faker/pull/2282) fixed small typo [@koic](https://github.com/koic)
|
18
|
-
|
19
|
-
## Feature Request
|
20
|
-
|
21
|
-
- [PR #2301](https://github.com/faker-ruby/faker/pull/2301) Add Faker::IDNumber.croatian_id method [@lovro-bikic](https://github.com/lovro-bikic)
|
22
|
-
- [PR #2299](https://github.com/faker-ruby/faker/pull/2299) Add birds [@brotherjack](https://github.com/brotherjack)
|
23
|
-
- [PR #2295](https://github.com/faker-ruby/faker/pull/2295) Add more methods to the Witcher class [@marcelobarreto](https://github.com/marcelobarreto)
|
24
|
-
- [PR #2289](https://github.com/faker-ruby/faker/pull/2289) Increase french entropy [@meuble](https://github.com/meuble)
|
25
|
-
- [PR #2287](https://github.com/faker-ruby/faker/pull/2287) Add Crypto.sha512 [@crondaemon](https://github.com/crondaemon)
|
26
|
-
- [PR #2190](https://github.com/faker-ruby/faker/pull/2190) Add Faker::Tea [@snood1205](https://github.com/snood1205)
|
27
|
-
- [PR #2175](https://github.com/faker-ruby/faker/pull/2175) Add two generators to Faker::Science [@RubyHuntsman](https://github.com/RubyHuntsman)
|
28
|
-
- [PR #1910](https://github.com/faker-ruby/faker/pull/1910) Add Faker::Music#mambo_no_5, a Generator for Random First Names that Appear in Lou Bega's Mambo No. 5 [@NickyEXE](https://github.com/NickyEXE)
|
29
|
-
|
30
|
-
## Update locales
|
31
|
-
|
32
|
-
- [PR #2321](https://github.com/faker-ruby/faker/pull/2321) Canadian area code 226 included in array of US area codes [@jgarber623](https://github.com/jgarber623)
|
33
|
-
- [PR #2317](https://github.com/faker-ruby/faker/pull/2317) Fix ci for es-AR [@yujideveloper](https://github.com/yujideveloper)
|
34
|
-
- [PR #2315](https://github.com/faker-ruby/faker/pull/2315) Split JA translation file into one file per class [@yujideveloper](https://github.com/yujideveloper)
|
35
|
-
- [PR #2313](https://github.com/faker-ruby/faker/pull/2313) Add Japanese translation for Faker::Subscription [@yujideveloper](https://github.com/yujideveloper)
|
36
|
-
- [PR #2311](https://github.com/faker-ruby/faker/pull/2311) add yoda quotes to russian locale [@aka-nez](https://github.com/aka-nez)
|
37
|
-
- [PR #2297](https://github.com/faker-ruby/faker/pull/2297) add Japanese actual zipcodes in locals/ja.yml [@POPPIN-FUMI](https://github.com/POPPIN-FUMI)
|
38
|
-
- [PR #2291](https://github.com/faker-ruby/faker/pull/2291) Add Commerce for Japanese [@ima1zumi](https://github.com/ima1zumi)
|
39
|
-
- [PR #2285](https://github.com/faker-ruby/faker/pull/2285) Fix update Brazilian phone country code [@ricardopacheco](https://github.com/ricardopacheco)
|
40
|
-
- [PR #2154](https://github.com/faker-ruby/faker/pull/2154) Cleanup books. Add Fantasy::Tolkien to README. [@mathisto](https://github.com/mathisto)
|
41
|
-
|
42
|
-
## Update local dependencies
|
43
|
-
|
44
|
-
- Update rubocop requirement from = 1.13.0 to = 1.14.0 (#2314)
|
45
|
-
- Upgrade to GitHub-native Dependabot (#2310)
|
46
|
-
- Update rubocop requirement from = 1.12.1 to = 1.13.0 (#2305)
|
47
|
-
- Update test-unit requirement from = 3.4.0 to = 3.4.1 (#2303)
|
48
|
-
- Update pry requirement from = 0.14.0 to = 0.14.1 (#2298)
|
49
|
-
- Update rubocop requirement from = 1.12.0 to = 1.12.1 (#2294)
|
50
|
-
- Update rubocop requirement from = 1.11.0 to = 1.12.0 (#2288)
|
51
|
-
|
52
|
-
## [v2.17.0](https://github.com/faker-ruby/faker/tree/v2.17.0) (2021-03-10)
|
53
|
-
|
54
|
-
## Chores
|
55
|
-
|
56
|
-
- [PR #2272](https://github.com/faker-ruby/faker/pull/2272) Bump RuboCop to 1.10.0 [@koic](https://github.com/koic)
|
57
|
-
- [PR #2270](https://github.com/faker-ruby/faker/pull/2270) Generate different values when generating a hash [@DaniTheLion](https://github.com/DaniTheLion)
|
58
|
-
- [PR #2236](https://github.com/faker-ruby/faker/pull/2236) Move Digest classes to OpenSSL [@dbussink](https://github.com/dbussink)
|
59
|
-
|
60
|
-
## Documentation
|
61
|
-
|
62
|
-
- [PR #2277](https://github.com/faker-ruby/faker/pull/2277) add Hip Hop To Path [@Josiassejod1](https://github.com/Josiassejod1)
|
63
|
-
- [PR #2276](https://github.com/faker-ruby/faker/pull/2276) Fix syntax highlighting and missing version [@ghiculescu](https://github.com/ghiculescu)
|
64
|
-
- [PR #2255](https://github.com/faker-ruby/faker/pull/2255) Correct capitalization of RuboCop in text [@jdufresne](https://github.com/jdufresne)
|
65
|
-
- [PR #2204](https://github.com/faker-ruby/faker/pull/2204) update documentation to include Float type [@BigBigDoudou](https://github.com/BigBigDoudou)
|
66
|
-
|
67
|
-
## Feature Request
|
68
|
-
|
69
|
-
- [PR #2256](https://github.com/faker-ruby/faker/pull/2256) Add Faker::Educator.primary_school [@jdufresne](https://github.com/jdufresne)
|
70
|
-
- [PR #2248](https://github.com/faker-ruby/faker/pull/2248) Add Bank.iban_country_code [@mastermatt](https://github.com/mastermatt)
|
71
|
-
- [PR #2166](https://github.com/faker-ruby/faker/pull/2166) add binary number faker [@gabrielbaldao](https://github.com/gabrielbaldao)
|
72
|
-
|
73
|
-
## Update locales
|
74
|
-
|
75
|
-
- [PR #2275](https://github.com/faker-ruby/faker/pull/2275) Add Japanese for Faker::Games::Orverwatch [@may-solty](https://github.com/may-solty)
|
76
|
-
- [PR #2268](https://github.com/faker-ruby/faker/pull/2268) Add Japanese for Faker::Games::SuperMario [@k-maekawa](https://github.com/k-maekawa)
|
77
|
-
- [PR #2258](https://github.com/faker-ruby/faker/pull/2258) Add es-AR locale [@fcolacilli](https://github.com/fcolacilli)
|
78
|
-
- [PR #2215](https://github.com/faker-ruby/faker/pull/2215) Unify model names to not contain manufacturer name [@berkos](https://github.com/berkos)
|
79
|
-
|
80
|
-
------------------------------------------------------------------------------
|
81
|
-
|
82
|
-
## [v2.16.0](https://github.com/faker-ruby/faker/tree/v2.16.0) (2021-02-09)
|
83
|
-
|
84
|
-
## Chores
|
85
|
-
|
86
|
-
- [PR #2262](https://github.com/faker-ruby/faker/pull/2262) Workaround build error for ruby-head [@koic](https://github.com/koic)
|
87
|
-
- [PR #2257](https://github.com/faker-ruby/faker/pull/2257) Trim trailing white space throughout the project [@koic](https://github.com/koic)
|
88
|
-
- [PR #2229](https://github.com/faker-ruby/faker/pull/2229) Use Random.new instead of `Random::DEFAULT` [@connorshea](https://github.com/connorshea)
|
89
|
-
- [PR #2226](https://github.com/faker-ruby/faker/pull/2226) Add Ruby 3.0 to CI matrix [@connorshea](https://github.com/connorshea)
|
90
|
-
|
91
|
-
## Documentation
|
92
|
-
|
93
|
-
- [PR #2247](https://github.com/faker-ruby/faker/pull/2247) 2243 yard doc [@sudeeptarlekar](https://github.com/sudeeptarlekar)
|
94
|
-
- [PR #2240](https://github.com/faker-ruby/faker/pull/2240) Updated `rock_band.md` to include example for using song generator [@jsca-kwok](https://github.com/jsca-kwok)
|
95
|
-
- [PR #2205](https://github.com/faker-ruby/faker/pull/2205) `Faker::Mountain` doc [@bipashant](https://github.com/bipashant)
|
96
|
-
|
97
|
-
## Feature Request
|
98
|
-
|
99
|
-
- [PR #2221](https://github.com/faker-ruby/faker/pull/2221) Added rock band song generator [@jsca-kwok](https://github.com/jsca-kwok)
|
100
|
-
- [PR #2208](https://github.com/faker-ruby/faker/pull/2208) Feat/add blockchain Tezos keys [@akettal](https://github.com/akettal) [@Pierre-Michard](https://github.com/Pierre-Michard)
|
101
|
-
- [PR #2197](https://github.com/faker-ruby/faker/pull/2197) Add `Faker::Games::Touhou` [@dysnomian](https://github.com/dysnomian)
|
102
|
-
|
103
|
-
## Update locales
|
104
|
-
|
105
|
-
- [PR #2238](https://github.com/faker-ruby/faker/pull/2238) added some data in `fr.yml` and `football.yml` [@MathGL92](https://github.com/MathGL92)
|
106
|
-
- [PR #2222](https://github.com/faker-ruby/faker/pull/2222) Add Japanese for `Faker::Book` [@zoshigayan](https://github.com/zoshigayan)
|
107
|
-
- [PR #2217](https://github.com/faker-ruby/faker/pull/2217) Add Sephiroth and Northern Cave to `Faker::Games::SuperSmashBros` [@boardfish](https://github.com/boardfish)
|
108
|
-
- [PR #2201](https://github.com/faker-ruby/faker/pull/2201) Typo in Lebowski Quote [@rgraff](https://github.com/rgraff)
|
109
|
-
- [PR #2197](https://github.com/faker-ruby/faker/pull/2197) Add `Faker::Games::Touhou` [@dysnomian](https://github.com/dysnomian)
|
110
|
-
|
111
|
-
------------------------------------------------------------------------------
|
112
|
-
|
113
|
-
## [v2.15.1](https://github.com/faker-ruby/faker/tree/v2.15.1) (2020-11-24)
|
114
|
-
|
115
|
-
- Rollback PR #2169 and bump 2.15.1 [#2203](https://github.com/faker-ruby/faker/pull/2203) @vbrazo
|
116
|
-
|
117
|
-
------------------------------------------------------------------------------
|
118
|
-
|
119
|
-
## [v2.15.0](https://github.com/faker-ruby/faker/tree/v2.15.0) (2020-11-24)
|
120
|
-
|
121
|
-
## Bug/Fixes
|
122
|
-
|
123
|
-
- RuboCop 1.0 fixes [#2182](https://github.com/faker-ruby/faker/pull/2182) @amatsuda
|
124
|
-
- Get rid of broken I18n locales configuration for the tests [#2168](https://github.com/faker-ruby/faker/pull/2168) @amatsuda
|
125
|
-
- Fixes a bug when generating a password with min_length eq 1 [#2138](https://github.com/faker-ruby/faker/pull/2138) @adrian-rivera @Zeragamba
|
126
|
-
- Improve Faker::Company.spanish_organisation_number [#2106](https://github.com/faker-ruby/faker/pull/2106)
|
127
|
-
|
128
|
-
## Chores
|
129
|
-
|
130
|
-
- Reformat demographic yaml [#2189](https://github.com/faker-ruby/faker/pull/2189) @fiteclub
|
131
|
-
- An attempt to load only necessary locales on the fly [#2169](https://github.com/faker-ruby/faker/pull/2169) @amatsuda
|
132
|
-
- Faker::Config can be a Module rather than a Class [#2167](https://github.com/faker-ruby/faker/pull/2167) @amatsuda
|
133
|
-
- Cleanup games [#2155](https://github.com/faker-ruby/faker/pull/2155) @mathisto
|
134
|
-
- Deprecate `celebrity` methods in favor of `actor` [#2133](https://github.com/faker-ruby/faker/pull/2133) @vraravam
|
135
|
-
|
136
|
-
## Documentation
|
137
|
-
|
138
|
-
- Fix class name in volleyball.md [#2198](https://github.com/faker-ruby/faker/pull/2198) @connorshea
|
139
|
-
- Fix typo in doc/games/heroes.md [#2145](https://github.com/faker-ruby/faker/pull/2145) @Crysicia
|
140
|
-
- fix typo [#2141](https://github.com/faker-ruby/faker/pull/2141) @Zeragamba
|
141
|
-
- Updated versions in doc for methods. [#2123](https://github.com/faker-ruby/faker/pull/2123) @sudeeptarlekar
|
142
|
-
|
143
|
-
## Feature Request
|
144
|
-
|
145
|
-
- Add `Faker::Mountain` [#2196](https://github.com/faker-ruby/faker/pull/2196) @bipashant
|
146
|
-
- Add Faker::Volleyball [#2178](https://github.com/faker-ruby/faker/pull/2178) @RubyHuntsman
|
147
|
-
- Add artifact generator to Faker::Game::Heroes [#2177](https://github.com/faker-ruby/faker/pull/2177) @droznyk
|
148
|
-
- Add generator to Faker::Games:ElderScrolls [#2171](https://github.com/faker-ruby/faker/pull/2171) @RubyHuntsman
|
149
|
-
- Augment opera [#2170](https://github.com/faker-ruby/faker/pull/2170) @Gaitorius
|
150
|
-
- Add generator to Faker::Games::ElderScrolls [#2164](https://github.com/faker-ruby/faker/pull/2164) @RubyHuntsman
|
151
|
-
- Add more generators to Faker::Minecraft [#2162](https://github.com/faker-ruby/faker/pull/2162) @RubyHuntsman
|
152
|
-
- I added more programming languages to the source [#2161](https://github.com/faker-ruby/faker/pull/2161) @JoaoHenriqueVale
|
153
|
-
- Add Faker:Camera [#2159](https://github.com/faker-ruby/faker/pull/2159) @RubyHuntsman
|
154
|
-
- Add how to train your dragon [#2158](https://github.com/faker-ruby/faker/pull/2158) @archbloom
|
155
|
-
- Add Faker::Fantasy::Tolkien [#2152](https://github.com/faker-ruby/faker/pull/2152) @mathisto
|
156
|
-
- Feature: Add north dakota driving licence [#2149](https://github.com/faker-ruby/faker/pull/2149) @martinjaimem
|
157
|
-
- Add Final Space to TvShows category [#2147](https://github.com/faker-ruby/faker/pull/2147)
|
158
|
-
- Add finance/stock generators [#2146](https://github.com/faker-ruby/faker/pull/2146) @johnpitchko
|
159
|
-
- Add Clash Of Clans to the Game category [#2143](https://github.com/faker-ruby/faker/pull/2143) @jamesmai0512
|
160
|
-
- Add Conan to the JapaneseMedia category [#2142](https://github.com/faker-ruby/faker/pull/2142) @jamesmai0512
|
161
|
-
- Add Naruto to the JapaneseMedia category [#2139](https://github.com/faker-ruby/faker/pull/2139) @jamesmai0512
|
162
|
-
- Add Doraemon to the JapaneseMedia category [#2137](https://github.com/faker-ruby/faker/pull/2137) @jamesmai0512
|
163
|
-
- Add space force and coast guard to military [#2136](https://github.com/faker-ruby/faker/pull/2136) @mathisto
|
164
|
-
- Add Super Mario [#2135](https://github.com/faker-ruby/faker/pull/2135) @fblupi
|
165
|
-
- Add The Room (2003) to Movies [#2134](https://github.com/faker-ruby/faker/pull/2134) @fiteclub
|
166
|
-
- Faker adjectives [#2130](https://github.com/faker-ruby/faker/pull/2130) @loicboset
|
167
|
-
- Add Studio Ghibli to the JapaneseMedia category [#2124](https://github.com/faker-ruby/faker/pull/2124) @Kadaaran
|
168
|
-
- Created New Method Faker::Quote.fortune_cookie [#2112](https://github.com/faker-ruby/faker/pull/2112) @catonmat
|
169
|
-
- Allow disabling the usage of open compounds in sentences [#2109](https://github.com/faker-ruby/faker/pull/2109) @tjozwik
|
170
|
-
- Add faker for hiphop artist [#1923](https://github.com/faker-ruby/faker/pull/1923) @Josiassejod1
|
171
|
-
- Add races and class names to WorldOfWarcraft [#1787](https://github.com/faker-ruby/faker/pull/1787) @mathisto
|
172
|
-
- Add planets and races to DragonBall [#1786](https://github.com/faker-ruby/faker/pull/1786) @mathisto
|
173
|
-
- Add planets, cities, and quotes to Dune [#1784](https://github.com/faker-ruby/faker/pull/1784) @mathisto
|
174
|
-
|
175
|
-
## Update locales
|
176
|
-
|
177
|
-
- add japanese gender first name [#2191](https://github.com/faker-ruby/faker/pull/2191) @issei126
|
178
|
-
- Add full_address to Ukrainian locale [#2176](https://github.com/faker-ruby/faker/pull/2176) @Ptico
|
179
|
-
- Fixed some spelling issues in company.yml [#2173](https://github.com/faker-ruby/faker/pull/2173) @coreymaher
|
180
|
-
- Update Faker::Games::SuperSmashBros [#2164](https://github.com/faker-ruby/faker/pull/2164) @boardfish
|
181
|
-
- Add more quotes to Faker::Games::Witcher [#2163](https://github.com/faker-ruby/faker/pull/2163) @RubyHuntsman
|
182
|
-
- Add Jack Handey's Deep Thoughts to quotes [#2150](https://github.com/faker-ruby/faker/pull/2150) @fiteclub
|
183
|
-
- add brazil license plate from mercosul rules [#2144](https://github.com/faker-ruby/faker/pull/2144) @gabrielbaldao
|
184
|
-
- Add additional quotes to Studio Ghibli [#2132](https://github.com/faker-ruby/faker/pull/2132) @lambda2
|
185
|
-
- Change 'Nyota Uhuru' to 'Nyota Uhura' [#2121](https://github.com/faker-ruby/faker/pull/2121) @TrevorA-TrevorA
|
186
|
-
- Add spanish license plates [#2103](https://github.com/faker-ruby/faker/pull/2103)
|
187
|
-
|
188
|
-
## Update local dependencies
|
189
|
-
|
190
|
-
- Update RuboCop requirement from = 1.0.0 to = 1.1.0 [#2185](https://github.com/faker-ruby/faker/pull/2185)
|
191
|
-
- Update RuboCop requirement from = 0.93.1 to = 1.0.0 [#2172](https://github.com/faker-ruby/faker/pull/2172)
|
192
|
-
- Update RuboCop requirement from = 0.93.0 to = 0.93.1 [#2156](https://github.com/faker-ruby/faker/pull/2156)
|
193
|
-
- Update RuboCop requirement from = 0.92.0 to = 0.93.0 [#2151](https://github.com/faker-ruby/faker/pull/2151)
|
194
|
-
- Update RuboCop requirement from = 0.91.1 to = 0.92.0 [#2129](https://github.com/faker-ruby/faker/pull/2129)
|
195
|
-
- Update RuboCop requirement from = 0.91.0 to = 0.91.1 [#2126](https://github.com/faker-ruby/faker/pull/2126)
|
196
|
-
- Update RuboCop requirement from = 0.90.0 to = 0.91.0 [#2122](https://github.com/faker-ruby/faker/pull/2122)
|
197
|
-
- Update test-unit requirement from = 3.3.6 to = 3.3.7 [#2195](https://github.com/faker-ruby/faker/pull/2195)
|
198
|
-
- Update timecop requirement from = 0.9.1 to = 0.9.2 [#2160](https://github.com/faker-ruby/faker/pull/2160)
|
199
|
-
|
200
|
-
------------------------------------------------------------------------------
|
201
|
-
|
202
|
-
## [v2.14.0](https://github.com/faker-ruby/faker/tree/v2.14.0) (2020-09-15)
|
203
|
-
|
204
|
-
## Bug/Fixes
|
205
|
-
|
206
|
-
- [PR #2119](https://github.com/faker-ruby/faker/pull/2119) Fixed failing spec for phone number
|
207
|
-
|
208
|
-
## Chores
|
209
|
-
|
210
|
-
- [PR #2088](https://github.com/faker-ruby/faker/pull/2088) Remove the space in the word "turtle" in the Creature::Animals faker
|
211
|
-
- [PR #2081](https://github.com/faker-ruby/faker/pull/2081) Remove redundant condition branch for Ruby 2.4
|
212
|
-
- [PR #2077](https://github.com/faker-ruby/faker/pull/2077) Rename tests according to the `test*.rb` pattern so that they run
|
213
|
-
|
214
|
-
## Documentation
|
215
|
-
|
216
|
-
- [PR #2095](https://github.com/faker-ruby/faker/pull/2095) Fix a typo for `Games::DnD.species`
|
217
|
-
- [PR #2094](https://github.com/faker-ruby/faker/pull/2094) Correct method name from race to species in DnD doc
|
218
|
-
- [PR #2079](https://github.com/faker-ruby/faker/pull/2079) Add `Music::PearlJam` to Readme
|
219
|
-
- [PR #2058](https://github.com/faker-ruby/faker/pull/2058) Add YARD doc for `Faker::Code`
|
220
|
-
|
221
|
-
## Feature Request
|
222
|
-
|
223
|
-
- [PR #2117](https://github.com/faker-ruby/faker/pull/2117) Add Truffleruby head to CI
|
224
|
-
- [PR #2104](https://github.com/faker-ruby/faker/pull/2104) 2097 Added barcodes
|
225
|
-
- [PR #2090](https://github.com/faker-ruby/faker/pull/2090) 1693 USA driving license
|
226
|
-
- [PR #2098](https://github.com/faker-ruby/faker/pull/2098) Update DnD generator
|
227
|
-
- [PR #2096](https://github.com/faker-ruby/faker/pull/2096) 2091 faker drones
|
228
|
-
- [PR #2092](https://github.com/faker-ruby/faker/pull/2092) Add a street fighter generator
|
229
|
-
- [PR #2082](https://github.com/faker-ruby/faker/pull/2082) Enable `Lint/UnifiedInteger` cop
|
230
|
-
|
231
|
-
## Update locales
|
232
|
-
|
233
|
-
- [PR #2100](https://github.com/faker-ruby/faker/pull/2100) Remove Gaylord
|
234
|
-
- [PR #2087](https://github.com/faker-ruby/faker/pull/2087) Fix/remove country code from phone numbers
|
235
|
-
- [PR #2086](https://github.com/faker-ruby/faker/pull/2086) removing country code from phone numbers to `fr-CH`
|
236
|
-
- [PR #2084](https://github.com/faker-ruby/faker/pull/2084) removed extra + sign from country codes
|
237
|
-
- [PR #2078](https://github.com/faker-ruby/faker/pull/2078) Removed 07624 from UK mobile numbers
|
238
|
-
- [PR #2073](https://github.com/faker-ruby/faker/pull/2073) Add missing azimuth field for fr locale
|
239
|
-
- [PR #2072](https://github.com/faker-ruby/faker/pull/2072) Remove time formats from file
|
240
|
-
|
241
|
-
Update local dependencies
|
242
|
-
|
243
|
-
- Update RuboCop requirement from = 0.87.1 to = 0.88.0 (#2080)
|
244
|
-
- Update RuboCop requirement from = 0.87.0 to = 0.87.1 (#2075)
|
245
|
-
- Update RuboCop requirement from = 0.86.0 to = 0.87.0 (#2074)
|
246
|
-
- Bumps i18n from 1.8.4 to 1.8.5 (#2089)
|
247
|
-
- Bumps i18n from 1.8.3 to 1.8.4 (#2083)
|
248
|
-
|
249
|
-
------------------------------------------------------------------------------
|
250
|
-
|
251
|
-
## [v2.13.0](https://github.com/faker-ruby/faker/tree/v2.13.0) (2020-06-24)
|
252
|
-
|
253
|
-
This version:
|
254
|
-
- adds YARD docs for several interface methods
|
255
|
-
- fixes bugs
|
256
|
-
- adds improvements to the code base
|
257
|
-
- updates dependencies
|
258
|
-
|
259
|
-
## Bug/Fixes
|
260
|
-
|
261
|
-
- [PR #2050](https://github.com/faker-ruby/faker/pull/2050) Fix random error in music tests [@martinjaimem](https://github.com/martinjaimem)
|
262
|
-
- [PR #2037](https://github.com/faker-ruby/faker/pull/2037) Bug Fix: BIC Collission (Issue 1907) [@Newman101](https://github.com/Newman101)
|
263
|
-
- [PR #2026](https://github.com/faker-ruby/faker/pull/2026) Sanitize email when name has special characters [@Zeragamba](https://github.com/Zeragamba)
|
264
|
-
- [PR #1785](https://github.com/faker-ruby/faker/pull/1785) Adds a fix for when :en is not one of the available locales [@jaimerodas](https://github.com/jaimerodas)
|
265
|
-
|
266
|
-
## Chores
|
267
|
-
|
268
|
-
- [PR #2041](https://github.com/faker-ruby/faker/pull/2041) Reduce Lines in char.rb [@Newman101](https://github.com/Newman101)
|
269
|
-
- [PR #2039](https://github.com/faker-ruby/faker/pull/2039) restore Kylo Ren quotes [@Zeragamba](https://github.com/Zeragamba)
|
270
|
-
- [PR #2038](https://github.com/faker-ruby/faker/pull/2038) Drop EOL Rubies from CI tests [@Zeragamba](https://github.com/Zeragamba)
|
271
|
-
- [PR #2033](https://github.com/faker-ruby/faker/pull/2033) Use `Faker::Base::ULetters` constant instead [@vbrazo](https://github.com/vbrazo)
|
272
|
-
- [PR #2028](https://github.com/faker-ruby/faker/pull/2028) Reorganize some tests [@connorshea](https://github.com/connorshea)
|
273
|
-
- [PR #1853](https://github.com/faker-ruby/faker/pull/1853) Exclude string.rb from consideration by YARD. [@connorshea](https://github.com/connorshea)
|
274
|
-
|
275
|
-
## Deprecation
|
276
|
-
|
277
|
-
- [PR #2031](https://github.com/faker-ruby/faker/pull/2031) Deprecate `HeroesOfTheStorm.class` [@koic](https://github.com/koic)
|
278
|
-
|
279
|
-
## Documentation
|
280
|
-
|
281
|
-
- [PR #2065](https://github.com/faker-ruby/faker/pull/2065) Add missing documentation to `Faker::Computer` [@danielTiringer](https://github.com/danielTiringer)
|
282
|
-
- [PR #2064](https://github.com/faker-ruby/faker/pull/2064) Add minecraft generators [@Ri1a](https://github.com/Ri1a)
|
283
|
-
- [PR #2061](https://github.com/faker-ruby/faker/pull/2061) Update docs for `Faker::Date` with separate examples [@danielTiringer](https://github.com/danielTiringer)
|
284
|
-
- [PR #2057](https://github.com/faker-ruby/faker/pull/2057) Add missing quotes to `Faker::Internet` [@Zeragamba](https://github.com/Zeragamba)
|
285
|
-
- [PR #2055](https://github.com/faker-ruby/faker/pull/2055) Add YARD docs to `Faker::NHS` [@danielTiringer](https://github.com/danielTiringer)
|
286
|
-
- [PR #2054](https://github.com/faker-ruby/faker/pull/2054) Add YARD docs to `Faker::Chile_Rut` [@danielTiringer](https://github.com/danielTiringer)
|
287
|
-
- [PR #2053](https://github.com/faker-ruby/faker/pull/2053) Add YARD docs to `Faker::Lorem_Flickr` [@danielTiringer](https://github.com/danielTiringer)
|
288
|
-
- [PR #2052](https://github.com/faker-ruby/faker/pull/2052) Add YARD docs to `Faker::Lorem_Pixel` [@danielTiringer](https://github.com/danielTiringer)
|
289
|
-
- [PR #2051](https://github.com/faker-ruby/faker/pull/2051) Add YARD docs to `Faker::Omniauth` [@danielTiringer](https://github.com/danielTiringer)
|
290
|
-
- [PR #2036](https://github.com/faker-ruby/faker/pull/2036) Add YARD docs to `Faker::Markdown` [@danielTiringer](https://github.com/danielTiringer)
|
291
|
-
- [PR #2035](https://github.com/faker-ruby/faker/pull/2035) Add YARD docs to `Faker::ID_Number` [@danielTiringer](https://github.com/danielTiringer)
|
292
|
-
- [PR #2030](https://github.com/faker-ruby/faker/pull/2030) Add general documentation for `Faker::Blood` [@jbergenson](https://github.com/jbergenson)
|
293
|
-
- [PR #2029](https://github.com/faker-ruby/faker/pull/2029) Allow passing a string to specific `Faker::Date` methods. [@connorshea](https://github.com/connorshea)
|
294
|
-
|
295
|
-
## Feature Request
|
296
|
-
|
297
|
-
- [PR #2040](https://github.com/faker-ruby/faker/pull/2040) Split lint and test Github actions [@Zeragamba](https://github.com/Zeragamba)
|
298
|
-
- [PR #2032](https://github.com/faker-ruby/faker/pull/2032) Add `gender-neutral` first names to `Faker::Name` [@cmunozgar](https://github.com/cmunozgar)
|
299
|
-
- [PR #1965](https://github.com/faker-ruby/faker/pull/1965) Add new `full_address_as_hash` method which return the required address [@AmrAdelKhalil](https://github.com/AmrAdelKhalil)
|
300
|
-
- [PR #1952](https://github.com/faker-ruby/faker/pull/1952) Add `Faker::Movie.title` [@gizipp](https://github.com/gizipp)
|
301
|
-
- [PR #1932](https://github.com/faker-ruby/faker/pull/1932) Added AHTF Wisdom [@brotherjack](https://github.com/brotherjack)
|
302
|
-
- [PR #1912](https://github.com/faker-ruby/faker/pull/1912) Add `Faker::Music::Rush` [@willianveiga](https://github.com/willianveiga)
|
303
|
-
- [PR #1865](https://github.com/faker-ruby/faker/pull/1865) Add Big Bang Theory [@pathaknv](https://github.com/pathaknv)
|
304
|
-
- [PR #1858](https://github.com/faker-ruby/faker/pull/1858) Add `Faker::TvShows::Futurama` [@JoeNyland](https://github.com/JoeNyland)
|
305
|
-
- [PR #1821](https://github.com/faker-ruby/faker/pull/1821) Add HTTP status codes generator [@willianveiga](https://github.com/willianveiga)
|
306
|
-
- [PR #1804](https://github.com/faker-ruby/faker/pull/1804) Add `Faker::TvShows::Simpsons.episode_title` [@martinbjeldbak](https://github.com/martinbjeldbak)
|
307
|
-
- [PR #1670](https://github.com/faker-ruby/faker/pull/1670) Adds `Faker::Music::Prince` [@jessecalton](https://github.com/jessecalton)
|
308
|
-
|
309
|
-
## Update locales
|
310
|
-
|
311
|
-
- [PR #1792](https://github.com/faker-ruby/faker/pull/1792) Add more prefixes and suffixes to Name [@mathisto](https://github.com/mathisto)
|
312
|
-
|
313
|
-
## Update local dependencies
|
314
|
-
|
315
|
-
- Update RuboCop requirement from = 0.81.0 to = 0.85.1
|
316
|
-
- Update RuboCop requirement from = 0.85.1 to = 0.86.0 (#2066)
|
317
|
-
- Update test-unit requirement from = 3.3.5 to = 3.3.6 (#2046)
|
318
|
-
- Bump i18n from 1.8.2 to 1.8.3 (#2034)
|
319
|
-
|
320
|
-
------------------------------------------------------------------------------
|
321
|
-
|
322
|
-
## [v2.12.0](https://github.com/faker-ruby/faker/tree/v2.12.0) (2020-05-31)
|
323
|
-
|
324
|
-
This version:
|
325
|
-
- adds several YARD docs
|
326
|
-
- fixes some locale issues
|
327
|
-
- fixes a few bugs in Faker generators
|
328
|
-
- improves code quality
|
329
|
-
- adds a few generators for Movies, Music and TV Shows
|
330
|
-
- updates local dependencies
|
331
|
-
|
332
|
-
## Bug/Fixes
|
333
|
-
|
334
|
-
- [PR #2019](https://github.com/faker-ruby/faker/pull/2019) Update 'prepare' regexp to allow hyphen [@jbergenson](https://github.com/jbergenson)
|
335
|
-
- [PR #2012](https://github.com/faker-ruby/faker/pull/2012) Add else condition to prevent false positive [@jbergenson](https://github.com/jbergenson)
|
336
|
-
- [PR #1985](https://github.com/faker-ruby/faker/pull/1985) Fix an error for `Faker::Computer.os` [@koic](https://github.com/koic)
|
337
|
-
- [PR #1971](https://github.com/faker-ruby/faker/pull/1971) Fixing the CI failure by fixing the infinite loop in Commerce [@amatsuda](https://github.com/amatsuda)
|
338
|
-
|
339
|
-
## Chores
|
340
|
-
|
341
|
-
- [PR #1988](https://github.com/faker-ruby/faker/pull/1988) Removing meaningless begin and end [@amatsuda](https://github.com/amatsuda)
|
342
|
-
- [PR #1979](https://github.com/faker-ruby/faker/pull/1979) Reuse the `lvar` instead of calling `File.dirname(__FILE__)` again and again [@amatsuda](https://github.com/amatsuda)
|
343
|
-
|
344
|
-
## Documentation
|
345
|
-
|
346
|
-
- [PR #2022](https://github.com/faker-ruby/faker/pull/2022) Add YARD docs to `Faker::Invoice` [@danielTiringer](https://github.com/danielTiringer)
|
347
|
-
- [PR #2021](https://github.com/faker-ruby/faker/pull/2021) Add YARD docs to `Faker::Hipster` [@danielTiringer](https://github.com/danielTiringer)
|
348
|
-
- [PR #2020](https://github.com/faker-ruby/faker/pull/2020) Add YARD docs to `Faker::Measurement` [@danielTiringer](https://github.com/danielTiringer)
|
349
|
-
- [PR #2017](https://github.com/faker-ruby/faker/pull/2017) Fix docs for `Faker::Games::Control.altered_world_event` [@Zeragamba](https://github.com/Zeragamba)
|
350
|
-
- [PR #2016](https://github.com/faker-ruby/faker/pull/2016) Fix yard documentation issues [@danielTiringer](https://github.com/danielTiringer)
|
351
|
-
- [PR #2015](https://github.com/faker-ruby/faker/pull/2015) Add YARD docs to `Faker::Quotes` [@danielTiringer](https://github.com/danielTiringer)
|
352
|
-
- [PR #2011](https://github.com/faker-ruby/faker/pull/2011) Update `star_wars.yml` [@garrettmichaelgeorge](https://github.com/garrettmichaelgeorge)
|
353
|
-
- [PR #2010](https://github.com/faker-ruby/faker/pull/2010) Add missing links in README.md [@Naokimi](https://github.com/Naokimi)
|
354
|
-
- [PR #2009](https://github.com/faker-ruby/faker/pull/2009) Add YARD docs to `Faker::Placeholdit` [@danielTiringer](https://github.com/danielTiringer)
|
355
|
-
- [PR #2008](https://github.com/faker-ruby/faker/pull/2008) Add YARD docs to `Faker::Verb` [@danielTiringer](https://github.com/danielTiringer)
|
356
|
-
- [PR #2007](https://github.com/faker-ruby/faker/pull/2007) Add YARD docs to `Faker::Phone_Number` [@danielTiringer](https://github.com/danielTiringer)
|
357
|
-
- [PR #2004](https://github.com/faker-ruby/faker/pull/2004) Add YARD docs to `Faker::String` [@danielTiringer](https://github.com/danielTiringer)
|
358
|
-
- [PR #2001](https://github.com/faker-ruby/faker/pull/2001) Add YARD docs to `Faker::South_Africa` [@danielTiringer](https://github.com/danielTiringer)
|
359
|
-
- [PR #2000](https://github.com/faker-ruby/faker/pull/2000) Add YARD docs to `Faker::JSON` [@danielTiringer](https://github.com/danielTiringer)
|
360
|
-
- [PR #1999](https://github.com/faker-ruby/faker/pull/1999) Add YARD docs to `Faker::Types` [@danielTiringer](https://github.com/danielTiringer)
|
361
|
-
- [PR #1998](https://github.com/faker-ruby/faker/pull/1998) Add YARD docs to `Faker::Finance` [@danielTiringer](https://github.com/danielTiringer)
|
362
|
-
- [PR #1997](https://github.com/faker-ruby/faker/pull/1997) Add YARD docs to `Faker::Driving_Licence` [@danielTiringer](https://github.com/danielTiringer)
|
363
|
-
- [PR #1996](https://github.com/faker-ruby/faker/pull/1996) Add YARD docs to `Crypto Coin` [@danielTiringer](https://github.com/danielTiringer)
|
364
|
-
- [PR #1995](https://github.com/faker-ruby/faker/pull/1995) Add YARD docs to `Faker::Commerce` [@danielTiringer](https://github.com/danielTiringer)
|
365
|
-
- [PR #1993](https://github.com/faker-ruby/faker/pull/1993) Add YARD docs to `Faker::Vehicle` [@danielTiringer](https://github.com/danielTiringer)
|
366
|
-
- [PR #1990](https://github.com/faker-ruby/faker/pull/1990) Add YARD docs to `Faker::File` [@danielTiringer](https://github.com/danielTiringer)
|
367
|
-
- [PR #1989](https://github.com/faker-ruby/faker/pull/1989) Add YARD docs to `Faker::Bank` [@danielTiringer](https://github.com/danielTiringer)
|
368
|
-
- [PR #1984](https://github.com/faker-ruby/faker/pull/1984) Minor documentation fix for `Faker::University` [@Zeragamba](https://github.com/Zeragamba)
|
369
|
-
- [PR #1983](https://github.com/faker-ruby/faker/pull/1983) Add YARD docs to `Faker::Twitter` [@danielTiringer](https://github.com/danielTiringer)
|
370
|
-
- [PR #1982](https://github.com/faker-ruby/faker/pull/1982) Add YARD docs to `Faker::Cosmere` [@danielTiringer](https://github.com/danielTiringer)
|
371
|
-
- [PR #1981](https://github.com/faker-ruby/faker/pull/1981) Add YARD docs to `Faker::Stripe` [@danielTiringer](https://github.com/danielTiringer)
|
372
|
-
- [PR #1980](https://github.com/faker-ruby/faker/pull/1980) Add YARD docs to `Faker::Construction` [@danielTiringer](https://github.com/danielTiringer)
|
373
|
-
- [PR #1976](https://github.com/faker-ruby/faker/pull/1976) Add YARD docs to `Faker::Name` [@danielTiringer](https://github.com/danielTiringer)
|
374
|
-
- [PR #1975](https://github.com/faker-ruby/faker/pull/1975) Add YARD docs to `Faker::Compass` [@danielTiringer](https://github.com/danielTiringer)
|
375
|
-
- [PR #1959](https://github.com/faker-ruby/faker/pull/1959) Add YARD docs to `Faker::University` [@danielTiringer](https://github.com/danielTiringer)
|
376
|
-
- [PR #1956](https://github.com/faker-ruby/faker/pull/1956) Add YARD docs to `Faker::SlackEmoji` [@rutger-t](https://github.com/rutger-t)
|
377
|
-
- [PR #1943](https://github.com/faker-ruby/faker/pull/1943) Update documentation for unique.exclude [@mtancoigne](https://github.com/mtancoigne)
|
378
|
-
- [PR #1925](https://github.com/faker-ruby/faker/pull/1925) AdD `Faker::Game::WarhammerFantasy` [@sotek222](https://github.com/sotek222)
|
379
|
-
|
380
|
-
## Feature Request
|
381
|
-
|
382
|
-
- [PR #2025](https://github.com/faker-ruby/faker/pull/2025) Add `Faker::TvShows::Suits` [@ash-elangovan](https://github.com/ash-elangovan)
|
383
|
-
- [PR #2024](https://github.com/faker-ruby/faker/pull/2024) Added Phish Albums and Musicians [@zfine416](https://github.com/zfine416)
|
384
|
-
- [PR #2013](https://github.com/faker-ruby/faker/pull/2013) Add `Faker::Games::Control` [@Zeragamba](https://github.com/Zeragamba)
|
385
|
-
- [PR #1994](https://github.com/faker-ruby/faker/pull/1994) Enable Ruby testing github workflow [@Zeragamba](https://github.com/Zeragamba)
|
386
|
-
- [PR #1966](https://github.com/faker-ruby/faker/pull/1966) Add `Faker::Games:DnD` [@Naokimi](https://github.com/Naokimi)
|
387
|
-
- [PR #1962](https://github.com/faker-ruby/faker/pull/1962) Adding Pearl Jam to the Music module [@briri](https://github.com/briri)
|
388
|
-
- [PR #1960](https://github.com/faker-ruby/faker/pull/1960) Added `Faker::Blood` [@suraj32](https://github.com/suraj32)
|
389
|
-
- [PR #1931](https://github.com/faker-ruby/faker/pull/1931) Add `Faker::Movies::Departed` Class [@jaebradley](https://github.com/jaebradley)
|
390
|
-
- [PR #1696](https://github.com/faker-ruby/faker/pull/1696) Add Bibles class with King James subclass [@jbergenson](https://github.com/jbergenson)
|
391
|
-
- [PR #1485](https://github.com/faker-ruby/faker/pull/1485) Plays and musicals [@armandofox](https://github.com/armandofox)
|
392
|
-
|
393
|
-
## Update locales
|
394
|
-
|
395
|
-
- [PR #2014](https://github.com/faker-ruby/faker/pull/2014) Make locale self-contained [@psibi](https://github.com/psibi)
|
396
|
-
- [PR #1986](https://github.com/faker-ruby/faker/pull/1986) Added quotations to Shirahoshi [@iavivai](https://github.com/iavivai)
|
397
|
-
- [PR #1973](https://github.com/faker-ruby/faker/pull/1973) Fix mis-quotations [@kayhide](https://github.com/kayhide)
|
398
|
-
- [PR #1967](https://github.com/faker-ruby/faker/pull/1967) ko locale updates [@jae57](https://github.com/jae57)
|
399
|
-
- [PR #1964](https://github.com/faker-ruby/faker/pull/1964) en-AU locale updates [@mattman](https://github.com/mattman)
|
400
|
-
- [PR #1948](https://github.com/faker-ruby/faker/pull/1948) Add `Faker::Computer` [@cmcramer](https://github.com/cmcramer)
|
401
|
-
|
402
|
-
## Update local dependencies
|
403
|
-
|
404
|
-
- Update minitest requirement from = 5.14.0 to = 5.14.1 (#1987)
|
405
|
-
- Update RuboCop requirement from = 0.80.1 to = 0.81.0 (#1955)
|
406
|
-
- Update pry requirement from = 0.13.0 to = 0.13.1 (#1963)
|
407
|
-
- Update yard requirement from = 0.9.24 to = 0.9.25 (#1970)
|
408
|
-
|
409
|
-
------------------------------------------------------------------------------
|
410
|
-
|
411
|
-
## [v2.11.0](https://github.com/faker-ruby/faker/tree/v2.11.0) (2020-03-24)
|
412
|
-
|
413
|
-
## Bug/Fixes
|
414
|
-
|
415
|
-
- [PR #1938](https://github.com/faker-ruby/faker/pull/1938) Fix omniauth consistency [@DouglasLutz](https://github.com/DouglasLutz)
|
416
|
-
|
417
|
-
## Documentation
|
418
|
-
|
419
|
-
- [PR #1949](https://github.com/faker-ruby/faker/pull/1949) Add YARD doc for Faker::Cannabis [@mashuDuek](https://github.com/mashuDuek)
|
420
|
-
- [PR #1944](https://github.com/faker-ruby/faker/pull/1944) Add YARD docs for Faker::FunnyName [@curriecode](https://github.com/curriecode)
|
421
|
-
- [PR #1935](https://github.com/faker-ruby/faker/pull/1935) Add YARD docs for the unique method [@connorshea](https://github.com/connorshea)
|
422
|
-
|
423
|
-
## Feature Request
|
424
|
-
|
425
|
-
- [PR #1946](https://github.com/faker-ruby/faker/pull/1946) Add Faker::Rajnikanth [@wolwire](https://github.com/wolwire)
|
426
|
-
- [PR #1940](https://github.com/faker-ruby/faker/pull/1940) Add Faker::Quotes::Chiquito [@jantequera](https://github.com/jantequera)
|
427
|
-
- [PR #1883](https://github.com/faker-ruby/faker/pull/1883) add Internet#base64 [@cyrilchampier](https://github.com/cyrilchampier)
|
428
|
-
|
429
|
-
## Update locales
|
430
|
-
|
431
|
-
- [PR #1945](https://github.com/faker-ruby/faker/pull/1945) Remove female first name 'Miss' [@ags](https://github.com/ags)
|
432
|
-
- [PR #1929](https://github.com/faker-ruby/faker/pull/1929) Fixed mobile prefixes for en-GB locale [@SamHart91](https://github.com/SamHart91)
|
433
|
-
|
434
|
-
## Update local dependencies
|
435
|
-
|
436
|
-
- Update pry requirement from = 0.12.2 to = 0.13.0 (#1951)
|
437
|
-
- Update RuboCop requirement from = 0.80.0 to = 0.80.1 (#1941)
|
438
|
-
- Update RuboCop requirement from = 0.79.0 to = 0.80.0 (#1937)
|
439
|
-
|
440
|
-
------------------------------------------------------------------------------
|
441
|
-
|
442
|
-
## [v2.10.2](https://github.com/faker-ruby/faker/tree/v2.10.2) (2020-02-15)
|
443
|
-
|
444
|
-
This version:
|
445
|
-
- adds a few YARD docs
|
446
|
-
- fixes locales
|
447
|
-
- updates local dependencies
|
448
|
-
|
449
|
-
## Chores
|
450
|
-
|
451
|
-
- [PR #1924](https://github.com/faker-ruby/faker/pull/1924) Use ruby's `File::Separator` rather than '/' as a default for direct [@swiknaba](https://github.com/swiknaba)
|
452
|
-
|
453
|
-
## Documentation
|
454
|
-
|
455
|
-
- [PR #1913](https://github.com/faker-ruby/faker/pull/1913) Add YARD docs for Faker::DcComics [@ash-elangovan](https://github.com/ash-elangovan)
|
456
|
-
|
457
|
-
## Update locales
|
458
|
-
|
459
|
-
- [PR #1934](https://github.com/faker-ruby/faker/pull/1934) Add street_address for en-nz locale [@psibi](https://github.com/psibi)
|
460
|
-
- [PR #1933](https://github.com/faker-ruby/faker/pull/1933) Make id locale consistent. [@psibi](https://github.com/psibi)
|
461
|
-
- [PR #1930](https://github.com/faker-ruby/faker/pull/1930) Remove spaces before apostrophes [@jrmhaig](https://github.com/jrmhaig)
|
462
|
-
- [PR #1927](https://github.com/faker-ruby/faker/pull/1927) zh-TW locale fix: Avoid double de-reference for name_with_middle [@psibi](https://github.com/psibi)
|
463
|
-
- [PR #1922](https://github.com/faker-ruby/faker/pull/1922) zh-CN locale fix: Directly refer to the expected values [@psibi](https://github.com/psibi)
|
464
|
-
- [PR #1921](https://github.com/faker-ruby/faker/pull/1921) uk locale fix: Make empty fields consistent [@psibi](https://github.com/psibi)
|
465
|
-
- [PR #1920](https://github.com/faker-ruby/faker/pull/1920) pt locale fix: Make city fields consistent with other [@psibi](https://github.com/psibi)
|
466
|
-
- [PR #1918](https://github.com/faker-ruby/faker/pull/1918) Make Japanese Lorem sentences look more natural [@rastamhadi](https://github.com/rastamhadi)
|
467
|
-
- [PR #1915](https://github.com/faker-ruby/faker/pull/1915) Add yard docs for Faker::Company [@kos31de](https://github.com/kos31de)
|
468
|
-
- [PR #1914](https://github.com/faker-ruby/faker/pull/1914) Data source fix for ha locale [@psibi](https://github.com/psibi)
|
469
|
-
- [PR #1911](https://github.com/faker-ruby/faker/pull/1911) Removed duplicate value [@ash-elangovan](https://github.com/ash-elangovan)
|
470
|
-
- [PR #1908](https://github.com/faker-ruby/faker/pull/1908) Add more colors [@tomcol](https://github.com/tomcol)
|
471
|
-
- [PR #1903](https://github.com/faker-ruby/faker/pull/1903) fr locale: pokemon's root key should be games [@connorshea](https://github.com/connorshea)
|
472
|
-
- [PR #1902](https://github.com/faker-ruby/faker/pull/1902) Remove empty string in phone_number formats [@psibi](https://github.com/psibi)
|
473
|
-
- [PR #1901](https://github.com/faker-ruby/faker/pull/1901) fr-CA locale fix: pokemon's root key should be games [@psibi](https://github.com/psibi)
|
474
|
-
- [PR #1900](https://github.com/faker-ruby/faker/pull/1900) Use postcode for en-ZA [@psibi](https://github.com/psibi)
|
475
|
-
- [PR #1899](https://github.com/faker-ruby/faker/pull/1899) Locale root name should be en-NEP [@psibi](https://github.com/psibi)
|
476
|
-
- [PR #1812](https://github.com/faker-ruby/faker/pull/1812) Add vat number rule for es-MX [@arandilopez](https://github.com/arandilopez)
|
477
|
-
|
478
|
-
## Update local dependencies
|
479
|
-
|
480
|
-
- Update test-unit requirement from = 3.3.4 to = 3.3.5 (#1896)
|
481
|
-
|
482
|
-
------------------------------------------------------------------------------
|
483
|
-
|
484
|
-
## [v2.10.1](https://github.com/faker-ruby/faker/tree/v2.10.1) (2020-01-13)
|
485
|
-
|
486
|
-
This version:
|
487
|
-
- fixes locales
|
488
|
-
- updates local dependencies
|
489
|
-
- fixes warnings
|
490
|
-
|
491
|
-
## Bug/Fixes
|
492
|
-
|
493
|
-
- [PR #1868](https://github.com/faker-ruby/faker/pull/1868) Fix a deprecation warning in unique_generator.rb related to the kwarg [@connorshea](https://github.com/connorshea)
|
494
|
-
|
495
|
-
## Update Locales
|
496
|
-
|
497
|
-
- [PR #1800](https://github.com/faker-ruby/faker/pull/1800) Update diners_club and jcb test cards since they were updated in String [@santib](https://github.com/santib)
|
498
|
-
- [PR #1879](https://github.com/faker-ruby/faker/pull/1879) Field changes in da-DK locale [@psibi](https://github.com/psibi)
|
499
|
-
- [PR #1878](https://github.com/faker-ruby/faker/pull/1878) Fix name related files in ca locale [@psibi](https://github.com/psibi)
|
500
|
-
- [PR #1877](https://github.com/faker-ruby/faker/pull/1877) Fix the path names for bg.yml [@psibi](https://github.com/psibi)
|
501
|
-
|
502
|
-
## Update local dependencies
|
503
|
-
|
504
|
-
- Allow all versions of i18n from 1.6 up to 2 (#1894) [@orien](https://github.com/orien)
|
505
|
-
- Update minitest requirement from = 5.13.0 to = 5.14.0 (#1904)
|
506
|
-
- Bump i18n from 1.8.1 to 1.8.2 (#1905)
|
507
|
-
- Bump i18n from 1.8.0 to 1.8.1 (#1895)
|
508
|
-
- Update i18n requirement from >= 1.6, < 1.8 to >= 1.6, < 1.9 (#1893)
|
509
|
-
- Update yard requirement from = 0.9.23 to = 0.9.24 (#1892)
|
510
|
-
- Update RuboCop requirement from = 0.78.0 to = 0.79.0 (#1890)
|
511
|
-
- Update yard requirement from = 0.9.22 to = 0.9.23 (#1889)
|
512
|
-
- Update yard requirement from = 0.9.20 to = 0.9.22 (#1882)
|
513
|
-
|
514
|
-
------------------------------------------------------------------------------
|
515
|
-
|
516
|
-
## [v2.10.0](https://github.com/faker-ruby/faker/tree/v2.10.0) (2019-12-28)
|
517
|
-
|
518
|
-
This version:
|
519
|
-
- adds `Faker::Address.mail_box`
|
520
|
-
- adds YARD docs
|
521
|
-
- fix Ruby 2.7 warnings
|
522
|
-
- adds other minor changes
|
523
|
-
|
524
|
-
## Bug/Fixes
|
525
|
-
|
526
|
-
- [PR #1876](https://github.com/faker-ruby/faker/pull/1876) Fix Ruby 2.7 deprecation warnings for the translate method. [@connorshea](https://github.com/connorshea)
|
527
|
-
- [PR #1867](https://github.com/faker-ruby/faker/pull/1867) Fix tests failing on Ruby 2.7 [@connorshea](https://github.com/connorshea)
|
528
|
-
|
529
|
-
## Chores
|
530
|
-
|
531
|
-
- [PR #1866](https://github.com/faker-ruby/faker/pull/1866) Upgrade the Gemfile.lock to Bundler 2. [@connorshea](https://github.com/connorshea)
|
532
|
-
|
533
|
-
## Documentation
|
534
|
-
|
535
|
-
- [PR #1873](https://github.com/faker-ruby/faker/pull/1873) Add YARD docs for `Faker::Music{,::Opera}` [@jas14](https://github.com/jas14)
|
536
|
-
- [PR #1862](https://github.com/faker-ruby/faker/pull/1862) Update phone number documentation [@aVigorousDev](https://github.com/aVigorousDev)
|
537
|
-
|
538
|
-
## Feature Request
|
539
|
-
|
540
|
-
- [PR #1875](https://github.com/faker-ruby/faker/pull/1875) Add Ruby 2.7 to the CI test matrix. [@connorshea](https://github.com/connorshea)
|
541
|
-
- [PR #1568](https://github.com/faker-ruby/faker/pull/1568) Add `Faker::Address.mail_box` and some NZ locale updates [@mermop](https://github.com/mermop)
|
542
|
-
|
543
|
-
## Refactoring
|
544
|
-
|
545
|
-
- [PR #1874](https://github.com/faker-ruby/faker/pull/1874) Extract constants in `Faker::Music` [@jas14](https://github.com/jas14)
|
546
|
-
|
547
|
-
## Update local dependencies
|
548
|
-
|
549
|
-
Update RuboCop requirement from = 0.77.0 to = 0.78.0 (#1869)
|
550
|
-
|
551
|
-
------------------------------------------------------------------------------
|
552
|
-
|
553
|
-
## [v2.9.0](https://github.com/faker-ruby/faker/tree/v2.9.0) (2019-12-16)
|
554
|
-
|
555
|
-
This version:
|
556
|
-
- adds `Faker::Gender.short_binary_type`
|
557
|
-
- adds a few YARD docs
|
558
|
-
- fix Faker::Educator issues
|
559
|
-
- update locales
|
560
|
-
|
561
|
-
## Bug/Fixes
|
562
|
-
|
563
|
-
- [PR #1860](https://github.com/faker-ruby/faker/pull/1860) Fix Educator methods returning bad data. [@connorshea](https://github.com/connorshea)
|
564
|
-
|
565
|
-
## Documentation
|
566
|
-
|
567
|
-
- [PR #1859](https://github.com/faker-ruby/faker/pull/1859) YYYY-MM-DD in CHANGELOG [@jas14](https://github.com/jas14)
|
568
|
-
- [PR #1797](https://github.com/faker-ruby/faker/pull/1797) add YARD doc for Faker::Job [@ashishra0](https://github.com/ashishra0)
|
569
|
-
- [PR #1790](https://github.com/faker-ruby/faker/pull/1790) add Faker::Beer YARD docs [@ashishra0](https://github.com/ashishra0)
|
570
|
-
|
571
|
-
## Feature Request
|
572
|
-
|
573
|
-
- [PR #1863](https://github.com/faker-ruby/faker/pull/1863) Add Faker::Gender.short_binary_type [@bruno-b-martins](https://github.com/bruno-b-martins)
|
574
|
-
|
575
|
-
## Update locales
|
576
|
-
|
577
|
-
- [PR #1864](https://github.com/faker-ruby/faker/pull/1864) adding `male` & `female` first names for persian [@alphamarket](https://github.com/alphamarket)
|
578
|
-
|
579
|
-
------------------------------------------------------------------------------
|
580
|
-
|
581
|
-
## [v2.8.1](https://github.com/faker-ruby/faker/tree/v2.8.1) (2019-12-06)
|
582
|
-
|
583
|
-
## Bug/Fixes
|
584
|
-
|
585
|
-
- [PR #1846](https://github.com/faker-ruby/faker/pull/1846) Fix internet custom domain with suffix [@ngouy](https://github.com/ngouy)
|
586
|
-
|
587
|
-
## Documentation
|
588
|
-
|
589
|
-
- [PR #1852](https://github.com/faker-ruby/faker/pull/1852) Add YARD docs for Faker::Business. [@connorshea](https://github.com/connorshea)
|
590
|
-
- [PR #1851](https://github.com/faker-ruby/faker/pull/1851) Add YARD docs for Faker::Crypto. [@connorshea](https://github.com/connorshea)
|
591
|
-
- [PR #1850](https://github.com/faker-ruby/faker/pull/1850) Add YARD docs for Faker::Kpop. [@connorshea](https://github.com/connorshea)
|
592
|
-
- [PR #1849](https://github.com/faker-ruby/faker/pull/1849) Add YARD docs for Faker::BossaNova. [@connorshea](https://github.com/connorshea)
|
593
|
-
- [PR #1848](https://github.com/faker-ruby/faker/pull/1848) Add YARD Docs for Faker::Demographic. [@connorshea](https://github.com/connorshea)
|
594
|
-
- [PR #1844](https://github.com/faker-ruby/faker/pull/1844) Fix yard doc in contribution [@vikas95prasad](https://github.com/vikas95prasad)
|
595
|
-
- [PR #1802](https://github.com/faker-ruby/faker/pull/1802) Add YARD doc for Faker::Food [@sap1enza](https://github.com/sap1enza)
|
596
|
-
- [PR #1766](https://github.com/faker-ruby/faker/pull/1766) Add YARD docs for Faker::Address [@connorshea](https://github.com/connorshea)
|
597
|
-
|
598
|
-
## Refactoring
|
599
|
-
|
600
|
-
- [PR #1847](https://github.com/faker-ruby/faker/pull/1847) Makes minor refactors on Internet.domain_name method [@tiagofsilva](https://github.com/tiagofsilva)
|
601
|
-
- [PR #1772](https://github.com/faker-ruby/faker/pull/1848) Refactor Faker::Educator and add docs [@connorshea](https://github.com/connorshea)
|
602
|
-
|
603
|
-
## Update local dependencies
|
604
|
-
|
605
|
-
- Update RuboCop requirement from = 0.76.0 to = 0.77.0 (#1843)
|
606
|
-
|
607
|
-
------------------------------------------------------------------------------
|
608
|
-
|
609
|
-
## [v2.8.0](https://github.com/faker-ruby/faker/tree/v2.8.0) (2019-12-01)
|
610
|
-
|
611
|
-
## Bug/Fixes
|
612
|
-
|
613
|
-
- [PR #1563](https://github.com/faker-ruby/faker/pull/1563)
|
614
|
-
Fix generating routing number [@psienko](https://github.com/psienko)
|
615
|
-
|
616
|
-
## Chores
|
617
|
-
|
618
|
-
- [PR #1835](https://github.com/faker-ruby/faker/pull/1835)
|
619
|
-
Remove duplicate method description [@pacso](https://github.com/pacso)
|
620
|
-
|
621
|
-
## Documentation
|
622
|
-
|
623
|
-
- [PR #1837](https://github.com/faker-ruby/faker/pull/1837)
|
624
|
-
docs: Internet #email, #domain do not control TLD [@olleolleolle](https://github.com/olleolleolle)
|
625
|
-
- [PR #1833](https://github.com/faker-ruby/faker/pull/1833) Explain safe_email method [@swrobel](https://github.com/swrobel)
|
626
|
-
- [PR #1810](https://github.com/faker-ruby/faker/pull/1810) Add yard docs for Faker::Coffee methods [@LuanGB](https://github.com/LuanGB)
|
627
|
-
- [PR #1803](https://github.com/faker-ruby/faker/pull/1803)
|
628
|
-
add YARD doc for Faker::Coin [@sap1enza](https://github.com/sap1enza) [@connorshea](https://github.com/connorshea)
|
629
|
-
- [PR #1799](https://github.com/faker-ruby/faker/pull/1799) Remove 'See below examples' for consistency [@DevUsmanGhani](https://github.com/DevUsmanGhani)
|
630
|
-
- [PR #1793](https://github.com/faker-ruby/faker/pull/1793) add Faker::Relationship YARD docs [@DevUsmanGhani](https://github.com/DevUsmanGhani)
|
631
|
-
|
632
|
-
## Feature Request
|
633
|
-
|
634
|
-
- [PR #1808](https://github.com/faker-ruby/faker/pull/1808) Adds domain option for Internet email and domain_name methods [@tiagofsilva](https://github.com/tiagofsilva)
|
635
|
-
|
636
|
-
## Update locales
|
637
|
-
|
638
|
-
- [PR #1841](https://github.com/faker-ruby/faker/pull/1841)
|
639
|
-
Fix strange result from `Lorem.word` in ja locale [@yujideveloper](https://github.com/yujideveloper)
|
640
|
-
- [PR #1839](https://github.com/faker-ruby/faker/pull/1839)
|
641
|
-
added new heroes, new maps and almost all of the quotes [@TCsTheMechanic](https://github.com/TCsTheMechanic)
|
642
|
-
|
643
|
-
## Update local dependencies
|
644
|
-
|
645
|
-
- [PR #1831](https://github.com/faker-ruby/faker/pull/1831) Update rake requirement from = 13.0.0 to = 13.0.1 [@DevUsmanGhani](https://github.com/DevUsmanGhani)
|
646
|
-
|
647
|
-
------------------------------------------------------------------------------
|
648
|
-
|
649
|
-
## [v2.7.0](https://github.com/faker-ruby/faker/tree/v2.7.0) (2019-11-01)
|
650
|
-
|
651
|
-
This version:
|
652
|
-
- adds `Faker::IDNumber.chilean_id`
|
653
|
-
- updates some translations/locales
|
654
|
-
- updates local dependencies
|
655
|
-
- adds SemVer badge
|
656
|
-
|
657
|
-
## Documentation
|
658
|
-
|
659
|
-
- [PR #1814](https://github.com/faker-ruby/faker/pull/1814) Add Discord link [@vbrazo](https://github.com/vbrazo)
|
660
|
-
- [PR #1289](https://github.com/faker-ruby/faker/pull/1289) Add SemVer compatibility badge to README [@greysteil](https://github.com/greysteil)
|
661
|
-
|
662
|
-
## Feature Request
|
663
|
-
|
664
|
-
- [PR #1819](https://github.com/faker-ruby/faker/pull/1819) Adding chilean_id in Faker::IDNumber [@cristofer](https://github.com/cristofer)
|
665
|
-
|
666
|
-
## Update locales
|
667
|
-
|
668
|
-
- [PR #1824](https://github.com/faker-ruby/faker/pull/1824) Added Canadian Country Code [@clinch](https://github.com/clinch)
|
669
|
-
- [PR #1817](https://github.com/faker-ruby/faker/pull/1817) Add Japanese animal names [@shouichi](https://github.com/shouichi)
|
670
|
-
- [PR #1816](https://github.com/faker-ruby/faker/pull/1816) Add Japanese bank names [@shouichi](https://github.com/shouichi)
|
671
|
-
- [PR #1813](https://github.com/faker-ruby/faker/pull/1813) Translate Canadian provinces for fr-CA [@Bhacaz](https://github.com/Bhacaz)
|
672
|
-
- [PR #1806](https://github.com/faker-ruby/faker/pull/1806) Add Terry Bogard to Super Smash Bros. options [@clinch](https://github.com/clinch)
|
673
|
-
|
674
|
-
## Update local dependencies
|
675
|
-
|
676
|
-
- Update RuboCop requirement from = 0.75.0 to = 0.75.1 (#1811)
|
677
|
-
- Update RuboCop requirement from = 0.75.1 to = 0.76.0 (#1822)
|
678
|
-
- Update minitest requirement from = 5.12.2 to = 5.13.0 (#1823)
|
679
|
-
|
680
|
-
------------------------------------------------------------------------------
|
681
|
-
|
682
|
-
## [v2.6.0](https://github.com/faker-ruby/faker/tree/v2.6.0) (2019-10-10)
|
683
|
-
|
684
|
-
This version:
|
685
|
-
- adds `Faker::Date.in_date_period`
|
686
|
-
- adds `Faker::WorldCup` YARD docs
|
687
|
-
- updates local dependencies
|
688
|
-
|
689
|
-
## Documentation
|
690
|
-
|
691
|
-
- [PR #1789](https://github.com/faker-ruby/faker/pull/1789) Faker::WorldCup YARD docs [@ashishra0](https://github.com/ashishra0)
|
692
|
-
|
693
|
-
## Feature Request
|
694
|
-
|
695
|
-
- [PR #1755](https://github.com/faker-ruby/faker/pull/1755) Add Faker::Date.in_date_period [@AmrAdelKhalil](https://github.com/AmrAdelKhalil)
|
696
|
-
|
697
|
-
## Update local dependencies
|
698
|
-
|
699
|
-
The following development dependencies were updated:
|
700
|
-
- Update rake requirement from = 12.3.3 to = 13.0.0 (#1776)
|
701
|
-
- Update minitest requirement from = 5.12.0 to = 5.12.2 (#1775)
|
702
|
-
- Update test-unit requirement from = 3.3.3 to = 3.3.4 (#1774)
|
703
|
-
|
704
|
-
------------------------------------------------------------------------------
|
705
|
-
|
706
|
-
## [v2.5.0](https://github.com/faker-ruby/faker/tree/v2.5.0) (2019-09-30)
|
707
|
-
|
708
|
-
This version introduces:
|
709
|
-
- locales for Thai language - the mother language in Thailand
|
710
|
-
- YARD documentation for faker interfaces
|
711
|
-
- locales updates or fixes
|
712
|
-
|
713
|
-
## Feature Request
|
714
|
-
|
715
|
-
- [PR #1773](https://github.com/faker-ruby/faker/pull/1773) Two new locales added: th and en-th [@kodram](https://github.com/kodram)
|
716
|
-
|
717
|
-
## Documentation
|
718
|
-
|
719
|
-
- [PR #1771](https://github.com/faker-ruby/faker/pull/1771) Fix some RuboCop comments that were showing up in YARD docs. [@connorshea](https://github.com/connorshea)
|
720
|
-
- [PR #1767](https://github.com/faker-ruby/faker/pull/1767) Fix two incorrect flexible method calls. [@connorshea](https://github.com/connorshea)
|
721
|
-
- [PR #1761](https://github.com/faker-ruby/faker/pull/1761) Add YARD docs for the Basketball and Football fakers. [@connorshea](https://github.com/connorshea)
|
722
|
-
- [PR #1768](https://github.com/faker-ruby/faker/pull/1768) Add YARD docs for Faker::Restaurant. [@connorshea](https://github.com/connorshea)
|
723
|
-
- [PR #1759](https://github.com/faker-ruby/faker/pull/1759) Add YARD docs for all remaining TV Shows [@connorshea](https://github.com/connorshea)
|
724
|
-
- [PR #1758](https://github.com/faker-ruby/faker/pull/1758) Add YARD docs for Doctor Who and fix a method name. [@connorshea](https://github.com/connorshea)
|
725
|
-
- [PR #1756](https://github.com/faker-ruby/faker/pull/1756) Add more miscellaneous YARD docs [@connorshea](https://github.com/connorshea)
|
726
|
-
- [PR #1753](https://github.com/faker-ruby/faker/pull/1753) Add YARD docs for Date, Time, and Number [@connorshea](https://github.com/connorshea)
|
727
|
-
|
728
|
-
## Update locales
|
729
|
-
|
730
|
-
- [PR #1764](https://github.com/faker-ruby/faker/pull/1764) Remove "mint green" from color [@ro-savage](https://github.com/ro-savage)
|
731
|
-
- [PR #1751](https://github.com/faker-ruby/faker/pull/1751) fix from Color.name to Color.color_name [@4geru](https://github.com/4geru)
|
732
|
-
|
733
|
-
## Update local dependencies
|
734
|
-
|
735
|
-
The following development dependencies were updated:
|
736
|
-
- Update minitest requirement from = 5.11.3 to = 5.12.0 (#1763)
|
737
|
-
|
738
|
-
------------------------------------------------------------------------------
|
739
|
-
|
740
|
-
## [v2.4.0](https://github.com/faker-ruby/faker/tree/v2.4.0) (2019-09-19)
|
741
|
-
|
742
|
-
## Documentation
|
743
|
-
|
744
|
-
- [PR #1750](https://github.com/faker-ruby/faker/pull/1750) add only japanese word spec [@4geru](https://github.com/4geru)
|
745
|
-
- [PR #1740](https://github.com/faker-ruby/faker/pull/1740) Add more YARD docs [@connorshea](https://github.com/connorshea)
|
746
|
-
- [PR #1747](https://github.com/faker-ruby/faker/pull/1747) Fix PR links [@geniou](https://github.com/geniou)
|
747
|
-
|
748
|
-
## Feature Request
|
749
|
-
|
750
|
-
- [PR #1742](https://github.com/faker-ruby/faker/pull/1742) Add Faker::Blockchain::Aeternity [@2pd](https://github.com/2pd)
|
751
|
-
|
752
|
-
## Update locales
|
753
|
-
|
754
|
-
- [PR #1743](https://github.com/faker-ruby/faker/pull/1743) Fix another ambiguity in element_symbol field [@psibi](https://github.com/psibi)
|
755
|
-
- [PR #1748](https://github.com/faker-ruby/faker/pull/1748) fix typo from bread to breed [@4geru](https://github.com/4geru)
|
756
|
-
- [PR #1752](https://github.com/faker-ruby/faker/pull/1752) fix creature i18n path in japanese [@4geru](https://github.com/4geru)
|
757
|
-
|
758
|
-
## Update local dependencies
|
759
|
-
|
760
|
-
The following development dependencies were updated:
|
761
|
-
- Update simplecov requirement from = 0.17.0 to = 0.17.1 (#1749)
|
762
|
-
|
763
|
-
------------------------------------------------------------------------------
|
764
|
-
|
765
|
-
## [v2.3.0](https://github.com/faker-ruby/faker/tree/v2.3.0) (2019-09-12)
|
766
|
-
|
767
|
-
## Documentation
|
768
|
-
|
769
|
-
- [PR #1741](https://github.com/faker-ruby/faker/pull/1741) Fix the .gitignore for YARD. [@connorshea](https://github.com/connorshea)
|
770
|
-
- [PR #1553](https://github.com/faker-ruby/faker/pull/1553) Yard powered docs [@Zeragamba](https://github.com/Zeragamba) [@connorshea](https://github.com/connorshea)
|
771
|
-
- [PR #1727](https://github.com/faker-ruby/faker/pull/1727) Remove Football documentation from wrong category [@lucasqueiroz](https://github.com/lucasqueiroz)
|
772
|
-
|
773
|
-
## Feature Request
|
774
|
-
|
775
|
-
- [PR #1738](https://github.com/faker-ruby/faker/pull/1738) Add mock data for Apple OAuth [@dzunk](https://github.com/dzunk)
|
776
|
-
|
777
|
-
## Update locales
|
778
|
-
|
779
|
-
- [PR #1723](https://github.com/faker-ruby/faker/pull/1723) Add pokemon name in Johto area [@mathieujobin](https://github.com/mathieujobin)
|
780
|
-
- [PR #1732](https://github.com/faker-ruby/faker/pull/1732) Quebec province postal codes starts by [GHJ], adding missing two [@Ryutooooo](https://github.com/Ryutooooo)
|
781
|
-
|
782
|
-
------------------------------------------------------------------------------
|
783
|
-
|
784
|
-
## [v2.2.2](https://github.com/faker-ruby/faker/tree/v2.2.2) (2019-09-05)
|
785
|
-
|
786
|
-
## Bug/Fixes
|
787
|
-
|
788
|
-
- [PR #1717](https://github.com/faker-ruby/faker/pull/1717) Fix ambiguity in element_symbol field [@psibi](https://github.com/psibi)
|
789
|
-
|
790
|
-
## Chores
|
791
|
-
|
792
|
-
- [PR #1724](https://github.com/faker-ruby/faker/pull/1724) Include RuboCop-faker autocorrect in deprecation [@koic](https://github.com/koic)
|
793
|
-
|
794
|
-
## Documentation
|
795
|
-
|
796
|
-
- [PR #1726](https://github.com/faker-ruby/faker/pull/1726) Include 2.x breaking return value change in changelog [@zorab47](https://github.com/zorab47)
|
797
|
-
- [PR #1722](https://github.com/faker-ruby/faker/pull/1722) Fix examples in the Dota docs [@bzf](https://github.com/bzf)
|
798
|
-
|
799
|
-
## Update local dependencies
|
800
|
-
|
801
|
-
The following development dependencies were updated:
|
802
|
-
- rake requirement from = 12.3.1 to = 12.3.3 (#1719)
|
803
|
-
- RuboCop requirement from = 0.59.1 to = 0.74.0 (#1721)
|
804
|
-
- simplecov requirement from = 0.16.1 to = 0.17.0 (#1718)
|
805
|
-
|
806
|
-
------------------------------------------------------------------------------
|
807
|
-
|
808
|
-
## [v2.2.1](https://github.com/faker-ruby/faker/tree/v2.2.1) (2019-08-30)
|
809
|
-
|
810
|
-
## Bug/Fixes
|
811
|
-
|
812
|
-
- [PR #1712](https://github.com/faker-ruby/faker/pull/1712) Fix number(digits: 1) always returns 0 [@ianlet](https://github.com/ianlet)
|
813
|
-
|
814
|
-
`Faker::Number.number(digits: 1)` was always returning `0`.
|
815
|
-
|
816
|
-
Fixing number with one digit caused the test_insignificant_zero to fail. As it seemed that the behavior tested by test_insignificant_zero was already covered by test_number and test_decimal, we removed it to prevent duplication.
|
817
|
-
|
818
|
-
## [v2.2.0](https://github.com/faker-ruby/faker/tree/v2.2.0) (2019-08-25)
|
819
|
-
|
820
|
-
## Deprecate
|
821
|
-
|
822
|
-
- [PR #1698](https://github.com/faker-ruby/faker/pull/1698) Add warn for positional arguments when using Faker 2.0 [@koic](https://github.com/koic)
|
823
|
-
|
824
|
-
Add deprecation warning for positional arguments to notify users that are coming from Faker version < 2.0. Its main goal is to make upgrades easier.
|
825
|
-
|
826
|
-
## Documentation
|
827
|
-
|
828
|
-
- [PR #1688](https://github.com/faker-ruby/faker/pull/1688) Update README install instructions [@EduardoGHdez](https://github.com/EduardoGHdez)
|
829
|
-
- [PR #1689](https://github.com/faker-ruby/faker/pull/1689) Update README.md [@Zeragamba](https://github.com/Zeragamba)
|
830
|
-
- [PR #1690](https://github.com/faker-ruby/faker/pull/1690) Update issue url in PULL_REQUEST_TEMPLATE [@bugtender](https://github.com/bugtender)
|
831
|
-
- [PR #1703](https://github.com/faker-ruby/faker/pull/1703) Return HTTPS URLs from Lorem Flickr [@connorshea](https://github.com/connorshea)
|
832
|
-
|
833
|
-
## Feature Request
|
834
|
-
- [PR #1686](https://github.com/faker-ruby/faker/pull/1686) Update test-unit gem to 3.3.3 [@connorshea](https://github.com/connorshea)
|
835
|
-
|
836
|
-
## Bug/Fixes
|
837
|
-
- [PR #1702](https://github.com/faker-ruby/faker/pull/1702) Fix an argument for test_faker_stripe.rb [@koic](https://github.com/koic)
|
838
|
-
- [PR #1694](https://github.com/faker-ruby/faker/pull/1694) Ensure mix_case returns at least one lower and one upper case letter [@bpleslie](https://github.com/bpleslie)
|
839
|
-
|
840
|
-
------------------------------------------------------------------------------
|
841
|
-
|
842
|
-
## [v2.1.2](https://github.com/faker-ruby/faker/tree/v2.1.2) (2019-08-10)
|
843
|
-
|
844
|
-
## Enhancements
|
845
|
-
|
846
|
-
- [PR #1495](https://github.com/faker-ruby/faker/pull/1495) Add Brazilian documents generation and documentation [@lucasqueiroz](https://github.com/lucasqueiroz)
|
847
|
-
|
848
|
-
## Issues
|
849
|
-
|
850
|
-
We had to use `bundled with 1.7.3` to avoid some issues.
|
851
|
-
|
852
|
-
## [v2.1.1](https://github.com/faker-ruby/faker/tree/2.1.1) (2019-08-10)
|
853
|
-
|
854
|
-
## Bug/Fixes
|
855
|
-
|
856
|
-
- [PR #1685](https://github.com/stympy/faker/pull/1685) Upgrade i18n [@EduardoGHdez](https://github.com/EduardoGHdez)
|
857
|
-
|
858
|
-
`bundler-audit` has identified that i18 has fix a security vulnerability, that has been fixed in the 0.8 version.
|
859
|
-
|
860
|
-
- [PR #1683](https://github.com/stympy/faker/pull/1683) Rollback Faker::Time changes [@vbrazo](https://github.com/vbrazo)
|
861
|
-
|
862
|
-
Rollback Faker::Time changes because we should expect the date format from activesupport's en.yml.
|
863
|
-
|
864
|
-
## Documentation
|
865
|
-
|
866
|
-
- [PR #1677](https://github.com/faker-ruby/faker/pull/1677) Fix docs for Internet#password generator [@ur5us](https://github.com/ur5us)
|
867
|
-
|
868
|
-
------------------------------------------------------------------------------
|
869
|
-
|
870
|
-
## [v2.1.0](https://github.com/faker-ruby/faker/tree/v2.1.0) (2019-07-31)
|
871
|
-
|
872
|
-
## Bug/Fixes
|
873
|
-
- [PR #1675](https://github.com/faker-ruby/faker/pull/1675) Fix off-by-one error when formatting month names [@jutonz](https://github.com/jutonz)
|
874
|
-
|
875
|
-
This change required a quick release because it's a breaking issue. Every place where I18n.l() was used began to display the wrong date, causing test suite to fail.
|
876
|
-
|
877
|
-
------------------------------------------------------------------------------
|
878
|
-
|
879
|
-
## [v2.0](https://github.com/faker-ruby/faker/tree/v2.0) (2019-07-31)
|
880
|
-
|
881
|
-
## Important Note:
|
882
|
-
|
883
|
-
Version 2 has several `breaking changes`. We replaced positional arguments with keyword arguments and the list below contains all the changed methods:
|
884
|
-
- `Faker::Books::Dune.quote(character = nil)` becomes `Faker::Books::Dune.quote(character: nil)`
|
885
|
-
- `Faker::Books::Dune.saying(source = nil)` becomes `Faker::Books::Dune.saying(source: nil)`
|
886
|
-
- `Faker::Books::Lovecraft.fhtagn(number_of = nil)` becomes `Faker::Books::Lovecraft.fhtagn(number: nil)`
|
887
|
-
- `Faker::Books::Lovecraft.paragraph(sentence_count = nil, random_sentences_to_add = nil)` becomes `Faker::Books::Lovecraft.paragraph(sentence_count: nil, random_sentences_to_add: nil)`
|
888
|
-
- `Faker::Books::Lovecraft.paragraph_by_chars(chars = nil)` becomes `Faker::Books::Lovecraft.paragraph_by_chars(characters: nil)`
|
889
|
-
- `Faker::Books::Lovecraft.paragraphs(paragraph_count = nil)` becomes `Faker::Books::Lovecraft.paragraphs(number: nil)`
|
890
|
-
- `Faker::Books::Lovecraft.sentence(word_count = nil, random_words_to_add = nil)` becomes `Faker::Books::Lovecraft.sentence(word_count: nil, random_words_to_add: nil)`
|
891
|
-
- `Faker::Books::Lovecraft.sentences(sentence_count = nil)` becomes `Faker::Books::Lovecraft.sentences(number: nil)`
|
892
|
-
- `Faker::Books::Lovecraft.words(num = nil, spaces_allowed = nil)` becomes `Faker::Books::Lovecraft.words(number: nil, spaces_allowed: nil)`
|
893
|
-
- `Faker::Address.city(options = nil)` becomes `Faker::Address.city(options: nil)`
|
894
|
-
- `Faker::Address.postcode(state_abbreviation = nil)` becomes `Faker::Address.postcode(state_abbreviation: nil)`
|
895
|
-
- `Faker::Address.street_address(include_secondary = nil)` becomes `Faker::Address.street_address(include_secondary: nil)`
|
896
|
-
- `Faker::Address.zip(state_abbreviation = nil)` becomes `Faker::Address.zip(state_abbreviation: nil)`
|
897
|
-
- `Faker::Address.zip_code(state_abbreviation = nil)` becomes `Faker::Address.zip_code(state_abbreviation: nil)`
|
898
|
-
- `Faker::Alphanumeric.alpha(char_count = nil)` becomes `Faker::Alphanumeric.alpha(number: nil)`
|
899
|
-
- `Faker::Alphanumeric.alphanumeric(char_count = nil)` becomes `Faker::Alphanumeric.alphanumeric(number: nil)`
|
900
|
-
- `Faker::Avatar.image(slug = nil, size = nil, format = nil, set = nil, bgset = nil)` becomes `Faker::Avatar.image(slug: nil, size: nil, format: nil, set: nil, bgset: nil)`
|
901
|
-
- `Faker::Bank.account_number(digits = nil)` becomes `Faker::Bank.account_number(digits: nil)`
|
902
|
-
- `Faker::Bank.iban(country_code = nil)` becomes `Faker::Bank.iban(country_code: nil)`
|
903
|
-
- `Faker::ChileRut.full_rut(min_rut = nil, fixed = nil)` becomes `Faker::ChileRut.full_rut(min_rut: nil, fixed: nil)`
|
904
|
-
- `Faker::ChileRut.rut(min_rut = nil, fixed = nil)` becomes `Faker::ChileRut.rut(min_rut: nil, fixed: nil)`
|
905
|
-
- `Faker::Code.ean(base = nil)` becomes `Faker::Code.ean(base: nil)`
|
906
|
-
- `Faker::Code.isbn(base = nil)` becomes `Faker::Code.isbn(base: nil)`
|
907
|
-
- `Faker::Code.nric(min_age = nil, max_age = nil)` becomes `Faker::Code.nric(min_age: nil, max_age: nil)`
|
908
|
-
- `Faker::Commerce.department(max = nil, fixed_amount = nil)` becomes `Faker::Commerce.department(max: nil, fixed_amount: nil)`
|
909
|
-
- `Faker::Commerce.price(range = nil, as_string = nil)` becomes `Faker::Commerce.price(range: nil, as_string: nil)`
|
910
|
-
- `Faker::Commerce.promotion_code(digits = nil)` becomes `Faker::Commerce.promotion_code(digits: nil)`
|
911
|
-
- `Faker::Company.polish_register_of_national_economy(length = nil)` becomes `Faker::Company.polish_register_of_national_economy(length: nil)`
|
912
|
-
- `Faker::CryptoCoin.acronym(coin = nil)` becomes `Faker::CryptoCoin.acronym(coin: nil)`
|
913
|
-
- `Faker::CryptoCoin.coin_name(coin = nil)` becomes `Faker::CryptoCoin.coin_name(coin: nil)`
|
914
|
-
- `Faker::CryptoCoin.url_logo(coin = nil)` becomes `Faker::CryptoCoin.url_logo(coin: nil)`
|
915
|
-
- `Faker::Date.backward(days = nil)` becomes `Faker::Date.backward(days: nil)`
|
916
|
-
- `Faker::Date.between(from, to)` becomes `Faker::Date.between(from:, to:)`
|
917
|
-
- `Faker::Date.between_except(from, to, excepted)` becomes `Faker::Date.between_except(from:, to:, excepted:)`
|
918
|
-
- `Faker::Date.birthday(min_age = nil, max_age = nil)` becomes `Faker::Date.birthday(min_age: nil, max_age: nil)`
|
919
|
-
- `Faker::Date.forward(days = nil)` becomes `Faker::Date.forward(days: nil)`
|
920
|
-
- `Faker::Demographic.height(unit = nil)` becomes `Faker::Demographic.height(unit: nil)`
|
921
|
-
- `Faker::File.dir(segment_count = nil, root = nil, directory_separator = nil)` becomes `Faker::File.dir(segment_count: nil, root: nil, directory_separator: nil)`
|
922
|
-
- `Faker::File.file_name(dir = nil, name = nil, ext = nil, directory_separator = nil)` becomes `Faker::File.file_name(dir: nil, name: nil, ext: nil, directory_separator: nil)`
|
923
|
-
- `Faker::Fillmurray.image(grayscale = nil, width = nil, height = nil)` becomes `Faker::Fillmurray.image(grayscale: nil, width: nil, height: nil)`
|
924
|
-
- `Faker::Finance.vat_number(country = nil)` becomes `Faker::Finance.vat_number(country: nil)`
|
925
|
-
- `Faker::Hipster.paragraph(sentence_count = nil, supplemental = nil, random_sentences_to_add = nil)` becomes `Faker::Hipster.paragraph(sentence_count: nil, supplemental: nil, random_sentences_to_add: nil)`
|
926
|
-
- `Faker::Hipster.paragraph_by_chars(chars = nil, supplemental = nil)` becomes `Faker::Hipster.paragraph_by_chars(characters: nil, supplemental: nil)`
|
927
|
-
- `Faker::Hipster.paragraphs(paragraph_count = nil, supplemental = nil)` becomes `Faker::Hipster.paragraphs(number: nil, supplemental: nil)`
|
928
|
-
- `Faker::Hipster.sentence(word_count = nil, supplemental = nil, random_words_to_add = nil)` becomes `Faker::Hipster.sentence(word_count: nil, supplemental: nil, random_words_to_add: nil)`
|
929
|
-
- `Faker::Hipster.sentences(sentence_count = nil, supplemental = nil)` becomes `Faker::Hipster.sentences(number: nil, supplemental: nil)`
|
930
|
-
- `Faker::Hipster.words(num = nil, supplemental = nil, spaces_allowed = nil)` becomes `Faker::Hipster.words(number: nil, supplemental: nil, spaces_allowed: nil)`
|
931
|
-
- `Faker::Internet.domain_name(subdomain = nil)` becomes `Faker::Internet.domain_name(subdomain: nil)`
|
932
|
-
- `Faker::Internet.email(name = nil, *separators)` becomes `Faker::Internet.email(name: nil, separators: nil)`
|
933
|
-
- `Faker::Internet.fix_umlauts(string = nil)` becomes `Faker::Internet.fix_umlauts(string: nil)`
|
934
|
-
- `Faker::Internet.free_email(name = nil)` becomes `Faker::Internet.free_email(name: nil)`
|
935
|
-
- `Faker::Internet.mac_address(prefix = nil)` becomes `Faker::Internet.mac_address(prefix: nil)`
|
936
|
-
- `Faker::Internet.password(min_length = nil, max_length = nil, mix_case = nil, special_chars = nil)` becomes `Faker::Internet.password(min_length: nil, max_length: nil, mix_case: nil, special_characters: nil)`
|
937
|
-
- `Faker::Internet.safe_email(name = nil)` becomes `Faker::Internet.safe_email(name: nil)`
|
938
|
-
- `Faker::Internet.slug(words = nil, glue = nil)` becomes `Faker::Internet.slug(words: nil, glue: nil)`
|
939
|
-
- `Faker::Internet.url(host = nil, path = nil, scheme = nil)` becomes `Faker::Internet.url(host: nil, path: nil, scheme: nil)`
|
940
|
-
- `Faker::Internet.user_agent(vendor = nil)` becomes `Faker::Internet.user_agent(vendor: nil)`
|
941
|
-
- `Faker::Internet.user_name(specifier = nil, separators = nil)` becomes `Faker::Internet.user_name(specifier: nil, separators: nil)`
|
942
|
-
- `Faker::Internet.username(specifier = nil, separators = nil)` becomes `Faker::Internet.username(specifier: nil, separators: nil)`
|
943
|
-
- `Faker::Invoice.amount_between(from = nil, to = nil)` becomes `Faker::Invoice.amount_between(from: nil, to: nil)`
|
944
|
-
- `Faker::Invoice.creditor_reference(ref = nil)` becomes `Faker::Invoice.creditor_reference(ref: nil)`
|
945
|
-
- `Faker::Invoice.reference(ref = nil)` becomes `Faker::Invoice.reference(ref: nil)`
|
946
|
-
- `Faker::Json.add_depth_to_json(json = nil, width = nil, options = nil)` becomes `Faker::Json.add_depth_to_json(json: nil, width: nil, options: nil)`
|
947
|
-
- `Faker::Json.shallow_json(width = nil, options = nil)` becomes `Faker::Json.shallow_json(width: nil, options: nil)`
|
948
|
-
- `Faker::Lorem.characters(char_count = nil)` becomes `Faker::Lorem.characters(number: nil)`
|
949
|
-
- `Faker::Lorem.paragraph(sentence_count = nil, supplemental = nil, random_sentences_to_add = nil)` becomes `Faker::Lorem.paragraph(sentence_count: nil, supplemental: nil, random_sentences_to_add: nil)`
|
950
|
-
- `Faker::Lorem.paragraph_by_chars(chars = nil, supplemental = nil)` becomes `Faker::Lorem.paragraph_by_chars(number: nil, supplemental: nil)`
|
951
|
-
- `Faker::Lorem.paragraphs(paragraph_count = nil, supplemental = nil)` becomes `Faker::Lorem.paragraphs(number: nil, supplemental: nil)`
|
952
|
-
- `Faker::Lorem.question(word_count = nil, supplemental = nil, random_words_to_add = nil)` becomes `Faker::Lorem.question(word_count: nil, supplemental: nil, random_words_to_add: nil)`
|
953
|
-
- `Faker::Lorem.questions(question_count = nil, supplemental = nil)` becomes `Faker::Lorem.questions(number: nil, supplemental: nil)`
|
954
|
-
- `Faker::Lorem.sentence(word_count = nil, supplemental = nil, random_words_to_add = nil)` becomes `Faker::Lorem.sentence(word_count: nil, supplemental: nil, random_words_to_add: nil)`
|
955
|
-
- `Faker::Lorem.sentences(sentence_count = nil, supplemental = nil)` becomes `Faker::Lorem.sentences(number: nil, supplemental: nil)`
|
956
|
-
- `Faker::Lorem.words(num = nil, supplemental = nil)` becomes `Faker::Lorem.words(number: nil, supplemental: nil)`
|
957
|
-
- `Faker::LoremFlickr.colorized_image(size = nil, color = nil, search_terms = nil, match_all = nil)` becomes `Faker::LoremFlickr.colorized_image(size: nil, color: nil, search_terms: nil, match_all: nil)`
|
958
|
-
- `Faker::LoremFlickr.grayscale_image(size = nil, search_terms = nil, match_all = nil)` becomes `Faker::LoremFlickr.grayscale_image(size: nil, search_terms: nil, match_all: nil)`
|
959
|
-
- `Faker::LoremFlickr.image(size = nil, search_terms = nil, match_all = nil)` becomes `Faker::LoremFlickr.image(size: nil, search_terms: nil, match_all: nil)`
|
960
|
-
- `Faker::LoremFlickr.pixelated_image(size = nil, search_terms = nil, match_all = nil)` becomes `Faker::LoremFlickr.pixelated_image(size: nil, search_terms: nil, match_all: nil)`
|
961
|
-
- `Faker::LoremPixel.image(size = nil, is_gray = nil, category = nil, number = nil, text = nil, secure: nil)` becomes `Faker::LoremPixel.image(size: nil, is_gray: nil, category: nil, number: nil, text: nil, secure: nil)`
|
962
|
-
- `Faker::Markdown.sandwich(sentences = nil, repeat = nil)` becomes `Faker::Markdown.sandwich(sentences: nil, repeat: nil)`
|
963
|
-
- `Faker::Measurement.height(amount = nil)` becomes `Faker::Measurement.height(amount: nil)`
|
964
|
-
- `Faker::Measurement.length(amount = nil)` becomes `Faker::Measurement.length(amount: nil)`
|
965
|
-
- `Faker::Measurement.metric_height(amount = nil)` becomes `Faker::Measurement.metric_height(amount: nil)`
|
966
|
-
- `Faker::Measurement.metric_length(amount = nil)` becomes `Faker::Measurement.metric_length(amount: nil)`
|
967
|
-
- `Faker::Measurement.metric_volume(amount = nil)` becomes `Faker::Measurement.metric_volume(amount: nil)`
|
968
|
-
- `Faker::Measurement.metric_weight(amount = nil)` becomes `Faker::Measurement.metric_weight(amount: nil)`
|
969
|
-
- `Faker::Measurement.volume(amount = nil)` becomes `Faker::Measurement.volume(amount: nil)`
|
970
|
-
- `Faker::Measurement.weight(amount = nil)` becomes `Faker::Measurement.weight(amount: nil)`
|
971
|
-
- `Faker::Name.initials(character_count = nil)` becomes `Faker::Name.initials(number: nil)`
|
972
|
-
- `Faker::NationalHealthService.check_digit(number = nil)` becomes `Faker::NationalHealthService.check_digit(number: nil)`
|
973
|
-
- `Faker::Number.between(from = nil, to = nil)` becomes `Faker::Number.between(from: nil, to: nil)`
|
974
|
-
- `Faker::Number.decimal(l_digits = nil, r_digits = nil)` becomes `Faker::Number.decimal(l_digits: nil, r_digits: nil)`
|
975
|
-
- `Faker::Number.decimal_part(*args, &block)` becomes `Faker::Number.decimal_part(digits: nil)`
|
976
|
-
- `Faker::Number.hexadecimal(digits = nil)` becomes `Faker::Number.hexadecimal(digits: nil)`
|
977
|
-
- `Faker::Number.leading_zero_number(*args, &block)` becomes `Faker::Number.leading_zero_number(digits: nil)`
|
978
|
-
- `Faker::Number.negative(from = nil, to = nil)` becomes `Faker::Number.negative(from: nil, to: nil)`
|
979
|
-
- `Faker::Number.normal(mean = nil, standard_deviation = nil)` becomes `Faker::Number.normal(mean: nil, standard_deviation: nil)`
|
980
|
-
- `Faker::Number.number(digits = nil)` becomes `Faker::Number.number(digits: nil)`
|
981
|
-
- `Faker::Number.positive(from = nil, to = nil)` becomes `Faker::Number.positive(from: nil, to: nil)`
|
982
|
-
- `Faker::Number.within(range = nil)` becomes `Faker::Number.within(range: nil)`
|
983
|
-
- `Faker::PhoneNumber.extension(length = nil)` becomes `Faker::PhoneNumber.extension(length: nil)`
|
984
|
-
- `Faker::PhoneNumber.subscriber_number(length = nil)` becomes `Faker::PhoneNumber.subscriber_number(length: nil)`
|
985
|
-
- `Faker::Placeholdit.image(size = nil, format = nil, background_color = nil, text_color = nil, text = nil)` becomes `Faker::Placeholdit.image(size: nil, format: nil, background_color: nil, text_color: nil, text: nil)`
|
986
|
-
- `Faker::Relationship.familial(connection = nil)` becomes `Faker::Relationship.familial(connection: nil)`
|
987
|
-
- `Faker::Source.hello_world(lang = nil)` becomes `Faker::Source.hello_world(lang: nil)`
|
988
|
-
- `Faker::Source.print_1_to_10(lang = nil)` becomes `Faker::Source.print_1_to_10(lang: nil)`
|
989
|
-
- `Faker::String.random(length = nil)` becomes `Faker::String.random(length: nil)`
|
990
|
-
- `Faker::Stripe.ccv(card_type = nil)` becomes `Faker::Stripe.ccv(card_type: nil)`
|
991
|
-
- `Faker::Stripe.invalid_card(card_error = nil)` becomes `Faker::Stripe.invalid_card(card_error: nil)`
|
992
|
-
- `Faker::Stripe.valid_card(card_type = nil)` becomes `Faker::Stripe.valid_card(card_type: nil)`
|
993
|
-
- `Faker::Stripe.valid_token(card_type = nil)` becomes `Faker::Stripe.valid_token(card_type: nil)`
|
994
|
-
- `Faker::Time.backward(days = nil, period = nil, format = nil)` becomes `Faker::Time.backward(days: nil, period: nil, format: nil)`
|
995
|
-
- `Faker::Time.between(from, to, period = nil, format = nil)` becomes `Faker::Time.between(from:, to:, format: nil)`
|
996
|
-
- `Faker::Time.forward(days = nil, period = nil, format = nil)` becomes `Faker::Time.forward(days: nil, period: nil, format: nil)`
|
997
|
-
- `Faker::Types.complex_rb_hash(key_count = nil)` becomes `Faker::Types.complex_rb_hash(number: nil)`
|
998
|
-
- `Faker::Types.rb_array(len = nil)` becomes `Faker::Types.rb_array(len: nil)`
|
999
|
-
- `Faker::Types.rb_hash(key_count = nil, type = nil)` becomes `Faker::Types.rb_hash(number: nil, type: nil)`
|
1000
|
-
- `Faker::Types.rb_integer(from = nil, to = nil)` becomes `Faker::Types.rb_integer(from: nil, to: nil)`
|
1001
|
-
- `Faker::Types.rb_string(words = nil)` becomes `Faker::Types.rb_string(words: nil)`
|
1002
|
-
- `Faker::Vehicle.kilometrage(min = nil, max = nil)` becomes `Faker::Vehicle.kilometrage(min: nil, max: nil)`
|
1003
|
-
- `Faker::Vehicle.license_plate(state_abreviation = nil)` becomes `Faker::Vehicle.license_plate(state_abreviation: nil)`
|
1004
|
-
- `Faker::Vehicle.mileage(min = nil, max = nil)` becomes `Faker::Vehicle.mileage(min: nil, max: nil)`
|
1005
|
-
- `Faker::Vehicle.model(make_of_model = nil)` becomes `Faker::Vehicle.model(make_of_model: nil)`
|
1006
|
-
- `Faker::WorldCup.group(group = nil)` becomes `Faker::WorldCup.group(group: nil)`
|
1007
|
-
- `Faker::WorldCup.roster(country = nil, type = nil)` becomes `Faker::WorldCup.roster(country: nil, type: nil)`
|
1008
|
-
- `Faker::Movies::StarWars.quote(character = nil)` becomes `Faker::Movies::StarWars.quote(character: nil)`
|
1009
|
-
|
1010
|
-
Additionally the following methods changed return values:
|
1011
|
-
|
1012
|
-
- `Faker::Number.number` now returns `Numeric` instead of `String` (see [PR #510](https://github.com/faker-ruby/faker/pull/510))
|
1013
|
-
|
1014
|
-
### Bug/Fixes
|
1015
|
-
|
1016
|
-
- [PR #1660](https://github.com/stympy/faker/pull/1660) Update FillMurray Links To Include www [@RaymondFallon](https://github.com/RaymondFallon)
|
1017
|
-
|
1018
|
-
### Deprecation
|
1019
|
-
|
1020
|
-
- [PR #1634](https://github.com/stympy/faker/pull/1634) Corrected other occurrences of spelling vehicle spelling error, deprecated Space launch_vehicule [@Siyanda](https://github.com/Siyanda)
|
1021
|
-
|
1022
|
-
### Documentation
|
1023
|
-
|
1024
|
-
- [PR #1653](https://github.com/stympy/faker/pull/1653) Add /faker-ruby/faker-bot to README [@vbrazo](https://github.com/vbrazo)
|
1025
|
-
|
1026
|
-
### Feature Request
|
1027
|
-
|
1028
|
-
- [PR #1417](https://github.com/stympy/faker/pull/1417) Rework Faker::Time::between [@pjohnmeyer](https://github.com/pjohnmeyer)
|
1029
|
-
- [PR #510](https://github.com/stympy/faker/pull/510) Make Faker::Number return integers and floats instead of strings [@tejasbubane](https://github.com/tejasbubane)
|
1030
|
-
- [PR #1651](https://github.com/stympy/faker/pull/1651) Preparing for v2 [@vbrazo](https://github.com/vbrazo)
|
1031
|
-
- [PR #1664](https://github.com/stympy/faker/pull/1664) Replace positional arguments with keyword arguments [@vbrazo](https://github.com/vbrazo)
|
1032
|
-
|
1033
|
-
### Update/add locales
|
1034
|
-
|
1035
|
-
- [PR #1658](https://github.com/stympy/faker/pull/1658) Update Faker::Games::SuperSmashBros entries [@boardfish](https://github.com/boardfish)
|
1036
|
-
- [PR #1649](https://github.com/stympy/faker/pull/1649) Remove mexicoMX [@vbrazo](https://github.com/vbrazo)
|
1037
|
-
|
1038
|
-
------------------------------------------------------------------------------
|
1039
|
-
|
1040
|
-
## [v1.9.6](https://github.com/stympy/faker/tree/1.9.6) (2019-07-05)
|
1041
|
-
|
1042
|
-
Fix lib/faker/version.rb
|
1043
|
-
|
1044
|
-
## [v1.9.5](https://github.com/stympy/faker/tree/v.1.9.5) (2019-07-04)
|
1045
|
-
|
1046
|
-
### Bug
|
1047
|
-
|
1048
|
-
- [PR #1644](https://github.com/stympy/faker/pull/1644) Revert fakerbot and move to own repository inside new organization [@vbrazo](https://github.com/vbrazo)
|
1049
|
-
|
1050
|
-
### Deprecate
|
1051
|
-
|
1052
|
-
- [PR #1516](https://github.com/stympy/faker/pull/1516) Deprecate Faker::Number.decimal_part and Faker::Number.leading_zero_number [@vbrazo](https://github.com/vbrazo)
|
1053
|
-
|
1054
|
-
### Documentation
|
1055
|
-
|
1056
|
-
- [PR #1640](https://github.com/stympy/faker/pull/1640) Add pull_request_template.md [@vbrazo](https://github.com/vbrazo)
|
1057
|
-
|
1058
|
-
### Feature Request
|
1059
|
-
|
1060
|
-
- [PR #1361](https://github.com/stympy/faker/pull/1361) Add Faker::File.dir [@tylerhunt](https://github.com/tylerhunt)
|
1061
|
-
|
1062
|
-
### Update Locales
|
1063
|
-
|
1064
|
-
- [PR #1643](https://github.com/stympy/faker/pull/1643) Add 558 Verb ing_forms from Verb base [@lightyrs](https://github.com/lightyrs)
|
1065
|
-
|
1066
|
-
------------------------------------------------------------------------------
|
1067
|
-
|
1068
|
-
## [v1.9.4](https://github.com/stympy/faker/tree/1.9.4) (2019-06-19)
|
1069
|
-
|
1070
|
-
### Bug/Fixes
|
1071
|
-
|
1072
|
-
- [PR #1605](https://github.com/stympy/faker/pull/1605) fix shallow_json for frozen_string_literal [@causztic](https://github.com/causztic)
|
1073
|
-
- [PR #1597](https://github.com/stympy/faker/pull/1597) Fix broken test [@vbrazo](https://github.com/vbrazo)
|
1074
|
-
- [PR #1578](https://github.com/stympy/faker/pull/1578) Namespaces should inherit Base [@vbrazo](https://github.com/vbrazo)
|
1075
|
-
|
1076
|
-
### Chores
|
1077
|
-
|
1078
|
-
- [PR #1626](https://github.com/stympy/faker/pull/1626) Update tty tree [@Zeragamba](https://github.com/Zeragamba)
|
1079
|
-
- [PR #1559](https://github.com/stympy/faker/pull/1559) Fix name_with_middle field for en-AU [@psibi](https://github.com/psibi)
|
1080
|
-
- [PR #1548](https://github.com/stympy/faker/pull/1548) Chore/improve pt-BR specs [@paulodiovani](https://github.com/paulodiovani)
|
1081
|
-
- [PR #1542](https://github.com/stympy/faker/pull/1542) Fixed typos to the unreleased_README.md [@gkunwar](https://github.com/gkunwar)
|
1082
|
-
- [PR #1541](https://github.com/stympy/faker/pull/1541) Add new categories to armenian [@hovikman](https://github.com/hovikman)
|
1083
|
-
|
1084
|
-
### Deprecation
|
1085
|
-
|
1086
|
-
- [PR #1549](https://github.com/stympy/faker/pull/1549) Faker::Movies::GratefulDead => Faker::Music::GratefulDead [@bcharna](https://github.com/bcharna)
|
1087
|
-
- [PR #1538](https://github.com/stympy/faker/pull/1538) Add Sports namespace [@vbrazo](https://github.com/vbrazo)
|
1088
|
-
- Deprecates `::Football`
|
1089
|
-
|
1090
|
-
### Documentation
|
1091
|
-
|
1092
|
-
- [PR #1636](https://github.com/stympy/faker/pull/1636) Fix default values for arguments in Lorem doc [@mikong](https://github.com/mikong)
|
1093
|
-
- [PR #1617](https://github.com/stympy/faker/pull/1617) Fix Dota README [@TheSmartnik](https://github.com/TheSmartnik)
|
1094
|
-
- [PR #1612](https://github.com/stympy/faker/pull/1612) Update returned example player [@ncallaway](https://github.com/ncallaway)
|
1095
|
-
- [PR #1611](https://github.com/stympy/faker/pull/1611) Documentation error fix [@tomlockwood](https://github.com/tomlockwood)
|
1096
|
-
- [PR #1575](https://github.com/stympy/faker/pull/1575) Add issues templates [@vbrazo](https://github.com/vbrazo)
|
1097
|
-
|
1098
|
-
### Feature Request
|
1099
|
-
|
1100
|
-
- [PR #1631](https://github.com/stympy/faker/pull/1631) Faker::Tezos: add block faker [@akettal](https://github.com/akettal)
|
1101
|
-
- [PR #1619](https://github.com/stympy/faker/pull/1619) Add Faker::Music::Opera [@Adsidera](https://github.com/Adsidera)
|
1102
|
-
- [PR #1607](https://github.com/stympy/faker/pull/1607) Add Faker::Game with title, genre, and platform generators. [@connorshea](https://github.com/connorshea)
|
1103
|
-
- [PR #1603](https://github.com/stympy/faker/pull/1603) Add Faker::Internet.uuid [@ianks](https://github.com/ianks)
|
1104
|
-
- [PR #1560](https://github.com/stympy/faker/pull/1560) Add Faker::Creature::Horse [@wndxlori](https://github.com/wndxlori)
|
1105
|
-
- [PR #1507](https://github.com/stympy/faker/pull/1507) Add CLI - Integrate fakerbot 🤖 [@akabiru](https://github.com/akabiru)
|
1106
|
-
- [PR #1540](https://github.com/stympy/faker/pull/1540) Add sic_code to company #355 [@bruno-b-martins](https://github.com/bruno-b-martins)
|
1107
|
-
- [PR #1537](https://github.com/stympy/faker/pull/1537) Adds the Faker::Sports::Basketball generator [@ecbrodie](https://github.com/ecbrodie)
|
1108
|
-
- [PR #1520](https://github.com/stympy/faker/pull/1520) Allow subdomains for Internet.domain_name [@cianooooo](https://github.com/cianooooo)
|
1109
|
-
|
1110
|
-
### Update/add locales
|
1111
|
-
|
1112
|
-
- [PR #1629](https://github.com/stympy/faker/pull/1629) Fix sintax error on game.yml file [@ricardobsilva](https://github.com/ricardobsilva)
|
1113
|
-
- [PR #1627](https://github.com/stympy/faker/pull/1627) add more data for Faker::Games [@BlazingRockStorm](https://github.com/BlazingRockStorm)
|
1114
|
-
- [PR #1620](https://github.com/stympy/faker/pull/1620) Added Yuumi as a Champion [@eddorre](https://github.com/eddorre)
|
1115
|
-
- [PR #1621](https://github.com/stympy/faker/pull/1621) Updated classes to match the changes that Blizzard rolled out late last year. Updated hero pool to add the latest two heroes added to the game. [@eddorre](https://github.com/eddorre)
|
1116
|
-
- [PR #1602](https://github.com/stympy/faker/pull/1602) Remove white space, fix minor typos [@darylf](https://github.com/darylf)
|
1117
|
-
- [PR #1595](https://github.com/stympy/faker/pull/1595) Fix accented French surnames [@Samy-Amar](https://github.com/Samy-Amar)
|
1118
|
-
- [PR #1585](https://github.com/stympy/faker/pull/1585) Add Meepo to Dota heroes and quotes [@justinoue](https://github.com/justinoue)
|
1119
|
-
- [PR #1594](https://github.com/stympy/faker/pull/1594) Changed Startrek to Stargate :) [@Defoncesko](https://github.com/Defoncesko)
|
1120
|
-
- [PR #1591](https://github.com/stympy/faker/pull/1591) fix-chinese-city [@locez](https://github.com/locez)
|
1121
|
-
- [PR #1592](https://github.com/stympy/faker/pull/1592) Add coffee country for Japanese [@schmurfy](https://github.com/schmurfy)
|
1122
|
-
- [PR #1593](https://github.com/stympy/faker/pull/1593) removes duplicates in fr-CA and fr-CH [@schmurfy](https://github.com/schmurfy)
|
1123
|
-
- [PR #1587](https://github.com/stympy/faker/pull/1587) Add ancient god for Japanese [@yizknn](https://github.com/yizknn)
|
1124
|
-
- [PR #1582](https://github.com/stympy/faker/pull/1582) Add fighters and DLC to Faker::Games::SuperSmashBros [@boardfish](https://github.com/boardfish)
|
1125
|
-
- [PR #1583](https://github.com/stympy/faker/pull/1583) updates to RuPaul [@notactuallypagemcconnell](https://github.com/notactuallypagemcconnell)
|
1126
|
-
- [PR #1581](https://github.com/stympy/faker/pull/1581) add latest list of phish tunes from phish.net/song that are by the band and not covers [@notactuallypagemcconnell](https://github.com/notactuallypagemcconnell)
|
1127
|
-
- [PR #1573](https://github.com/stympy/faker/pull/1573) Fix data of music albums [@sankichi92](https://github.com/sankichi92)
|
1128
|
-
- [PR #1567](https://github.com/stympy/faker/pull/1567) Fix name_with_middle in Chinese locales [@rockymeza](https://github.com/rockymeza)
|
1129
|
-
- [PR #1564](https://github.com/stympy/faker/pull/1564) Update League of legends content [@michebble](https://github.com/michebble)
|
1130
|
-
- [PR #1558](https://github.com/stympy/faker/pull/1558) remove misspelling of Japanese [@michebble](https://github.com/michebble)
|
1131
|
-
- [PR #1554](https://github.com/stympy/faker/pull/1554) Extend list of cryptocurrencies [@kamilbielawski](https://github.com/kamilbielawski)
|
1132
|
-
- [PR #1552](https://github.com/stympy/faker/pull/1552) Fix subscription: Fix missing double quotes [@psibi](https://github.com/psibi)
|
1133
|
-
- [PR #1551](https://github.com/stympy/faker/pull/1551) Yaml syntax for stargate.yml: Fix missing double quote [@psibi](https://github.com/psibi)
|
1134
|
-
- [PR #1550](https://github.com/stympy/faker/pull/1550) Fix kpop - yaml syntax issue. Double quote is missing [@psibi](https://github.com/psibi)
|
1135
|
-
- [PR #1545](https://github.com/stympy/faker/pull/1545) Remove trailing space from "kangaroo " & "gnu " translation in animals [@spikeheap](https://github.com/spikeheap)
|
1136
|
-
- [PR #1543](https://github.com/stympy/faker/pull/1543) Add pt-BR genders [@fladson](https://github.com/fladson)
|
1137
|
-
|
1138
|
-
------------------------------------------------------------------------------
|
1139
|
-
|
1140
|
-
## [v1.9.3](https://github.com/stympy/faker/tree/v1.9.3) (2019-02-12)
|
1141
|
-
|
1142
|
-
[Full Changelog](https://github.com/stympy/faker/compare/v1.9.2...v1.9.3)
|
1143
|
-
|
1144
|
-
### Bug/Fixes
|
1145
|
-
|
1146
|
-
- [PR #1535](https://github.com/stympy/faker/pull/1535) Fix I18n bug [@vbrazo](https://github.com/vbrazo)
|
1147
|
-
|
1148
|
-
------------------------------------------------------------------------------
|
1149
|
-
|
1150
|
-
## [v1.9.2](https://github.com/stympy/faker/tree/v1.9.2) (2019-02-11)
|
1151
|
-
[Full Changelog](https://github.com/stympy/faker/compare/v1.9.1...v1.9.2)
|
1152
|
-
|
1153
|
-
### Bug/Fixes
|
1154
|
-
- [PR #1512](https://github.com/stympy/faker/pull/1512) Fix numerical part of Dutch postcode [@tilsammans](https://github.com/tilsammans)
|
1155
|
-
- [PR #1477](https://github.com/stympy/faker/pull/1477) Fixed bank account length [@jguthrie100](https://github.com/jguthrie100)
|
1156
|
-
- [PR #1494](https://github.com/stympy/faker/pull/1494) Fix Faker::Internet.ip_v4_address to include all IP ranges [@lucasqueiroz](https://github.com/lucasqueiroz)
|
1157
|
-
- [PR #1456](https://github.com/stympy/faker/pull/1456) fix: omit . from slug [@ivanoblomov](https://github.com/ivanoblomov)
|
1158
|
-
- [PR #1436](https://github.com/stympy/faker/pull/1436) Fix regex and add magic string to pass RuboCop check [@jakrzus](https://github.com/jakrzus)
|
1159
|
-
- [PR #1425](https://github.com/stympy/faker/pull/1425) NHS: fix occasional bad numbers [@ChaoticBoredom](https://github.com/ChaoticBoredom)
|
1160
|
-
- [PR #1421](https://github.com/stympy/faker/pull/1421) Faker::Internet.user_name can't handle UTF-8 arguments [@ivanoblomov](https://github.com/ivanoblomov)
|
1161
|
-
- [PR #1423](https://github.com/stympy/faker/pull/1423) Add missing locale tests - Part II [@vbrazo](https://github.com/vbrazo)
|
1162
|
-
- [PR #1389](https://github.com/stympy/faker/pull/1389) Load faker I18n using custom backend chaining [@pjohnmeyer](https://github.com/pjohnmeyer)
|
1163
|
-
- [PR #1384](https://github.com/stympy/faker/pull/1384) Quick number method bugfix [@vbrazo](https://github.com/vbrazo)
|
1164
|
-
- [PR #1377](https://github.com/stympy/faker/pull/1377) Fallback translation without available locales enforcement [@deivid-rodriguez](https://github.com/deivid-rodriguez)
|
1165
|
-
- [PR #1368](https://github.com/stympy/faker/pull/1368) Don't force enforce_available_locales [@deivid-rodriguez](https://github.com/deivid-rodriguez)
|
1166
|
-
- [PR #1355](https://github.com/stympy/faker/pull/1355) Fix global clear of unique values for Faker::UniqueGenerator [@kolasss](https://github.com/kolasss)
|
1167
|
-
- [PR #1335](https://github.com/stympy/faker/pull/1335) Fix Company.luhn_algorithm and add missing tests [@01max](https://github.com/01max)
|
1168
|
-
- [PR #1334](https://github.com/stympy/faker/pull/1334) Faker::Number.leading_zero_number should always start with 0 [@vbrazo](https://github.com/vbrazo)
|
1169
|
-
- [PR #1317](https://github.com/stympy/faker/pull/1317) Change Faker::Lorem.multibyte logic [@ShabelnikM](https://github.com/ShabelnikM)
|
1170
|
-
- [PR #527](https://github.com/stympy/faker/pull/527) Fix time period test that could result in a flake test within 15 days [@melonhead901](https://github.com/melonhead901)
|
1171
|
-
- [PR #1310](https://github.com/stympy/faker/pull/1310) Add alias for middle_name and remove locale [@vbrazo](https://github.com/vbrazo)
|
1172
|
-
|
1173
|
-
### Chores
|
1174
|
-
- [PR #1496](https://github.com/stympy/faker/pull/1496) Update yaml format in docs [@SpyMaster356](https://github.com/SpyMaster356)
|
1175
|
-
- [PR #1508](https://github.com/stympy/faker/pull/1508) Changes before release [@vbrazo](https://github.com/vbrazo)
|
1176
|
-
- [PR #1490](https://github.com/stympy/faker/pull/1490) Add missing Faker::HeroesOfTheStorm tests [@vbrazo](https://github.com/vbrazo)
|
1177
|
-
- [PR #1457](https://github.com/stympy/faker/pull/1457) Add tests for new Faker::Internet.slug glue [@vbrazo](https://github.com/vbrazo)
|
1178
|
-
- [PR #1434](https://github.com/stympy/faker/pull/1434) Add keyword argument to Faker::Games::Dota.quote [@vbrazo](https://github.com/vbrazo)
|
1179
|
-
- [PR #1420](https://github.com/stympy/faker/pull/1420) Add Faker::JapaneseMedia namespace [@boardfish](https://github.com/boardfish)
|
1180
|
-
- [PR #1411](https://github.com/stympy/faker/pull/1411) Add several missing locales [@vbrazo](https://github.com/vbrazo)
|
1181
|
-
- [PR #1403](https://github.com/stympy/faker/pull/1403) Faker::SouthPark => Faker::Movies::SouthPark [@vbrazo](https://github.com/vbrazo)
|
1182
|
-
- [PR #1401](https://github.com/stympy/faker/pull/1401) Faker::GratefulDead => Faker::Movies::GratefulDead [@vbrazo](https://github.com/vbrazo)
|
1183
|
-
- [PR #1362](https://github.com/stympy/faker/pull/1362) Faker::Types minor cleanup [@stephengroat](https://github.com/stephengroat)
|
1184
|
-
- [PR #1347](https://github.com/stympy/faker/pull/1347) Remove launchy dependency [@vbrazo](https://github.com/vbrazo)
|
1185
|
-
- [PR #1311](https://github.com/stympy/faker/pull/1311) Target Ruby 2.3 [@tagliala](https://github.com/tagliala)
|
1186
|
-
- [PR #372](https://github.com/stympy/faker/pull/372) Add test_password_could_achieve_max_length [@oleksii-ti](https://github.com/oleksii-ti)
|
1187
|
-
|
1188
|
-
### Deprecation
|
1189
|
-
- [PR #1504](https://github.com/stympy/faker/pull/1504) Add Quotes namespace [@vbrazo](https://github.com/vbrazo)
|
1190
|
-
- Deprecates `::FamousLastWords`, `::Matz`, `::MostInterestingManInTheWorld`, `::Robin`, `::Shakespeare`, `::SingularSiegler`, `::Yoda`
|
1191
|
-
- [PR #1503](https://github.com/stympy/faker/pull/1503) Add Books namespace [@vbrazo](https://github.com/vbrazo)
|
1192
|
-
- Deprecates `::Dune`, `Lovecraft`
|
1193
|
-
- [PR #1480](https://github.com/stympy/faker/pull/1480) Add Music, Movies and TvShows namespaces [@vbrazo](https://github.com/vbrazo)
|
1194
|
-
- Deprecates `::Hobbit`, `HitchhikersGuideToTheGalaxy`, `::HarryPotter`, `::RockBand`, `::MichaelScott`, `::RuPaul`
|
1195
|
-
- [PR #1481](https://github.com/stympy/faker/pull/1481) Add Blockchain namespace [@vbrazo](https://github.com/vbrazo)
|
1196
|
-
- Deprecates `::Bitcoin`, `::Ethereum`, `::Tezos`
|
1197
|
-
- [PR #1471](https://github.com/stympy/faker/pull/1471) Add music and movies namespace [@vbrazo](https://github.com/vbrazo)
|
1198
|
-
- Deprecates `::BackToTheFuture`, `::Lebowski`, `::LordOfTheRings`, `::PrincessBride`, `::StarWars`, `::UmphreysMcgee`, `::VForVendetta`
|
1199
|
-
- [PR #1469](https://github.com/stympy/faker/pull/1469) Deprecate Faker::Hobbit and reorganize unreleased docs and tests [@vbrazo](https://github.com/vbrazo)
|
1200
|
-
- Deprecates `::Hobbit`
|
1201
|
-
- [PR #1431](https://github.com/stympy/faker/pull/1431) Add Faker::TvShows namespace [@SpyMaster356](https://github.com/SpyMaster356)
|
1202
|
-
- Deprecates `::AquaTeenHungerForce`, `::BojackHorseman`, `::BreakingBad`, `::Buffy`, `::Community`, `::DrWho`, `::DumbAndDumber`, `::FamilyGuy`, `::Friends`, `::GameOfThrones`, `::HeyArnold`, `::HowIMetYourMother`, `::NewGirl`, `::ParksAndRec`, `::RickAndMorty`, `::Seinfeld`, `::SiliconValley`, `::Simpsons`, `::SouthPark`, `::StarTrek`, `::Stargate`, `::StrangerThings`, `::TheFreshPrinceOfBelAir`, `::TheITCrowd`, `::TheThickOfIt`, `::TwinPeaks`, `::VentureBros`
|
1203
|
-
- [PR #1412](https://github.com/stympy/faker/pull/1412) Add Faker::Games namespace [@ChaoticBoredom](https://github.com/ChaoticBoredom)
|
1204
|
-
- Deprecates `::Dota`, `::ElderScrolls`, `::Fallout`, `::LeagueOfLegends`, `::Myst`, `::Overwatch`, `::Pokemon`, `::Witcher`, `::WorldOfWarcraft` and `::Zelda`
|
1205
|
-
- [PR #1424](https://github.com/stympy/faker/pull/1424) Add Faker::Creature namespace [@ChaoticBoredom](https://github.com/ChaoticBoredom)
|
1206
|
-
- Deprecates `::Cat` and `::Dog`
|
1207
|
-
- [PR #1420](https://github.com/stympy/faker/pull/1420) Add Faker::JapaneseMedia namespace [@boardfish](https://github.com/boardfish)
|
1208
|
-
- Deprecates `::DragonBall`, `::OnePiece` and `::SwordArtOnline`
|
1209
|
-
- [PR #803](https://github.com/stympy/faker/pull/803) Modify Faker::Educator, Fix #576 [@ghbooth12](https://github.com/ghbooth12)
|
1210
|
-
|
1211
|
-
### Documentation
|
1212
|
-
- [PR #1513](https://github.com/stympy/faker/pull/1513) Fix typo in Faker::Code documentation [@iox](https://github.com/iox)
|
1213
|
-
- [PR #1497](https://github.com/stympy/faker/pull/1497) add TV Shows to table of contents [@SpyMaster356](https://github.com/SpyMaster356)
|
1214
|
-
- [PR #1488](https://github.com/stympy/faker/pull/1488) Fix unreleased docs [@vbrazo](https://github.com/vbrazo)
|
1215
|
-
- [PR #1462](https://github.com/stympy/faker/pull/1462) Fix documentation on Faker::Avatar [@mrstebo](https://github.com/mrstebo)
|
1216
|
-
- [PR #1445](https://github.com/stympy/faker/pull/1445) Separate README.md: unreleased and latest version [@vbrazo](https://github.com/vbrazo)
|
1217
|
-
- [PR #1243](https://github.com/stympy/faker/pull/1243) Add image file method to placeholdit [@nicolas-brousse](https://github.com/nicolas-brousse)
|
1218
|
-
- [PR #1419](https://github.com/stympy/faker/pull/1419) Update CONTRIBUTING.md [@vbrazo](https://github.com/vbrazo)
|
1219
|
-
- [PR #1414](https://github.com/stympy/faker/pull/1414) Fixing spelling mistake in Docs for Vehicle [@snoozins](https://github.com/snoozins)
|
1220
|
-
- [PR #1408](https://github.com/stympy/faker/pull/1408) Add Verbs example to README [@matheusteixeira](https://github.com/matheusteixeira)
|
1221
|
-
- [PR #1380](https://github.com/stympy/faker/pull/1380) Update year in License.txt [@dnamsons](https://github.com/dnamsons)
|
1222
|
-
- [PR #1364](https://github.com/stympy/faker/pull/1364) Update readme for Faker::Code to fix typo [@matt297](https://github.com/matt297)
|
1223
|
-
- [PR #1360](https://github.com/stympy/faker/pull/1360) added sushi and sorted by word [@yizknn](https://github.com/yizknn)
|
1224
|
-
- [PR #1357](https://github.com/stympy/faker/pull/1357) Fix South Africa documentation [@bradleymarques](https://github.com/bradleymarques)
|
1225
|
-
- [PR #1354](https://github.com/stympy/faker/pull/1354) Update docs for Lorem [@softwaregravy](https://github.com/softwaregravy)
|
1226
|
-
- [PR #1353](https://github.com/stympy/faker/pull/1353) Update documentation for Faker::Number [@softwaregravy](https://github.com/softwaregravy)
|
1227
|
-
- [PR #1329](https://github.com/stympy/faker/pull/1329) Update docs on behavior of price [@softwaregravy](https://github.com/softwaregravy)
|
1228
|
-
|
1229
|
-
### Feature Request
|
1230
|
-
- [PR #1493](https://github.com/stympy/faker/pull/1493) Add Faker::Books::CultureSeries [@richardbulger](https://github.com/richardbulger)
|
1231
|
-
- [PR #1489](https://github.com/stympy/faker/pull/1489) Format brazilian_company_number and brazilian_citizen_number [@jpkarvonen](https://github.com/jpkarvonen)
|
1232
|
-
- [PR #1487](https://github.com/stympy/faker/pull/1487) Add Faker::TvShows::TheExpanse [@jpkarvonen](https://github.com/jpkarvonen)
|
1233
|
-
- [PR #1475](https://github.com/stympy/faker/pull/1475) Adds Faker::Nation.flag [@JonathanWThom](https://github.com/JonathanWThom)
|
1234
|
-
- [PR #1387](https://github.com/stympy/faker/pull/1387) Add Faker::Music::Phish [@nbolser](https://github.com/nbolser)
|
1235
|
-
- [PR #1430](https://github.com/stympy/faker/pull/1430) Adding Faker::Company.brazilian_company_number [@gabteles](https://github.com/gabteles)
|
1236
|
-
- [PR #1449](https://github.com/stympy/faker/pull/1449) Add Faker::Coin [@jerryskye](https://github.com/jerryskye)
|
1237
|
-
- [PR #1466](https://github.com/stympy/faker/pull/1466) Add Faker::Address.country_name_to_code(name: 'united_states') [@vbrazo](https://github.com/vbrazo)
|
1238
|
-
- [PR #1465](https://github.com/stympy/faker/pull/1465) Add Faker.country(country_code: nil) [@vbrazo](https://github.com/vbrazo)
|
1239
|
-
- [PR #1460](https://github.com/stympy/faker/pull/1460) Add Faker::Marketing [@susiirwin](https://github.com/susiirwin)
|
1240
|
-
- [PR #1451](https://github.com/stympy/faker/pull/1451) Add first name 'Simão' and title prefix to 'Eng.' [@jellyfunk](https://github.com/jellyfunk)
|
1241
|
-
- [PR #1433](https://github.com/stympy/faker/pull/1433) Add Faker::DrivingLicence [@jellyfunk](https://github.com/jellyfunk)
|
1242
|
-
- [PR #1440](https://github.com/stympy/faker/pull/1440) Add Faker::Subscription [@fabersky](https://github.com/fabersky)
|
1243
|
-
- [PR #1438](https://github.com/stympy/faker/pull/1438) Add Faker::Football.position [@fblupi](https://github.com/fblupi)
|
1244
|
-
- [PR #1426](https://github.com/stympy/faker/pull/1426) Add Faker::PhoneNumber.country_code [@AmrAdelKhalil](https://github.com/AmrAdelKhalil)
|
1245
|
-
- [PR #1427](https://github.com/stympy/faker/pull/1427) Add Faker::Games::SuperSmashBros [@boardfish](https://github.com/boardfish)
|
1246
|
-
- [PR #1410](https://github.com/stympy/faker/pull/1410) Add Faker::Vehicle.singapore_license_plate [@anonoz](https://github.com/anonoz)
|
1247
|
-
- [PR #1422](https://github.com/stympy/faker/pull/1422) Add Faker::Games::SonicTheHedgehog [@boardfish](https://github.com/boardfish)
|
1248
|
-
- [PR #1413](https://github.com/stympy/faker/pull/1413) Add Faker::Games::Heroes [@tangens](https://github.com/tangens)
|
1249
|
-
- [PR #1409](https://github.com/stympy/faker/pull/1409) Add DC Comics titles [@matheusteixeira](https://github.com/matheusteixeira)
|
1250
|
-
- [PR #1400](https://github.com/stympy/faker/pull/1400) Add Faker::Movies::Ghostbusters [@eddorre](https://github.com/eddorre)
|
1251
|
-
- [PR #1399](https://github.com/stympy/faker/pull/1399) Add Faker::Games::HeroesOfTheStorm [@illsism](https://github.com/illsism)
|
1252
|
-
- [PR #1396](https://github.com/stympy/faker/pull/1396) Add Faker::Creature::Animal [@molbrown](https://github.com/molbrown)
|
1253
|
-
- [PR #1382](https://github.com/stympy/faker/pull/1382) Adding Faker::IDNumber.brazilian_citizen_number [@bschettino](https://github.com/bschettino)
|
1254
|
-
- [PR #1062](https://github.com/stympy/faker/pull/1062) Markdown exclude method [@russellschmidt](https://github.com/russellschmidt)
|
1255
|
-
- [PR #1381](https://github.com/stympy/faker/pull/1381) Add Faker::Games::HalfLife [@jthomp](https://github.com/jthomp)
|
1256
|
-
- [PR #1374](https://github.com/stympy/faker/pull/1374) Add Faker::Beer.brand [@thalesap](https://github.com/thalesap)
|
1257
|
-
- [PR #1302](https://github.com/stympy/faker/pull/1302) Add Faker::Alphanumeric [@mtancoigne](https://github.com/mtancoigne)
|
1258
|
-
- [PR #1156](https://github.com/stympy/faker/pull/1156) Add Faker::Json [@the-wendell](https://github.com/the-wendell)
|
1259
|
-
- [PR #1359](https://github.com/stympy/faker/pull/1359) Add Faker::Tezos [@Pierre-Michard](https://github.com/Pierre-Michard)
|
1260
|
-
- [PR #1366](https://github.com/stympy/faker/pull/1366) Add Faker::Seinfeld.business [@dsgraham](https://github.com/dsgraham)
|
1261
|
-
- [PR #1358](https://github.com/stympy/faker/pull/1358) Add cat breed for Japanese [@yizknn](https://github.com/yizknn)
|
1262
|
-
- [PR #1365](https://github.com/stympy/faker/pull/1365) Add Faker::Number.within [@QuantumWaver](https://github.com/QuantumWaver)
|
1263
|
-
- [PR #1336](https://github.com/stympy/faker/pull/1336) Implements and tests South African business registration numbers [@bradleymarques](https://github.com/bradleymarques)
|
1264
|
-
- [PR #1346](https://github.com/stympy/faker/pull/1346) Add Faker::Relationship [@QuantumWaver](https://github.com/QuantumWaver)
|
1265
|
-
- [PR #1348](https://github.com/stympy/faker/pull/1348) Add Faker::Finance.vat_number [@vbrazo](https://github.com/vbrazo)
|
1266
|
-
- [PR #1342](https://github.com/stympy/faker/pull/1342) Added Faker::CryptoCoin scope [@jacksonpires](https://github.com/jacksonpires)
|
1267
|
-
- [PR #1338](https://github.com/stympy/faker/pull/1338) Add new translations to the en-ZA locale [@bradleymarques](https://github.com/bradleymarques)
|
1268
|
-
- [PR #1341](https://github.com/stympy/faker/pull/1341) Add Faker::Construction [@benwyrosdick](https://github.com/benwyrosdick)
|
1269
|
-
- [PR #1130](https://github.com/stympy/faker/pull/1130) Faker::Vehicle API updates [@lucasqueiroz](https://github.com/lucasqueiroz)
|
1270
|
-
- [PR #1324](https://github.com/stympy/faker/pull/1319) Add Faker::SouthAfrica [@bradleymarques](https://github.com/bradleymarques)
|
1271
|
-
- [PR #1319](https://github.com/stympy/faker/pull/1319) Added Faker::DC Comics [@JoelLindow](https://github.com/JoelLindow)
|
1272
|
-
- [PR #1320](https://github.com/stympy/faker/pull/1320) Add Faker::Buffy [@inveterateliterate](https://github.com/inveterateliterate)
|
1273
|
-
- [PR #1148](https://github.com/stympy/faker/pull/1148) Adding Industry Segments Class [@cdesch](https://github.com/cdesch)
|
1274
|
-
- [PR #893](https://github.com/stympy/faker/pull/893) Add Faker::ChileRut [@oxfist](https://github.com/oxfist)
|
1275
|
-
- [PR #1315](https://github.com/stympy/faker/pull/1315) Add Faker::GratefulDead [@wileybaba](https://github.com/wileybaba)
|
1276
|
-
- [PR #1314](https://github.com/stympy/faker/pull/1314) Add Faker::SouthPark [@saurabhudaniya200](https://github.com/saurabhudaniya200)
|
1277
|
-
- [PR #1313](https://github.com/stympy/faker/pull/1313) Add Faker::Restaurant [@dwhitlow](https://github.com/dwhitlow)
|
1278
|
-
- [PR #1307](https://github.com/stympy/faker/pull/1307) Add "exclude" method to UniqueGenerator [@mtancoigne](https://github.com/mtancoigne)
|
1279
|
-
- [PR #1115](https://github.com/stympy/faker/pull/1115) Add Faker::Cosmere [@JauntyJames](https://github.com/JauntyJames)
|
1280
|
-
- [PR #801](https://github.com/stympy/faker/pull/801) Add Faker::NHS - Support for the British National Health Service [@substrakt-health](https://github.com/substrakt-health)
|
1281
|
-
|
1282
|
-
### Suggestion
|
1283
|
-
- [PR #1246](https://github.com/stympy/faker/pull/1246) Store list of generators with enabled uniqueness for faster clear [@MarcPer](https://github.com/MarcPer)
|
1284
|
-
|
1285
|
-
### Update/add locales
|
1286
|
-
- [PR #1514](https://github.com/stympy/faker/pull/1514) Distinguish between 'brand' and 'name' [@iwaim](https://github.com/iwaim)
|
1287
|
-
- [PR #1509](https://github.com/stympy/faker/pull/1509) Fix Faker::Address.country_by_code [@IlyasValiullov](https://github.com/IlyasValiullov)
|
1288
|
-
- [PR #1492](https://github.com/stympy/faker/pull/1492) Fix abbreviation for Osten [@sonOfRa](https://github.com/sonOfRa)
|
1289
|
-
- [PR #1499](https://github.com/stympy/faker/pull/1499) Adds some items on pt-BR locales seniority and education levels. And removes duplicated items from cities list. [@ramonlg](https://github.com/ramonlg)
|
1290
|
-
- [PR #1501](https://github.com/stympy/faker/pull/1501) fix asajj_ventress alternate name [@ethan-dowler](https://github.com/ethan-dowler)
|
1291
|
-
- [PR #1502](https://github.com/stympy/faker/pull/1502) Add support for Armenian language [@hovikman](https://github.com/hovikman)
|
1292
|
-
- [PR #1486](https://github.com/stympy/faker/pull/1486) Added some professions in company.yml [@ReneIvanov](https://github.com/ReneIvanov)
|
1293
|
-
- [PR #1474](https://github.com/stympy/faker/pull/1474) Fr format and translation [@maxime-lenne](https://github.com/maxime-lenne)
|
1294
|
-
- [PR #1468](https://github.com/stympy/faker/pull/1468) Update "Black Pink" to "Blackpink" [@agungyuliaji](https://github.com/agungyuliaji)
|
1295
|
-
- [PR #1464](https://github.com/stympy/faker/pull/1464) Add dog breed for Japanese [@yizknn](https://github.com/yizknn)
|
1296
|
-
- [PR #1461](https://github.com/stympy/faker/pull/1461) Add Orphea to heroes of the storm locale file. [@eddorre](https://github.com/eddorre)
|
1297
|
-
- [PR #1458](https://github.com/stympy/faker/pull/1458) Update Faker::DragonBall.characters locales [@JoaoHenriqueVale](https://github.com/JoaoHenriqueVale)
|
1298
|
-
- [PR #1450](https://github.com/stympy/faker/pull/1450) Update device list and serial codes [@raresabr](https://github.com/raresabr)
|
1299
|
-
- [PR #1443](https://github.com/stympy/faker/pull/1443) Add new array of cities from brazil [@WilliamCSA04](https://github.com/WilliamCSA04)
|
1300
|
-
- [PR #1447](https://github.com/stympy/faker/pull/1447) Add Maroon 5 and Paramore to music [@Jcambass](https://github.com/Jcambass)
|
1301
|
-
- [PR #1446](https://github.com/stympy/faker/pull/1446) fix: Remove deplicate 'color' from ja.yml [@yizknn](https://github.com/yizknn)
|
1302
|
-
- [PR #1441](https://github.com/stympy/faker/pull/1441) Add Faker::Job pt-BR locales [@wellingtongvs](https://github.com/wellingtongvs)
|
1303
|
-
- [PR #1428](https://github.com/stympy/faker/pull/1428) Add Faker::Games::SonicTheHedgehog.game [@boardfish](https://github.com/boardfish)
|
1304
|
-
- [PR #1415](https://github.com/stympy/faker/pull/1415) Add new Overwatch items [@lucasqueiroz](https://github.com/lucasqueiroz)
|
1305
|
-
- [PR #1407](https://github.com/stympy/faker/pull/1407) Add more data for Faker::Friends [@JIntrocaso](https://github.com/JIntrocaso)
|
1306
|
-
- [PR #1402](https://github.com/stympy/faker/pull/1402) Update heroes_of_the_storm.yml [@eddorre](https://github.com/eddorre)
|
1307
|
-
- [PR #1398](https://github.com/stympy/faker/pull/1398) Fix female_first_name and male_first_name [@vbrazo](https://github.com/vbrazo)
|
1308
|
-
- [PR #1395](https://github.com/stympy/faker/pull/1395) Add middle_name to other locales [@vbrazo](https://github.com/vbrazo)
|
1309
|
-
- [PR #1394](https://github.com/stympy/faker/pull/1394) Add name_with_middle - es locale and missing tests [@vbrazo](https://github.com/vbrazo)
|
1310
|
-
- [PR #1393](https://github.com/stympy/faker/pull/1393) Add missing pt-BR methods and locale tests [@vbrazo](https://github.com/vbrazo)
|
1311
|
-
- [PR #1392](https://github.com/stympy/faker/pull/1392) Add missing locales/methods for Faker::Name pt-BR [@heitorado](https://github.com/heitorado)
|
1312
|
-
- [PR #1391](https://github.com/stympy/faker/pull/1391) Add state abbr for Sergipe and Tocatins [@VSPPedro](https://github.com/VSPPedro)
|
1313
|
-
- [PR #1390](https://github.com/stympy/faker/pull/1390) Add more Dutch names [@EhsanZ](https://github.com/EhsanZ)
|
1314
|
-
- [PR #1386](https://github.com/stympy/faker/pull/1386) Add locale file for Arabic language and test it [@EhsanZ](https://github.com/EhsanZ)
|
1315
|
-
- [PR #1385](https://github.com/stympy/faker/pull/1385) Updated license plate by state for Brazil [@edgardmessias](https://github.com/edgardmessias)
|
1316
|
-
- [PR #1373](https://github.com/stympy/faker/pull/1373) 📝 Correct some minor spelling errors [@mermop](https://github.com/mermop)
|
1317
|
-
- [PR #1372](https://github.com/stympy/faker/pull/1372) Add space planet and galaxy for Japanese [@yizknn](https://github.com/yizknn)
|
1318
|
-
- [PR #1370](https://github.com/stympy/faker/pull/1370) Add missed comma [@7up4](https://github.com/7up4)
|
1319
|
-
- [PR #1352](https://github.com/stympy/faker/pull/1352) Add Japanese Food Sushi for Japanese and English [@yizknn](https://github.com/yizknn)
|
1320
|
-
- [PR #1343](https://github.com/stympy/faker/pull/1343) Update cell phone format to be phonelib compatible for Vietnam locale [@Looooong](https://github.com/Looooong)
|
1321
|
-
- [PR #1340](https://github.com/stympy/faker/pull/1340) Fix typos and additions for Faker::Esport [@Mayurifag](https://github.com/Mayurifag)
|
1322
|
-
- [PR #1332](https://github.com/stympy/faker/pull/1332) Fix typo in buffy.big_bads [@tragiclifestories](https://github.com/tragiclifestories)
|
1323
|
-
- [PR #1327](https://github.com/stympy/faker/pull/1327) fixed 2 quotes [@MinimumViablePerson](https://github.com/MinimumViablePerson)
|
1324
|
-
- [PR #1316](https://github.com/stympy/faker/pull/1316) Add more dishes to the menu [@bjacquet](https://github.com/bjacquet)
|
1325
|
-
|
1326
|
-
------------------------------------------------------------------------------
|
1327
|
-
## [v1.9.1](https://github.com/stympy/faker/tree/v1.9.1) (2018-07-11)
|
1328
|
-
[Full Changelog](https://github.com/stympy/faker/compare/v1.8.7...v1.9.1)
|
1329
|
-
|
1330
|
-
### Feature Request
|
1331
|
-
|
1332
|
-
- [PR #1476](https://github.com/stympy/faker/pull/1476) Add Faker::House [@jguthrie100](https://github.com/jguthrie100)
|
1333
|
-
- [PR #1308](https://github.com/stympy/faker/pull/1308) Add Faker::BojackHorseman [@saurabhudaniya200](https://github.com/saurabhudaniya200)
|
1334
|
-
- [PR #1292](https://github.com/stympy/faker/pull/1292) Add Faker::Bank - account_number and routing_number [@vbrazo](https://github.com/vbrazo)
|
1335
|
-
- [PR #1300](https://github.com/stympy/faker/pull/1300) Add Faker::GreekPhilosophers [@15ngburton](https://github.com/15ngburton)
|
1336
|
-
- [PR #1004](https://github.com/stympy/faker/pull/1004) Add Faker::Ethereum [@kaizenx](https://github.com/kaizenx)
|
1337
|
-
- [PR #551](https://github.com/stympy/faker/pull/551) Add gender to name generator [@Maicolben](https://github.com/Maicolben)
|
1338
|
-
- [PR #1283](https://github.com/stympy/faker/pull/1283) Add Faker::Military [@jjasghar](https://github.com/jjasghar)
|
1339
|
-
- [PR #1279](https://github.com/stympy/faker/pull/1279) Add Faker::HarryPotter.spell [@A9u](https://github.com/A9u)
|
1340
|
-
- [PR #799](https://github.com/stympy/faker/pull/799) Faker::ElectricalComponents [@bheim6](https://github.com/bheim6)
|
1341
|
-
- [PR #1050](https://github.com/stympy/faker/pull/1050) Add Faker::Invoice to generate valid bank slip references [@onnimonni](https://github.com/onnimonni)
|
1342
|
-
- [PR #817](https://github.com/stympy/faker/pull/817) Faker::Lorem.multibyte for multibyte chars [@frankywahl](https://github.com/frankywahl)
|
1343
|
-
- [PR #877](https://github.com/stympy/faker/pull/877) Add Canada SIN generator in Faker::Code [@gkunwar](https://github.com/gkunwar)
|
1344
|
-
- [PR #1268](https://github.com/stympy/faker/pull/1268) Add Faker::Nation.national_sport [@gkunwar](https://github.com/gkunwar)
|
1345
|
-
- [PR #1273](https://github.com/stympy/faker/pull/1273) Add Faker::Device [@vbrazo](https://github.com/vbrazo)
|
1346
|
-
- [PR #1272](https://github.com/stympy/faker/pull/1272) Add Faker::DrWho.actor [@timcustard](https://github.com/timcustard)
|
1347
|
-
- [PR #1270](https://github.com/stympy/faker/pull/1270) Add Faker::Name.middle_name [@vbrazo](https://github.com/vbrazo)
|
1348
|
-
- [PR #1266](https://github.com/stympy/faker/pull/1266) Add Faker::Science.element_symbol [@timcustard](https://github.com/timcustard)
|
1349
|
-
- [PR #1101](https://github.com/stympy/faker/pull/1101) Add Faker::Company.czech_organisation_number [@jindrichskupa](https://github.com/jindrichskupa)
|
1350
|
-
- [PR #1265](https://github.com/stympy/faker/pull/1265) Add Faker::WorldCup [@snayrouz](https://github.com/snayrouz)
|
1351
|
-
- [PR #1141](https://github.com/stympy/faker/pull/1141) Add Faker::Coffee.intensifier [@oyeanuj](https://github.com/oyeanuj)
|
1352
|
-
- [PR #1260](https://github.com/stympy/faker/pull/1260) Add Faker::Auto features to Faker::Vehicle [@mrstebo](https://github.com/mrstebo)
|
1353
|
-
- [PR #1259](https://github.com/stympy/faker/pull/1259) Add the ability to add separators to emails. [@aamarill](https://github.com/aamarill)
|
1354
|
-
- [PR #1064](https://github.com/stympy/faker/pull/1064) Add Faker::Markdown.sandwich [@russellschmidt](https://github.com/russellschmidt)
|
1355
|
-
- [PR #1222](https://github.com/stympy/faker/pull/1222) Add paragraph_by_chars functionality [@jguthrie100](https://github.com/jguthrie100)
|
1356
|
-
- [PR #1107](https://github.com/stympy/faker/pull/1107) Add tokens to Faker::Stripe [@wecohere](https://github.com/wecohere)
|
1357
|
-
- [PR #1258](https://github.com/stympy/faker/pull/1258) Remove simplecov-console and add coverage_report rake task [@vbrazo](https://github.com/vbrazo)
|
1358
|
-
- [PR #1247](https://github.com/stympy/faker/pull/1247) Generate capital city of random Nation [@gkunwar](https://github.com/gkunwar)
|
1359
|
-
- [PR #1250](https://github.com/stympy/faker/pull/1250) House appliances [@rafaelcpalmeida](https://github.com/rafaelcpalmeida)
|
1360
|
-
- [PR #1239](https://github.com/stympy/faker/pull/1239) Update Faker::Food to separate out Fruits and Veggies [@susiirwin](https://github.com/susiirwin)
|
1361
|
-
- [PR #1221](https://github.com/stympy/faker/pull/1221) Updated the Readme file with the new logo [@tobaloidee](https://github.com/tobaloidee)
|
1362
|
-
- [PR #1109](https://github.com/stympy/faker/pull/1109) Added Princess Bride [@jayphodges](https://github.com/jayphodges)
|
1363
|
-
- [PR #987](https://github.com/stympy/faker/pull/987) Add Faker::Cannabis class [@GhostGroup](https://github.com/GhostGroup)
|
1364
|
-
- [PR #1199](https://github.com/stympy/faker/pull/1199) Add Faker::StrangerThings [@Connerh92](https://github.com/Connerh92)
|
1365
|
-
- [PR #1129](https://github.com/stympy/faker/pull/1129) Added SingularSiegler quotes [@splashinn](https://github.com/splashinn)
|
1366
|
-
- [PR #1235](https://github.com/stympy/faker/pull/1235) Added Faker::Community [@vbrazo](https://github.com/vbrazo)
|
1367
|
-
- [PR #1144](https://github.com/stympy/faker/pull/1144) Added polish_register_of_national_economy and polish_taxpayer_identification_number [@rafalpetryka](https://github.com/rafalpetryka)
|
1368
|
-
- [PR #1201](https://github.com/stympy/faker/pull/1201) Adding Currency Symbol to Faker [@SaimonL](https://github.com/SaimonL)
|
1369
|
-
- [PR #1230](https://github.com/stympy/faker/pull/1230) Add Faker::SwordArtOnline [@lnchambers](https://github.com/lnchambers)
|
1370
|
-
- [PR #792](https://github.com/stympy/faker/pull/792) Add Faker::FamousLastWords [@susiirwin](https://github.com/susiirwin)
|
1371
|
-
- [PR #1174](https://github.com/stympy/faker/pull/1174) Dota API: Str Heroes, heroes quotes, Items, Teams, Players [@felipesousafs](https://github.com/darylf)
|
1372
|
-
- [PR #1220](https://github.com/stympy/faker/pull/1220) Updates for Faker::Myst [@SpyMaster356](https://github.com/SpyMaster356)
|
1373
|
-
- [PR #1218](https://github.com/stympy/faker/pull/1218) Add Faker::Myst [@SpyMaster356](https://github.com/SpyMaster356)
|
1374
|
-
- [PR #818](https://github.com/stympy/faker/pull/818) LoremFlickr support [@mrstebo](https://github.com/mrstebo)
|
1375
|
-
- [PR #1192](https://github.com/stympy/faker/pull/1192) Space: Added space launch vehicule [@gauth-ier](https://github.com/Gauth-ier)
|
1376
|
-
- [PR #1211](https://github.com/stympy/faker/pull/1211) Add bands, genres, and albums to Music [@jmkoni](https://github.com/jmkoni)
|
1377
|
-
- [PR #1215](https://github.com/stympy/faker/pull/1215) Added Nato Phonetic Alphabet [@timcustard](https://github.com/timcustard)
|
1378
|
-
- [PR #1209](https://github.com/stympy/faker/pull/1209) Add Faker::Source [@graciano](https://github.com/graciano)
|
1379
|
-
- [PR #1147](https://github.com/stympy/faker/pull/1147) Add Spanish citizen id and docs [@PuZZleDucK](https://github.com/PuZZleDucK)
|
1380
|
-
- [PR #1189](https://github.com/stympy/faker/pull/1189) Add Faker::Football [@AlexGascon](https://github.com/AlexGascon)
|
1381
|
-
- [PR #1202](https://github.com/stympy/faker/pull/1202) adds both inclusive and binary gender option [@jmkoni](https://github.com/jmkoni)
|
1382
|
-
- [PR #1193](https://github.com/stympy/faker/pull/1193) Add Faker::MichaelScott API [@snayrouz](https://github.com/snayrouz)
|
1383
|
-
- [PR #1179](https://github.com/stympy/faker/pull/1179) Random color with Placeholdit [@nicolas-brousse](https://github.com/nicolas-brousse)
|
1384
|
-
- [PR #1190](https://github.com/stympy/faker/pull/1190) Add Nation object, its specs and docs [@gkunwar](https://github.com/gkunwar)
|
1385
|
-
- [PR #1210](https://github.com/stympy/faker/pull/1210) Add coveralls [@vbrazo](https://github.com/vbrazo)
|
1386
|
-
- [PR #924](https://github.com/stympy/faker/pull/924) RuboCop + fixes [@stephengroat](https://github.com/stephengroat)
|
1387
|
-
- [PR #900](https://github.com/stympy/faker/pull/900) Add Japanese lorem words to locale [@vietqhoang](https://github.com/vietqhoang)
|
1388
|
-
|
1389
|
-
### Update/add locales
|
1390
|
-
- [PR #1297](https://github.com/stympy/faker/pull/1297) Faker::WorldCup updates [@JoaoHenriqueVale](https://github.com/JoaoHenriqueVale)
|
1391
|
-
- [PR #616](https://github.com/stympy/faker/pull/616) add german commerce translations [@weh](https://github.com/weh)
|
1392
|
-
- [PR #1281](https://github.com/stympy/faker/pull/1281) Some competitions were in the coaches array [@Eusebiotrigo](https://github.com/Eusebiotrigo)
|
1393
|
-
- [PR #1103](https://github.com/stympy/faker/pull/1103) Fix inconsistent capitalization in dishes, ingredients and spices, and some other small issues under 'food' [@evrimfeyyaz](https://github.com/evrimfeyyaz)
|
1394
|
-
- [PR #1262](https://github.com/stympy/faker/pull/1262) Add fr_CH locale [@elentras](https://github.com/elentras)
|
1395
|
-
- [PR #1261](https://github.com/stympy/faker/pull/1261) Add fr_CA locale [@elentras](https://github.com/elentras)
|
1396
|
-
- [PR #1275](https://github.com/stympy/faker/pull/1275) Fix typo; RedWine should be two words [@johnmuhl](https://github.com/johnmuhl)
|
1397
|
-
- [PR #1269](https://github.com/stympy/faker/pull/1269) Update Faker::ProgrammingLanguage.name locales [@vbrazo](https://github.com/vbrazo)
|
1398
|
-
- [PR #1140](https://github.com/stympy/faker/pull/1140) Add Estonian and Latvian locales [@maciej-szlosarczyk](https://github.com/maciej-szlosarczyk)
|
1399
|
-
- [PR #1249](https://github.com/stympy/faker/pull/1249) Update list of name prefixes for sv locale. [kamilbielawski](https://github.com/kamilbielawski)
|
1400
|
-
- [PR #1228](https://github.com/stympy/faker/pull/1228) Added Japanese color to yml [@katao](https://github.com/katao)
|
1401
|
-
- [PR #1106](https://github.com/stympy/faker/pull/1106) Adds turkish phone number formats [@zasman](https://github.com/ZASMan)
|
1402
|
-
- [PR #794](https://github.com/stympy/faker/pull/794) Adding country code + minor locale updates [@vveliev](https://github.com/vveliev)
|
1403
|
-
- [PR #439](https://github.com/stympy/faker/pull/439) Remove Eichmann surname [@jonahwh](https://github.com/jonahwh)
|
1404
|
-
- [PR #1203](https://github.com/stympy/faker/pull/1203) Finnish locale has 50 most common male, female, and last names [@Glenf](https://github.com/Glenf)
|
1405
|
-
- [PR #1183](https://github.com/stympy/faker/pull/1183) Correct the spelling of Gringotts [@rhoen](https://github.com/rhoen)
|
1406
|
-
- [PR #1236](https://github.com/stympy/faker/pull/1236) Updates dessert faker [@susiirwin](https://github.com/susiirwin)
|
1407
|
-
- [PR #1229](https://github.com/stympy/faker/pull/1229) sv.yml: Typos [@olleolleolle](https://github.com/olleolleolle)
|
1408
|
-
- [PR #1108](https://github.com/stympy/faker/pull/1108) Update Faker::Dessert [@natalietate](https://github.com/natalietate)
|
1409
|
-
- [PR #1122](https://github.com/stympy/faker/pull/1122) Fix formatting for Brazilian phone and cell phone numbers [@lucasqueiroz](https://github.com/lucasqueiroz)
|
1410
|
-
- [PR #1138](https://github.com/stympy/faker/pull/1138) Update locales - Faker::Overwatch [@tanner0101](https://github.com/tanner0101)
|
1411
|
-
- [PR #1117](https://github.com/stympy/faker/pull/1117) Added Ukrainian entries to yml [@RomanIsko](https://github.com/RomanIsko)
|
1412
|
-
|
1413
|
-
### Bug/Fixes
|
1414
|
-
- [PR #1305](https://github.com/stympy/faker/pull/1305) Fix YAML syntax - single quote escape (on vehicle.yml) [@YumaInaura](https://github.com/YumaInaura)
|
1415
|
-
- [PR #1196](https://github.com/stympy/faker/pull/1196) Fix PhoneNumber in es-MX [@drewish](https://github.com/drewish)
|
1416
|
-
- [PR #1133](https://github.com/stympy/faker/pull/1133) Fix I18n 0.9.3 compatibility [@tagliala](https://github.com/tagliala)
|
1417
|
-
- [PR #1292](https://github.com/stympy/faker/pull/1292) Fix flexible keys crashing when current locale does not provide them [@deivid-rodriguez](https://github.com/deivid-rodriguez)
|
1418
|
-
- [PR #1274](https://github.com/stympy/faker/pull/1274) Allow Faker::Address.zip_code to have leading zero [@igor-starostenko](https://github.com/igor-starostenko)
|
1419
|
-
- [PR #1241](https://github.com/stympy/faker/pull/1241) Add missing tests reported by SimpleCov [@aamarill](https://github.com/aamarill)
|
1420
|
-
- [PR #1240](https://github.com/stympy/faker/pull/1240) Add some tests [@aamarill](https://github.com/aamarill)
|
1421
|
-
- [PR #1238](https://github.com/stympy/faker/pull/1238) pluralized file to match link name in the readme [@Connerh92](https://github.com/Connerh92)
|
1422
|
-
- [PR #1232](https://github.com/stympy/faker/pull/1232) Fix file permissions [@tagliala](https://github.com/tagliala)
|
1423
|
-
- [PR #1205](https://github.com/stympy/faker/pull/1205) Show the type of field that violated a uniqueness constraint [@AndrewRayCode](https://github.com/AndrewRayCode)
|
1424
|
-
- [PR #1227](https://github.com/stympy/faker/pull/1227) Update RuboCop to 0.56.0 [@tagliala](https://github.com/tagliala)
|
1425
|
-
- [PR #1225](https://github.com/stympy/faker/pull/1225) Test against latest Ruby versions [@tagliala](https://github.com/tagliala)
|
1426
|
-
- [PR #1134](https://github.com/stympy/faker/pull/1134) Test against latest Ruby versions [@tagliala](https://github.com/tagliala)
|
1427
|
-
- [PR #1223](https://github.com/stympy/faker/pull/1223) Fix minitest warnings [@vbrazo](https://github.com/vbrazo)
|
1428
|
-
- [PR #1198](https://github.com/stympy/faker/pull/1198) Rename methods on Faker::Types to avoid shadowing ruby standard methods [@MarcPer](https://github.com/MarcPer)
|
1429
|
-
- [PR #1142](https://github.com/stympy/faker/pull/1142) Missing i18n jobs fix [@PuZZleDucK](https://github.com/PuZZleDucK)
|
1430
|
-
- [PR #1213](https://github.com/stympy/faker/pull/1213) Add missing tests after adding Coveralls [@vbrazo](https://github.com/vbrazo)
|
1431
|
-
- [PR #1212](https://github.com/stympy/faker/pull/1212) Coveralls should ignore test folder [@vbrazo](https://github.com/timcustard)
|
1432
|
-
- [PR #1181](https://github.com/stympy/faker/pull/1181) Fix: Moved the Google Omniauth key id_info from root into extra [@SirRawlins](https://github.com/SirRawlins)
|
1433
|
-
- [PR #1207](https://github.com/stympy/faker/pull/1207) use default rake task [@stephengroat](https://github.com/stephengroat)
|
1434
|
-
- [PR #1136](https://github.com/stympy/faker/pull/1136) Modify Faker::Internet.slug [@philduffen](https://github.com/philduffen)
|
1435
|
-
- [PR #1170](https://github.com/stympy/faker/pull/1170) First_name and last_name should use the parse method - :ru locale [@vbrazo](https://github.com/vbrazo)
|
1436
|
-
- [PR #1197](https://github.com/stympy/faker/pull/1197) Fixes NL postcode [@JonathanWThom](https://github.com/JonathanWThom)
|
1437
|
-
- [PR #1172](https://github.com/stympy/faker/pull/1172) Fix Fixnum reference warning [@vbrazo](https://github.com/vbrazo)
|
1438
|
-
- [PR #1173](https://github.com/stympy/faker/pull/1173) Fix tests warning [@vbrazo](https://github.com/vbrazo)
|
1439
|
-
|
1440
|
-
### Chores
|
1441
|
-
- [PR #1304](https://github.com/stympy/faker/pull/1304) Fix Faker::Source ruby language examples [@YumaInaura](https://github.com/YumaInaura)
|
1442
|
-
- [PR #1306](https://github.com/stympy/faker/pull/1306) Rename Internet#user_name to #username [@tylerhunt](https://github.com/tylerhunt)
|
1443
|
-
- [PR #1293](https://github.com/stympy/faker/pull/1293) Update RuboCop to 0.57.2 [@tagliala](https://github.com/tagliala)
|
1444
|
-
- [PR #1294](https://github.com/stympy/faker/pull/1294) Simpler requiring of test helper [@deivid-rodriguez](https://github.com/deivid-rodriguez)
|
1445
|
-
- [PR #1288](https://github.com/stympy/faker/pull/1288) rake console changes - description and contributing.md [@MarcPer](https://github.com/MarcPer)
|
1446
|
-
- [PR #719](https://github.com/stympy/faker/pull/719) Random words to add should be 0 [@swapsCAPS](https://github.com/swapsCAPS)
|
1447
|
-
|
1448
|
-
### Documentation
|
1449
|
-
- [PR #1478](https://github.com/stympy/faker/pull/1478) Fixed documentation for Faker::Internet.password [@mrstebo](https://github.com/mrstebo)
|
1450
|
-
- [PR #1453](https://github.com/stympy/faker/pull/1453) Add description to RuboCop cops [@vbrazo](https://github.com/vbrazo)
|
1451
|
-
- [PR #1121](https://github.com/stympy/faker/pull/1121) Better docs for Faker::Food.description [@jujulisan](https://github.com/jujulisan)
|
1452
|
-
- [PR #1257](https://github.com/stympy/faker/pull/1257) Fix method name in Faker::SingularSiegler [@mrstebo](https://github.com/mrstebo)
|
1453
|
-
- [PR #1256](https://github.com/stympy/faker/pull/1256) Fixing documentation - Faker::Name to Faker::Zelda [@mrstebo](https://github.com/mrstebo)
|
1454
|
-
- [PR #1254](https://github.com/stympy/faker/pull/1254) Added missing documentation. [@mrstebo](https://github.com/mrstebo)
|
1455
|
-
- [PR #1252](https://github.com/stympy/faker/pull/1252) Add missing documentation - Faker::Address to Faker::Myst [@vbrazo](https://github.com/vbrazo)
|
1456
|
-
- [PR #1248](https://github.com/stympy/faker/pull/1248) Remove duplications from company.md [@vrinek](https://github.com/vrinek)
|
1457
|
-
- [PR #1146](https://github.com/stympy/faker/pull/1146) Update company docs [@PuZZleDucK](https://github.com/PuZZleDucK)
|
1458
|
-
- [PR #974](https://github.com/stympy/faker/pull/974) Specify version number each class was introduced [@darylf](https://github.com/darylf)
|
1459
|
-
- [PR #1128](https://github.com/stympy/faker/pull/1128) Use ruby syntax highlighting in Omniauth doc [@swrobel](https://github.com/swrobel)
|
1460
|
-
- [PR #1204](https://github.com/stympy/faker/pull/1204) Update sample output of `Faker::App.version` [@joshuapinter](https://github.com/joshuapinter)
|
1461
|
-
- [PR #1135](https://github.com/stympy/faker/pull/1135) Added documentation for dumb and dumber [@cnharris10](https://github.com/cnharris10)
|
1462
|
-
- [PR #1177](https://github.com/stympy/faker/pull/1177) Update Faker::Number.between docs [@SpyMaster356](https://github.com/SpyMaster356)
|
1463
|
-
- [PR #1124](https://github.com/stympy/faker/pull/1124) Fix ranges for Brazilian zip codes [@lucasqueiroz](https://github.com/lucasqueiroz)
|
1464
|
-
- New collaborator - Vitor Oliveira [@vbrazo](https://github.com/vbrazo)
|
1465
|
-
|
1466
|
-
### Deprecation
|
1467
|
-
- [PR #1264](https://github.com/stympy/faker/pull/1264) Prepare Faker::Name.job_titles and Faker::Name.title for deprecation
|
1468
|
-
- Removing these methods as they are available in `Faker::Job`
|
1469
|
-
|
1470
|
-
## [v1.8.7](https://github.com/stympy/faker/tree/v1.8.7) (2017-12-22)
|
1471
|
-
[Full Changelog](https://github.com/stympy/faker/compare/v1.8.6...v1.8.7)
|
1472
|
-
|
1473
|
-
**Additions**
|
1474
|
-
|
1475
|
-
- Faker::Company.type
|
1476
|
-
- Faker::Job.education_level and Faker::Job.employment_type
|
1477
|
-
- More characters and quotes for Seinfeld
|
1478
|
-
|
1479
|
-
**Fixes**
|
1480
|
-
|
1481
|
-
- Revert a change in 1.8.5 that caused Star Wars methods to return a
|
1482
|
-
single string rather than an array (#1093)
|
1483
|
-
|
1484
|
-
## [v1.8.6](https://github.com/stympy/faker/tree/v1.8.6) (2017-12-21)
|
1485
|
-
[Full Changelog](https://github.com/stympy/faker/compare/v1.8.5...v1.8.6)
|
1486
|
-
|
1487
|
-
**Additions**
|
1488
|
-
|
1489
|
-
- Faker::App.semantic_version
|
1490
|
-
- Faker::Types
|
1491
|
-
- New methods in Faker::StarWars: call_squadron, call_sign, call_number
|
1492
|
-
|
1493
|
-
**Other changes**
|
1494
|
-
|
1495
|
-
- Changed i18n depedency from `~> 0.9.1` to `>= 0.7`
|
1496
|
-
|
1497
|
-
## [v1.8.5](https://github.com/stympy/faker/tree/v1.8.5) (2017-12-06)
|
1498
|
-
[Full Changelog](https://github.com/stympy/faker/compare/v1.8.4...v1.8.5)
|
1499
|
-
|
1500
|
-
**Closed issues:**
|
1501
|
-
|
1502
|
-
- The latest version does not contain Faker::ProgarmmingLanguage, but the documentation said it does. [\#1083](https://github.com/stympy/faker/issues/1083)
|
1503
|
-
- undefined method `initials' for Faker::Name:Class [\#1076](https://github.com/stympy/faker/issues/1076)
|
1504
|
-
- Undefined method `dish' for Faker::Food:Class [\#1038](https://github.com/stympy/faker/issues/1038)
|
1505
|
-
- Need Silicon Valley [\#1026](https://github.com/stympy/faker/issues/1026)
|
1506
|
-
- Would it be possible to tie quotes to characters? [\#1011](https://github.com/stympy/faker/issues/1011)
|
1507
|
-
- Generated phone numbers dont seem to be valid. [\#1010](https://github.com/stympy/faker/issues/1010)
|
1508
|
-
- Faker::RickAndMorty not supported in 1.7.3 [\#988](https://github.com/stympy/faker/issues/988)
|
1509
|
-
- Weird crash with Faker 1.8.3 [\#982](https://github.com/stympy/faker/issues/982)
|
1510
|
-
- Faker::PhoneNumber.cell\_phone not enforcing locale [\#499](https://github.com/stympy/faker/issues/499)
|
1511
|
-
- https url scheme [\#459](https://github.com/stympy/faker/issues/459)
|
1512
|
-
- New feature: Google video and image searching [\#306](https://github.com/stympy/faker/issues/306)
|
1513
|
-
- The array extension method :sample throw an argument error when the array is empty [\#94](https://github.com/stympy/faker/issues/94)
|
1514
|
-
- phone\_number can generate invalid US numbers [\#24](https://github.com/stympy/faker/issues/24)
|
1515
|
-
|
1516
|
-
**Merged pull requests:**
|
1517
|
-
|
1518
|
-
- Fixes a few typos in names and deletes a duplicate [\#1084](https://github.com/stympy/faker/pull/1084) ([katelovescode](https://github.com/katelovescode))
|
1519
|
-
- Fix Faker::Dog and add tests [\#1082](https://github.com/stympy/faker/pull/1082) ([wtanna](https://github.com/wtanna))
|
1520
|
-
- Remove broken example from README [\#1081](https://github.com/stympy/faker/pull/1081) ([dentarg](https://github.com/dentarg))
|
1521
|
-
- Remove problematic char from German street roots [\#1080](https://github.com/stympy/faker/pull/1080) ([Kjir](https://github.com/Kjir))
|
1522
|
-
- Add Faker::VForVendetta [\#1073](https://github.com/stympy/faker/pull/1073) ([backpackerhh](https://github.com/backpackerhh))
|
1523
|
-
- Fixes typos, removes a duplicate [\#1072](https://github.com/stympy/faker/pull/1072) ([katelovescode](https://github.com/katelovescode))
|
1524
|
-
- "Flint\s\sof the mountains" ==\> "Flint\sof the mountains" [\#1071](https://github.com/stympy/faker/pull/1071) ([seanwedig](https://github.com/seanwedig))
|
1525
|
-
- add ru\_chars to Char [\#1070](https://github.com/stympy/faker/pull/1070) ([startaper](https://github.com/startaper))
|
1526
|
-
- Updated documentation to match correct methods [\#1069](https://github.com/stympy/faker/pull/1069) ([LasseSviland](https://github.com/LasseSviland))
|
1527
|
-
- Add the @flexible\_key value to the Vehicle Class [\#1067](https://github.com/stympy/faker/pull/1067) ([agustin](https://github.com/agustin))
|
1528
|
-
- kpop [\#1066](https://github.com/stympy/faker/pull/1066) ([j0shuachen](https://github.com/j0shuachen))
|
1529
|
-
- Change git URL to use https instead git protocol [\#1065](https://github.com/stympy/faker/pull/1065) ([buncismamen](https://github.com/buncismamen))
|
1530
|
-
- Add more quotes to the silicon valley yml file to provide more variety [\#1060](https://github.com/stympy/faker/pull/1060) ([danielwheeler1987](https://github.com/danielwheeler1987))
|
1531
|
-
- change korean postcode format [\#1058](https://github.com/stympy/faker/pull/1058) ([sunghyuk](https://github.com/sunghyuk))
|
1532
|
-
- Breaking bad [\#1056](https://github.com/stympy/faker/pull/1056) ([danilobarion1986](https://github.com/danilobarion1986))
|
1533
|
-
- Star wars quotes [\#1054](https://github.com/stympy/faker/pull/1054) ([russellschmidt](https://github.com/russellschmidt))
|
1534
|
-
- Dune and Potential Solution to Issue 1011 [\#1051](https://github.com/stympy/faker/pull/1051) ([russellschmidt](https://github.com/russellschmidt))
|
1535
|
-
- add Malaysia's commercials and islamics bank [\#1045](https://github.com/stympy/faker/pull/1045) ([sanik90](https://github.com/sanik90))
|
1536
|
-
- organize and add star wars data [\#1043](https://github.com/stympy/faker/pull/1043) ([tjchecketts](https://github.com/tjchecketts))
|
1537
|
-
- Fix usage document [\#1040](https://github.com/stympy/faker/pull/1040) ([sashiyama](https://github.com/sashiyama))
|
1538
|
-
- introduce Aqua Teen Hunger Force characters [\#1037](https://github.com/stympy/faker/pull/1037) ([ethagnawl](https://github.com/ethagnawl))
|
1539
|
-
- added 1 hero, 2 locations and 2 quotes [\#1016](https://github.com/stympy/faker/pull/1016) ([murog](https://github.com/murog))
|
1540
|
-
- Fix usage document. [\#1013](https://github.com/stympy/faker/pull/1013) ([n0h0](https://github.com/n0h0))
|
1541
|
-
- Add dumb and dumber class [\#1008](https://github.com/stympy/faker/pull/1008) ([cnharris10](https://github.com/cnharris10))
|
1542
|
-
- Update Russian resources [\#1002](https://github.com/stympy/faker/pull/1002) ([edubenetskiy](https://github.com/edubenetskiy))
|
1543
|
-
- Add more Seinfeld characters [\#1001](https://github.com/stympy/faker/pull/1001) ([gregeinfrank](https://github.com/gregeinfrank))
|
1544
|
-
- Adds Faker::OnePiece [\#998](https://github.com/stympy/faker/pull/998) ([Leohige](https://github.com/Leohige))
|
1545
|
-
- Stargate [\#997](https://github.com/stympy/faker/pull/997) ([katymccloskey](https://github.com/katymccloskey))
|
1546
|
-
- Tells users how to handle uninitialized constant error [\#995](https://github.com/stympy/faker/pull/995) ([jwpincus](https://github.com/jwpincus))
|
1547
|
-
- Renamed word\_of\_warcraft to world\_of\_warcraft [\#994](https://github.com/stympy/faker/pull/994) ([Ranhiru](https://github.com/Ranhiru))
|
1548
|
-
- Add default\_country for Japan and Korea [\#990](https://github.com/stympy/faker/pull/990) ([Mangoov](https://github.com/Mangoov))
|
1549
|
-
- Fix typo in de.yml [\#986](https://github.com/stympy/faker/pull/986) ([IngoAlbers](https://github.com/IngoAlbers))
|
1550
|
-
- Add pt-BR translate [\#985](https://github.com/stympy/faker/pull/985) ([marcosvpcortes](https://github.com/marcosvpcortes))
|
1551
|
-
- Fix for NL postal code [\#984](https://github.com/stympy/faker/pull/984) ([petrosg](https://github.com/petrosg))
|
1552
|
-
- French traduction for Faker::Pokemon [\#983](https://github.com/stympy/faker/pull/983) ([Dakurei](https://github.com/Dakurei))
|
1553
|
-
- Added material to the Commerce docs. [\#903](https://github.com/stympy/faker/pull/903) ([mrstebo](https://github.com/mrstebo))
|
1554
|
-
- Added Spanish Organization Number [\#897](https://github.com/stympy/faker/pull/897) ([cmunozgar](https://github.com/cmunozgar))
|
1555
|
-
|
1556
|
-
## [v1.8.4](https://github.com/stympy/faker/tree/v1.8.4) (2017-07-13)
|
1557
|
-
[Full Changelog](https://github.com/stympy/faker/compare/v1.8.3...v1.8.4)
|
1558
|
-
|
1559
|
-
**Merged pull requests:**
|
1560
|
-
|
1561
|
-
- Remove errant tab character in YAML [\#981](https://github.com/stympy/faker/pull/981) ([steveh](https://github.com/steveh))
|
1562
|
-
|
1563
|
-
## [v1.8.3](https://github.com/stympy/faker/tree/v1.8.3) (2017-07-12)
|
1564
|
-
[Full Changelog](https://github.com/stympy/faker/compare/v1.8.2...v1.8.3)
|
1565
|
-
|
1566
|
-
**Closed issues:**
|
1567
|
-
|
1568
|
-
- Can't pass zero \(0\) to the default rand method \(Faker override\) [\#976](https://github.com/stympy/faker/issues/976)
|
1569
|
-
- Add Faker::Address.mailing\_address [\#841](https://github.com/stympy/faker/issues/841)
|
1570
|
-
|
1571
|
-
**Merged pull requests:**
|
1572
|
-
|
1573
|
-
- Fix tests warnings [\#979](https://github.com/stympy/faker/pull/979) ([gssbzn](https://github.com/gssbzn))
|
1574
|
-
- \[\#976\] Handles zero as max for rand [\#978](https://github.com/stympy/faker/pull/978) ([gssbzn](https://github.com/gssbzn))
|
1575
|
-
- Fix spelling of Wookiee [\#977](https://github.com/stympy/faker/pull/977) ([miloprice](https://github.com/miloprice))
|
1576
|
-
- Faker: Umphreys mcgee [\#942](https://github.com/stympy/faker/pull/942) ([Ryanspink1](https://github.com/Ryanspink1))
|
1577
|
-
- Faker: Venture bros [\#940](https://github.com/stympy/faker/pull/940) ([Ryanspink1](https://github.com/Ryanspink1))
|
1578
|
-
- seinfeld faker [\#936](https://github.com/stympy/faker/pull/936) ([cews7](https://github.com/cews7))
|
1579
|
-
- elder scrolls faker [\#933](https://github.com/stympy/faker/pull/933) ([CjMoore](https://github.com/CjMoore))
|
1580
|
-
- Add greek\_organization method to University Faker [\#932](https://github.com/stympy/faker/pull/932) ([andrewdwooten](https://github.com/andrewdwooten))
|
1581
|
-
- add Hogwarts and Ilvermorny houses to Harry Potter faker [\#925](https://github.com/stympy/faker/pull/925) ([samanthamorco](https://github.com/samanthamorco))
|
1582
|
-
|
1583
|
-
## [v1.8.2](https://github.com/stympy/faker/tree/v1.8.2) (2017-07-11)
|
1584
|
-
[Full Changelog](https://github.com/stympy/faker/compare/v1.8.1...v1.8.2)
|
1585
|
-
|
1586
|
-
**Closed issues:**
|
1587
|
-
|
1588
|
-
- Cannot require 'faker' after update to 1.8.1 [\#975](https://github.com/stympy/faker/issues/975)
|
1589
|
-
- NoMethodError: super: no superclass method `between' for Faker::Time:Class [\#973](https://github.com/stympy/faker/issues/973)
|
1590
|
-
|
1591
|
-
## [v1.8.1](https://github.com/stympy/faker/tree/v1.8.1) (2017-07-10)
|
1592
|
-
[Full Changelog](https://github.com/stympy/faker/compare/v1.8.0...v1.8.1)
|
1593
|
-
|
1594
|
-
**Closed issues:**
|
1595
|
-
|
1596
|
-
- Faker::Internet.domain\_word == "" [\#956](https://github.com/stympy/faker/issues/956)
|
1597
|
-
- Faker::Coffee [\#935](https://github.com/stympy/faker/issues/935)
|
1598
|
-
- Internet password method sometimes doesn't include special chars [\#927](https://github.com/stympy/faker/issues/927)
|
1599
|
-
- Faker HowIMet [\#917](https://github.com/stympy/faker/issues/917)
|
1600
|
-
- NoMethodError: super: no superclass method `backward' for Faker::Time:Class [\#915](https://github.com/stympy/faker/issues/915)
|
1601
|
-
- Faker 1.8 release [\#906](https://github.com/stympy/faker/issues/906)
|
1602
|
-
- Material missing in Faker::Commerce documentation [\#901](https://github.com/stympy/faker/issues/901)
|
1603
|
-
- Tests fail that have nothing to do with my changes. What should I do? [\#864](https://github.com/stympy/faker/issues/864)
|
1604
|
-
- uninitialized constant Faker::RuPaul [\#856](https://github.com/stympy/faker/issues/856)
|
1605
|
-
- Faker::Internet.domain\_word returns empty string [\#843](https://github.com/stympy/faker/issues/843)
|
1606
|
-
- unitilialized constant Faker::Demographic [\#812](https://github.com/stympy/faker/issues/812)
|
1607
|
-
|
1608
|
-
**Merged pull requests:**
|
1609
|
-
|
1610
|
-
- Fix Address.community documentation [\#972](https://github.com/stympy/faker/pull/972) ([landongrindheim](https://github.com/landongrindheim))
|
1611
|
-
- edit superclass [\#971](https://github.com/stympy/faker/pull/971) ([iz4blue](https://github.com/iz4blue))
|
1612
|
-
- adding important data for hipster to en.yml [\#946](https://github.com/stympy/faker/pull/946) ([dbwest](https://github.com/dbwest))
|
1613
|
-
- Locale: update zh-CN cell phone formats [\#934](https://github.com/stympy/faker/pull/934) ([liluo](https://github.com/liluo))
|
1614
|
-
- Fixing special chars addition in passwords. [\#926](https://github.com/stympy/faker/pull/926) ([allam-matsubara](https://github.com/allam-matsubara))
|
1615
|
-
- Update commerce documentation [\#907](https://github.com/stympy/faker/pull/907) ([dv2](https://github.com/dv2))
|
1616
|
-
|
1617
|
-
## [v1.8.0](https://github.com/stympy/faker/tree/v1.8.0) (2017-07-09)
|
1618
|
-
[Full Changelog](https://github.com/stympy/faker/compare/v1.7.3...v1.8.0)
|
1619
|
-
|
1620
|
-
**Closed issues:**
|
1621
|
-
|
1622
|
-
- Zelda Location [\#968](https://github.com/stympy/faker/issues/968)
|
1623
|
-
- Real passwords / passphrases [\#962](https://github.com/stympy/faker/issues/962)
|
1624
|
-
- Generating fake link \[Feature Request\] [\#955](https://github.com/stympy/faker/issues/955)
|
1625
|
-
- Clean-up Robin's "Holy Steam Valve" quote [\#948](https://github.com/stympy/faker/issues/948)
|
1626
|
-
- Faker::Time.between produces times out of range [\#894](https://github.com/stympy/faker/issues/894)
|
1627
|
-
- \[Feature Request\] Add User Agent strings [\#880](https://github.com/stympy/faker/issues/880)
|
1628
|
-
- Faker::Omniauth is not deterministic and breaking the build [\#876](https://github.com/stympy/faker/issues/876)
|
1629
|
-
- undefined method `name =' or undefined method ` =' [\#871](https://github.com/stympy/faker/issues/871)
|
1630
|
-
- Faker::French Suggestion [\#869](https://github.com/stympy/faker/issues/869)
|
1631
|
-
- Documentation not correct for Faker::Color.hsl\_color and hsla\_color [\#866](https://github.com/stympy/faker/issues/866)
|
1632
|
-
- Faker::PhoneNumber.area\_code and .exchange\_code returning nil [\#861](https://github.com/stympy/faker/issues/861)
|
1633
|
-
- Faker::RickAndMorty not available in v1.7.3 from RubyGems [\#851](https://github.com/stympy/faker/issues/851)
|
1634
|
-
- Adding Faker to Create in controller, possible? [\#842](https://github.com/stympy/faker/issues/842)
|
1635
|
-
- Faker 1.7.3 uses Ruby 2 features [\#825](https://github.com/stympy/faker/issues/825)
|
1636
|
-
- Fillmurry = error [\#823](https://github.com/stympy/faker/issues/823)
|
1637
|
-
- Base\#numerify generating phone numbers and other number fields with a weird format [\#741](https://github.com/stympy/faker/issues/741)
|
1638
|
-
- Markdown/HTML Support [\#630](https://github.com/stympy/faker/issues/630)
|
1639
|
-
- Update WIKI and clean README [\#588](https://github.com/stympy/faker/issues/588)
|
1640
|
-
- Can't overwrite locale elements using the .yml file [\#424](https://github.com/stympy/faker/issues/424)
|
1641
|
-
- Faker::Lorem.paragraph raises I18n::MissingTranslationData without manual locale override [\#278](https://github.com/stympy/faker/issues/278)
|
1642
|
-
- Generate unique values [\#251](https://github.com/stympy/faker/issues/251)
|
1643
|
-
|
1644
|
-
**Merged pull requests:**
|
1645
|
-
|
1646
|
-
- Add Faker::Address.community [\#969](https://github.com/stympy/faker/pull/969) ([landongrindheim](https://github.com/landongrindheim))
|
1647
|
-
- Added Faker::Food.dish [\#967](https://github.com/stympy/faker/pull/967) ([aomega08](https://github.com/aomega08))
|
1648
|
-
- Add translations for Malaysia [\#965](https://github.com/stympy/faker/pull/965) ([alienxp03](https://github.com/alienxp03))
|
1649
|
-
- Adds some new dutch names to the locales [\#961](https://github.com/stympy/faker/pull/961) ([stefanvermaas](https://github.com/stefanvermaas))
|
1650
|
-
- French traduction for Faker::Pokemon [\#960](https://github.com/stympy/faker/pull/960) ([Dakurei](https://github.com/Dakurei))
|
1651
|
-
- Add characters to the RickAndMorty database [\#958](https://github.com/stympy/faker/pull/958) ([roninCode](https://github.com/roninCode))
|
1652
|
-
- \[Resolved\] Internet domain word issue [\#957](https://github.com/stympy/faker/pull/957) ([SagareGanesh](https://github.com/SagareGanesh))
|
1653
|
-
- Pokemon\#moves [\#954](https://github.com/stympy/faker/pull/954) ([joel-g](https://github.com/joel-g))
|
1654
|
-
- Remove extraneous text from Robin quote [\#953](https://github.com/stympy/faker/pull/953) ([jsteel](https://github.com/jsteel))
|
1655
|
-
- Added Simpsons. [\#950](https://github.com/stympy/faker/pull/950) ([RaimundHuebel](https://github.com/RaimundHuebel))
|
1656
|
-
- add default task test for rake [\#923](https://github.com/stympy/faker/pull/923) ([stephengroat](https://github.com/stephengroat))
|
1657
|
-
- Use the latest Rubies on Travis CI [\#920](https://github.com/stympy/faker/pull/920) ([hisas](https://github.com/hisas))
|
1658
|
-
- Add meaningful error message when country code not found [\#916](https://github.com/stympy/faker/pull/916) ([mrstebo](https://github.com/mrstebo))
|
1659
|
-
- Add Faker::HitchhikersGuideToTheGalaxy [\#914](https://github.com/stympy/faker/pull/914) ([pedroCervi](https://github.com/pedroCervi))
|
1660
|
-
- Add Funny Name [\#912](https://github.com/stympy/faker/pull/912) ([jsonreeder](https://github.com/jsonreeder))
|
1661
|
-
- Fix pt-BR city suffix [\#896](https://github.com/stympy/faker/pull/896) ([marcelo-leal](https://github.com/marcelo-leal))
|
1662
|
-
- Adds League of Legends summoner spells, masteries and rank [\#892](https://github.com/stympy/faker/pull/892) ([DonkeyFish456](https://github.com/DonkeyFish456))
|
1663
|
-
- fix typo in test file [\#890](https://github.com/stympy/faker/pull/890) ([akintner](https://github.com/akintner))
|
1664
|
-
- Hobbit characters, locations, & quotes [\#889](https://github.com/stympy/faker/pull/889) ([ski-climb](https://github.com/ski-climb))
|
1665
|
-
- Added Omniauth Github faker [\#888](https://github.com/stympy/faker/pull/888) ([ahmed-taj](https://github.com/ahmed-taj))
|
1666
|
-
- Add locations to Faker::Zelda [\#885](https://github.com/stympy/faker/pull/885) ([thejonanshow](https://github.com/thejonanshow))
|
1667
|
-
- add all setup and files for star trek faker [\#884](https://github.com/stympy/faker/pull/884) ([akintner](https://github.com/akintner))
|
1668
|
-
- improve german cell phone numbers [\#882](https://github.com/stympy/faker/pull/882) ([timoschilling](https://github.com/timoschilling))
|
1669
|
-
- Add How I Met Your Mother [\#879](https://github.com/stympy/faker/pull/879) ([jdconrad89](https://github.com/jdconrad89))
|
1670
|
-
- Add League of Legends [\#878](https://github.com/stympy/faker/pull/878) ([Dpalazzari](https://github.com/Dpalazzari))
|
1671
|
-
- Add Faker::Robin [\#868](https://github.com/stympy/faker/pull/868) ([leanucci](https://github.com/leanucci))
|
1672
|
-
- Fixed hsla and hsla\_color documentation. [\#867](https://github.com/stympy/faker/pull/867) ([mrstebo](https://github.com/mrstebo))
|
1673
|
-
- Add links to doc in README [\#865](https://github.com/stympy/faker/pull/865) ([taleh007](https://github.com/taleh007))
|
1674
|
-
- Added bg locale [\#858](https://github.com/stympy/faker/pull/858) ([ppopov1357](https://github.com/ppopov1357))
|
1675
|
-
- Add Faker::Overwatch [\#857](https://github.com/stympy/faker/pull/857) ([tomdracz](https://github.com/tomdracz))
|
1676
|
-
- Add Faker::HeyArnold [\#855](https://github.com/stympy/faker/pull/855) ([MatthewDG](https://github.com/MatthewDG))
|
1677
|
-
- Fix India Postal Code format [\#853](https://github.com/stympy/faker/pull/853) ([dv2](https://github.com/dv2))
|
1678
|
-
- Fix typo in music.md [\#852](https://github.com/stympy/faker/pull/852) ([martinbjeldbak](https://github.com/martinbjeldbak))
|
1679
|
-
- Fixed regex pattern in TestLocale::test\_regex. [\#849](https://github.com/stympy/faker/pull/849) ([karlwilbur](https://github.com/karlwilbur))
|
1680
|
-
- Faker::Compass [\#848](https://github.com/stympy/faker/pull/848) ([karlwilbur](https://github.com/karlwilbur))
|
1681
|
-
- en.yml: demographic, demonym: add missing double quote before Fijian [\#847](https://github.com/stympy/faker/pull/847) ([PascalSchumacher](https://github.com/PascalSchumacher))
|
1682
|
-
- Update Zelda with Breath of the Wild [\#846](https://github.com/stympy/faker/pull/846) ([lauramosher](https://github.com/lauramosher))
|
1683
|
-
- add RuPaul quotes [\#845](https://github.com/stympy/faker/pull/845) ([raphaeleidus](https://github.com/raphaeleidus))
|
1684
|
-
- Add example for Faker::Date.birthday [\#844](https://github.com/stympy/faker/pull/844) ([janpieper](https://github.com/janpieper))
|
1685
|
-
- Adds Coffee [\#840](https://github.com/stympy/faker/pull/840) ([nathanjh](https://github.com/nathanjh))
|
1686
|
-
- WIP add dragon ball characters to faker [\#839](https://github.com/stympy/faker/pull/839) ([Cdunagan05](https://github.com/Cdunagan05))
|
1687
|
-
- Update README.md [\#836](https://github.com/stympy/faker/pull/836) ([jbkimble](https://github.com/jbkimble))
|
1688
|
-
- Truncate Twitter screen\_name length [\#834](https://github.com/stympy/faker/pull/834) ([abraham](https://github.com/abraham))
|
1689
|
-
- Improve Faker::Twitter compatibility [\#831](https://github.com/stympy/faker/pull/831) ([abraham](https://github.com/abraham))
|
1690
|
-
- doc: Add Internet.name length optional arguments [\#830](https://github.com/stympy/faker/pull/830) ([li-xinyang](https://github.com/li-xinyang))
|
1691
|
-
- Matz [\#829](https://github.com/stympy/faker/pull/829) ([denys281](https://github.com/denys281))
|
1692
|
-
- Add norwegian organization number [\#827](https://github.com/stympy/faker/pull/827) ([leifcr](https://github.com/leifcr))
|
1693
|
-
- \[Resolved\] Fillmurray image Fixnum match issue [\#824](https://github.com/stympy/faker/pull/824) ([SagareGanesh](https://github.com/SagareGanesh))
|
1694
|
-
- Rick and morty [\#821](https://github.com/stympy/faker/pull/821) ([JessCodes](https://github.com/JessCodes))
|
1695
|
-
- Fix i18n file load issue [\#811](https://github.com/stympy/faker/pull/811) ([jacknoble](https://github.com/jacknoble))
|
1696
|
-
- Create a Dessert faker [\#791](https://github.com/stympy/faker/pull/791) ([susiirwin](https://github.com/susiirwin))
|
1697
|
-
|
1698
|
-
## [v1.7.3](https://github.com/stympy/faker/tree/v1.7.3) (2017-02-05)
|
1699
|
-
[Full Changelog](https://github.com/stympy/faker/compare/v1.7.2...v1.7.3)
|
1700
|
-
|
1701
|
-
**Closed issues:**
|
1702
|
-
|
1703
|
-
- Creates invalid UK postcodes [\#790](https://github.com/stympy/faker/issues/790)
|
1704
|
-
- remove first name Adolf [\#788](https://github.com/stympy/faker/issues/788)
|
1705
|
-
- Config for adding format restriction. [\#695](https://github.com/stympy/faker/issues/695)
|
1706
|
-
- How to avoid special characters in faker string field [\#615](https://github.com/stympy/faker/issues/615)
|
1707
|
-
- Add Demographic Data [\#585](https://github.com/stympy/faker/issues/585)
|
1708
|
-
- OmniAuth ready responses [\#507](https://github.com/stympy/faker/issues/507)
|
1709
|
-
- US Zip Codes Sometimes Returns Non-Actual Zip Codes [\#275](https://github.com/stympy/faker/issues/275)
|
1710
|
-
|
1711
|
-
**Merged pull requests:**
|
1712
|
-
|
1713
|
-
- Harry Potter [\#820](https://github.com/stympy/faker/pull/820) ([jaclynjessup](https://github.com/jaclynjessup))
|
1714
|
-
- Update readme [\#819](https://github.com/stympy/faker/pull/819) ([ktrant84](https://github.com/ktrant84))
|
1715
|
-
- en.yml: Typo Golum -\> Gollum [\#816](https://github.com/stympy/faker/pull/816) ([jtibbertsma](https://github.com/jtibbertsma))
|
1716
|
-
- Add Faker::Twitter [\#815](https://github.com/stympy/faker/pull/815) ([abraham](https://github.com/abraham))
|
1717
|
-
- Fixed Validity of UK postcodes [\#814](https://github.com/stympy/faker/pull/814) ([darkstego](https://github.com/darkstego))
|
1718
|
-
- Fixed russian locale [\#813](https://github.com/stympy/faker/pull/813) ([fobo66](https://github.com/fobo66))
|
1719
|
-
- Allow unique values to be cleared [\#810](https://github.com/stympy/faker/pull/810) ([dslh](https://github.com/dslh))
|
1720
|
-
- Friends info [\#808](https://github.com/stympy/faker/pull/808) ([ktrant84](https://github.com/ktrant84))
|
1721
|
-
- Update superhero.md [\#805](https://github.com/stympy/faker/pull/805) ([vitaliy-fry](https://github.com/vitaliy-fry))
|
1722
|
-
- adds Zelda [\#800](https://github.com/stympy/faker/pull/800) ([audy](https://github.com/audy))
|
1723
|
-
- Remove the word 'fap' [\#798](https://github.com/stympy/faker/pull/798) ([probablycorey](https://github.com/probablycorey))
|
1724
|
-
- en.yml: fix typo in demographic race [\#797](https://github.com/stympy/faker/pull/797) ([PascalSchumacher](https://github.com/PascalSchumacher))
|
1725
|
-
- Adds Faker::Demographic [\#796](https://github.com/stympy/faker/pull/796) ([baron816](https://github.com/baron816))
|
1726
|
-
- Typofix: nfinite -\> Infinite [\#795](https://github.com/stympy/faker/pull/795) ([mgold](https://github.com/mgold))
|
1727
|
-
- Update output for zip functions [\#787](https://github.com/stympy/faker/pull/787) ([yovasx2](https://github.com/yovasx2))
|
1728
|
-
- doc fix job.md [\#786](https://github.com/stympy/faker/pull/786) ([ieldanr](https://github.com/ieldanr))
|
1729
|
-
- Refactors code in some Faker basic classes [\#785](https://github.com/stympy/faker/pull/785) ([tiagofsilva](https://github.com/tiagofsilva))
|
1730
|
-
|
1731
|
-
## [v1.7.2](https://github.com/stympy/faker/tree/v1.7.2) (2017-01-03)
|
1732
|
-
[Full Changelog](https://github.com/stympy/faker/compare/v1.7.1...v1.7.2)
|
1733
|
-
|
1734
|
-
**Closed issues:**
|
1735
|
-
|
1736
|
-
- Faker::Avatar error: read server certificate B: certificate verify failed [\#763](https://github.com/stympy/faker/issues/763)
|
1737
|
-
- assert Faker::Internet.email.match\(/.+@\[^.\].+\.\w+/\) fails randomly [\#737](https://github.com/stympy/faker/issues/737)
|
1738
|
-
- Incorrect HSL color format [\#728](https://github.com/stympy/faker/issues/728)
|
1739
|
-
- Can we add the \#Hacktoberfest label for pull requests this month [\#717](https://github.com/stympy/faker/issues/717)
|
1740
|
-
- Faker::Boolean.boolean error [\#714](https://github.com/stympy/faker/issues/714)
|
1741
|
-
- Faker::Food not found [\#688](https://github.com/stympy/faker/issues/688)
|
1742
|
-
- Fix seed for random values [\#684](https://github.com/stympy/faker/issues/684)
|
1743
|
-
- README alphabetical order of Usage [\#660](https://github.com/stympy/faker/issues/660)
|
1744
|
-
- At which point do we break off functionality? [\#653](https://github.com/stympy/faker/issues/653)
|
1745
|
-
- Time zone abbreviation [\#631](https://github.com/stympy/faker/issues/631)
|
1746
|
-
- ruby 2.3.1 rails 5 [\#627](https://github.com/stympy/faker/issues/627)
|
1747
|
-
- Faker::Time::between doesn't respect requested period [\#526](https://github.com/stympy/faker/issues/526)
|
1748
|
-
|
1749
|
-
**Merged pull requests:**
|
1750
|
-
|
1751
|
-
- IPv4: private and reserved [\#784](https://github.com/stympy/faker/pull/784) ([randoum](https://github.com/randoum))
|
1752
|
-
- Update bank method [\#783](https://github.com/stympy/faker/pull/783) ([swapnilchincholkar](https://github.com/swapnilchincholkar))
|
1753
|
-
- Refactors code in some base classes [\#782](https://github.com/stympy/faker/pull/782) ([tiagofsilva](https://github.com/tiagofsilva))
|
1754
|
-
- Refactors code in some base classes [\#781](https://github.com/stympy/faker/pull/781) ([tiagofsilva](https://github.com/tiagofsilva))
|
1755
|
-
- Refute blank [\#707](https://github.com/stympy/faker/pull/707) ([SherSpock](https://github.com/SherSpock))
|
1756
|
-
|
1757
|
-
## [v1.7.1](https://github.com/stympy/faker/tree/v1.7.1) (2016-12-25)
|
1758
|
-
[Full Changelog](https://github.com/stympy/faker/compare/v1.7.0...v1.7.1)
|
1759
|
-
|
1760
|
-
**Closed issues:**
|
1761
|
-
|
1762
|
-
- Getting "Segmentation fault: 11" when I upgrade last 3 repos to faker 1.7.0 [\#780](https://github.com/stympy/faker/issues/780)
|
1763
|
-
- New release? [\#767](https://github.com/stympy/faker/issues/767)
|
1764
|
-
|
1765
|
-
**Merged pull requests:**
|
1766
|
-
|
1767
|
-
- Added Faker::Fillmurray hotlink to usages list [\#779](https://github.com/stympy/faker/pull/779) ([Jedeu](https://github.com/Jedeu))
|
1768
|
-
|
1769
|
-
## [v1.7.0](https://github.com/stympy/faker/tree/v1.7.0) (2016-12-24)
|
1770
|
-
[Full Changelog](https://github.com/stympy/faker/compare/v1.6.6...v1.7.0)
|
1771
|
-
|
1772
|
-
**Closed issues:**
|
1773
|
-
|
1774
|
-
- Alphanumeric password. [\#773](https://github.com/stympy/faker/issues/773)
|
1775
|
-
- Unique method is undefined [\#771](https://github.com/stympy/faker/issues/771)
|
1776
|
-
- Request: Human faces? [\#756](https://github.com/stympy/faker/issues/756)
|
1777
|
-
- Faker for images not working [\#738](https://github.com/stympy/faker/issues/738)
|
1778
|
-
- Fixed seed [\#724](https://github.com/stympy/faker/issues/724)
|
1779
|
-
- Company logo ,company buzzword, Date is not working rails 4 [\#718](https://github.com/stympy/faker/issues/718)
|
1780
|
-
- Image issue [\#704](https://github.com/stympy/faker/issues/704)
|
1781
|
-
- Faker::Hacker.say\_something\_smart [\#691](https://github.com/stympy/faker/issues/691)
|
1782
|
-
- Faker::Commerce.promotion\_code Missing Translation [\#689](https://github.com/stympy/faker/issues/689)
|
1783
|
-
- Generating real email addresses [\#685](https://github.com/stympy/faker/issues/685)
|
1784
|
-
- Faker::GameOfThrones.character has too little items [\#658](https://github.com/stympy/faker/issues/658)
|
1785
|
-
- Pokemon class not working [\#645](https://github.com/stympy/faker/issues/645)
|
1786
|
-
- NameError: uninitialized constant Educator [\#572](https://github.com/stympy/faker/issues/572)
|
1787
|
-
- Causing memory error if Faker::Internet.email with integer argument [\#478](https://github.com/stympy/faker/issues/478)
|
1788
|
-
- undefined method `Number' for Faker:Module [\#153](https://github.com/stympy/faker/issues/153)
|
1789
|
-
|
1790
|
-
**Merged pull requests:**
|
1791
|
-
- Refactors code in Faker::Color [\#777](https://github.com/stympy/faker/pull/777) ([tiagofsilva](https://github.com/tiagofsilva))
|
1792
|
-
- Add Faker::TwinPeaks \[fixed\] [\#775](https://github.com/stympy/faker/pull/775) ([pedantic-git](https://github.com/pedantic-git))
|
1793
|
-
- Added wookie\_sentence method documentation to README [\#772](https://github.com/stympy/faker/pull/772) ([toddnestor](https://github.com/toddnestor))
|
1794
|
-
- Refactored finance.rb [\#770](https://github.com/stympy/faker/pull/770) ([Newman101](https://github.com/Newman101))
|
1795
|
-
- ex-MX.yml: city\_prefix and city\_suffix: replace empty list with empty… [\#769](https://github.com/stympy/faker/pull/769) ([PascalSchumacher](https://github.com/PascalSchumacher))
|
1796
|
-
- Correct HSL and HSLA color formatting [\#768](https://github.com/stympy/faker/pull/768) ([mwgalloway](https://github.com/mwgalloway))
|
1797
|
-
- Adds wookie sentence generator [\#766](https://github.com/stympy/faker/pull/766) ([toddnestor](https://github.com/toddnestor))
|
1798
|
-
- Add Faker::Ancient [\#765](https://github.com/stympy/faker/pull/765) ([phoenixweiss](https://github.com/phoenixweiss))
|
1799
|
-
- Added Slovakian unit tests [\#764](https://github.com/stympy/faker/pull/764) ([Newman101](https://github.com/Newman101))
|
1800
|
-
- added bank setup [\#762](https://github.com/stympy/faker/pull/762) ([RasMachineMan](https://github.com/RasMachineMan))
|
1801
|
-
- Added Russian unit tests [\#761](https://github.com/stympy/faker/pull/761) ([Newman101](https://github.com/Newman101))
|
1802
|
-
- Add eSports data [\#760](https://github.com/stympy/faker/pull/760) ([FanaHOVA](https://github.com/FanaHOVA))
|
1803
|
-
- add lorempixel [\#759](https://github.com/stympy/faker/pull/759) ([senid231](https://github.com/senid231))
|
1804
|
-
- Added nb-NO locale unit tests [\#758](https://github.com/stympy/faker/pull/758) ([Newman101](https://github.com/Newman101))
|
1805
|
-
- Added Japanese unit tests [\#757](https://github.com/stympy/faker/pull/757) ([Newman101](https://github.com/Newman101))
|
1806
|
-
- Update educator.rb [\#755](https://github.com/stympy/faker/pull/755) ([huyderman](https://github.com/huyderman))
|
1807
|
-
- Some Turkish Translations \#1 [\#754](https://github.com/stympy/faker/pull/754) ([BatuhanW](https://github.com/BatuhanW))
|
1808
|
-
- Add some german translations ... [\#753](https://github.com/stympy/faker/pull/753) ([Kjarrigan](https://github.com/Kjarrigan))
|
1809
|
-
- Add method for ensuring unique values [\#752](https://github.com/stympy/faker/pull/752) ([jonmast](https://github.com/jonmast))
|
1810
|
-
- Delete unneeded line for Faker::Internet.password [\#751](https://github.com/stympy/faker/pull/751) ([bakunyo](https://github.com/bakunyo))
|
1811
|
-
- Add Mew to Pokemon::Name [\#750](https://github.com/stympy/faker/pull/750) ([kenta-s](https://github.com/kenta-s))
|
1812
|
-
- Update docs to make it clearer what args to Lorem.sentence and Lorem.paragraph do [\#749](https://github.com/stympy/faker/pull/749) ([ulyssesrex](https://github.com/ulyssesrex))
|
1813
|
-
- Add optional https urls [\#747](https://github.com/stympy/faker/pull/747) ([kaiuhl](https://github.com/kaiuhl))
|
1814
|
-
- Creates tests for Address\#zip\_code [\#746](https://github.com/stympy/faker/pull/746) ([tiagofsilva](https://github.com/tiagofsilva))
|
1815
|
-
- Creates Address\#full\_address customizable by locale [\#745](https://github.com/stympy/faker/pull/745) ([tiagofsilva](https://github.com/tiagofsilva))
|
1816
|
-
- Improves readability of Hipster\#resolve. [\#743](https://github.com/stympy/faker/pull/743) ([tiagofsilva](https://github.com/tiagofsilva))
|
1817
|
-
- Use Random::DEFAULT instead of Random.new.rand / SecureRandom [\#740](https://github.com/stympy/faker/pull/740) ([smangelsdorf](https://github.com/smangelsdorf))
|
1818
|
-
- Added Korean unit tests [\#739](https://github.com/stympy/faker/pull/739) ([Newman101](https://github.com/Newman101))
|
1819
|
-
- it.yml: name.suffix: replace list with empty string, to make it consi… [\#736](https://github.com/stympy/faker/pull/736) ([PascalSchumacher](https://github.com/PascalSchumacher))
|
1820
|
-
- fix german university name generation [\#734](https://github.com/stympy/faker/pull/734) ([PascalSchumacher](https://github.com/PascalSchumacher))
|
1821
|
-
- fr.yml: remove 13 after lille [\#733](https://github.com/stympy/faker/pull/733) ([PascalSchumacher](https://github.com/PascalSchumacher))
|
1822
|
-
- Add Normal \(Gaussian\) distribution to Faker::Number [\#731](https://github.com/stympy/faker/pull/731) ([rabidaudio](https://github.com/rabidaudio))
|
1823
|
-
- added indonesian locale [\#730](https://github.com/stympy/faker/pull/730) ([bprayudha](https://github.com/bprayudha))
|
1824
|
-
- Added dragons to the Game of Throne universe. [\#729](https://github.com/stympy/faker/pull/729) ([archbloom](https://github.com/archbloom))
|
1825
|
-
- Tweak es-MX locale data for addresses [\#727](https://github.com/stympy/faker/pull/727) ([joiggama](https://github.com/joiggama))
|
1826
|
-
- Add Game of Thrones quotes [\#726](https://github.com/stympy/faker/pull/726) ([rajivrnair](https://github.com/rajivrnair))
|
1827
|
-
- adds Faker::Artist.name [\#725](https://github.com/stympy/faker/pull/725) ([forresty](https://github.com/forresty))
|
1828
|
-
- Resolve warnings during tests [\#722](https://github.com/stympy/faker/pull/722) ([andy-j](https://github.com/andy-j))
|
1829
|
-
- Add chords to music [\#721](https://github.com/stympy/faker/pull/721) ([andy-j](https://github.com/andy-j))
|
1830
|
-
- Add major and minor keys to music [\#720](https://github.com/stympy/faker/pull/720) ([andy-j](https://github.com/andy-j))
|
1831
|
-
- Fixed the inaccurate swedish organization number generator [\#715](https://github.com/stympy/faker/pull/715) ([hex0cter](https://github.com/hex0cter))
|
1832
|
-
- Fix typos in brazilian portuguese countries translations [\#713](https://github.com/stympy/faker/pull/713) ([Yaakushi](https://github.com/Yaakushi))
|
1833
|
-
- Fix typo in 'Secondary' [\#712](https://github.com/stympy/faker/pull/712) ([edtjones](https://github.com/edtjones))
|
1834
|
-
- Changed quotes in food.rb [\#710](https://github.com/stympy/faker/pull/710) ([Newman101](https://github.com/Newman101))
|
1835
|
-
- Added type checks to PL unit test [\#709](https://github.com/stympy/faker/pull/709) ([Newman101](https://github.com/Newman101))
|
1836
|
-
- Fix Faker::Educator "secondary" spelling [\#708](https://github.com/stympy/faker/pull/708) ([gadtfly](https://github.com/gadtfly))
|
1837
|
-
- adds meteorite to Faker::Space [\#702](https://github.com/stympy/faker/pull/702) ([kfrz](https://github.com/kfrz))
|
1838
|
-
- fixed typo in secondary\_school [\#701](https://github.com/stympy/faker/pull/701) ([garyharan](https://github.com/garyharan))
|
1839
|
-
- Improve Address.postcode example to reflect actual output [\#700](https://github.com/stympy/faker/pull/700) ([goulvench](https://github.com/goulvench))
|
1840
|
-
- Fixed invalid name in pl.yml [\#694](https://github.com/stympy/faker/pull/694) ([Yobilat](https://github.com/Yobilat))
|
1841
|
-
- Fixed failing build [\#683](https://github.com/stympy/faker/pull/683) ([Newman101](https://github.com/Newman101))
|
1842
|
-
- added south african locales [\#682](https://github.com/stympy/faker/pull/682) ([Letladi](https://github.com/Letladi))
|
1843
|
-
- Add Food link for readme [\#681](https://github.com/stympy/faker/pull/681) ([martymclaugh](https://github.com/martymclaugh))
|
1844
|
-
- Add updated en-nz locale data [\#680](https://github.com/stympy/faker/pull/680) ([geordidearns](https://github.com/geordidearns))
|
1845
|
-
- Fixed typo in dutch translation [\#679](https://github.com/stympy/faker/pull/679) ([nschmoller](https://github.com/nschmoller))
|
1846
|
-
- Add pokemon [\#677](https://github.com/stympy/faker/pull/677) ([bakunyo](https://github.com/bakunyo))
|
1847
|
-
- Food [\#672](https://github.com/stympy/faker/pull/672) ([martymclaugh](https://github.com/martymclaugh))
|
1848
|
-
- Added charcaters and houses data for game of thrones in en.yml [\#670](https://github.com/stympy/faker/pull/670) ([vamsipavanmahesh](https://github.com/vamsipavanmahesh))
|
1849
|
-
- add Faker::Commerce.promotion\_code [\#669](https://github.com/stympy/faker/pull/669) ([jGRUBBS](https://github.com/jGRUBBS))
|
1850
|
-
- Eliminate and prevent leading and trailing white space [\#665](https://github.com/stympy/faker/pull/665) ([retroGiant89](https://github.com/retroGiant89))
|
1851
|
-
- Fix for memory overflow error Issue: \#478 [\#664](https://github.com/stympy/faker/pull/664) ([anuj-verma](https://github.com/anuj-verma))
|
1852
|
-
- Added unit tests to es-MX locale [\#661](https://github.com/stympy/faker/pull/661) ([Newman101](https://github.com/Newman101))
|
1853
|
-
- Added default country test to en-AU locale [\#656](https://github.com/stympy/faker/pull/656) ([Newman101](https://github.com/Newman101))
|
1854
|
-
- Fixed incorrect locale configuration [\#655](https://github.com/stympy/faker/pull/655) ([Newman101](https://github.com/Newman101))
|
1855
|
-
- Add support for dutch university names [\#654](https://github.com/stympy/faker/pull/654) ([nysthee](https://github.com/nysthee))
|
1856
|
-
- Added default country check to en-PAK unit tests [\#652](https://github.com/stympy/faker/pull/652) ([Newman101](https://github.com/Newman101))
|
1857
|
-
- Added even method to Luhn algorithm [\#650](https://github.com/stympy/faker/pull/650) ([Newman101](https://github.com/Newman101))
|
1858
|
-
- Add more names to pt-BR [\#649](https://github.com/stympy/faker/pull/649) ([haggen](https://github.com/haggen))
|
1859
|
-
- Add Nigerian locale to locales [\#647](https://github.com/stympy/faker/pull/647) ([oluosiname](https://github.com/oluosiname))
|
1860
|
-
- Refactor Luhn Checksum [\#619](https://github.com/stympy/faker/pull/619) ([Newman101](https://github.com/Newman101))
|
1861
|
-
- Added en-SG unit tests [\#618](https://github.com/stympy/faker/pull/618) ([Newman101](https://github.com/Newman101))
|
1862
|
-
- Improved de-AT unit tests [\#614](https://github.com/stympy/faker/pull/614) ([Newman101](https://github.com/Newman101))
|
1863
|
-
- Changed quotes in color.rb [\#606](https://github.com/stympy/faker/pull/606) ([Newman101](https://github.com/Newman101))
|
1864
|
-
|
1865
|
-
## [v1.6.6](https://github.com/stympy/faker/tree/v1.6.6) (2016-07-25)
|
1866
|
-
[Full Changelog](https://github.com/stympy/faker/compare/v1.6.5...v1.6.6)
|
1867
|
-
|
1868
|
-
**Closed issues:**
|
1869
|
-
|
1870
|
-
- Faker::Vehicle.vin gives undefined method `match' [\#638](https://github.com/stympy/faker/issues/638)
|
1871
|
-
- Faker::Date.backward\(14\) [\#632](https://github.com/stympy/faker/issues/632)
|
1872
|
-
- Shouldn't we capitalize the result of `Faker::Hacker.say\_something\_smart`? [\#623](https://github.com/stympy/faker/issues/623)
|
1873
|
-
|
1874
|
-
**Merged pull requests:**
|
1875
|
-
|
1876
|
-
- Fixed Faker::Vehicle.vin Fixnum issue \#638 [\#639](https://github.com/stympy/faker/pull/639) ([amoludage](https://github.com/amoludage))
|
1877
|
-
- fix readme link for fakerpokemon [\#637](https://github.com/stympy/faker/pull/637) ([shinwang1](https://github.com/shinwang1))
|
1878
|
-
- Making pull request to add Pokemon names and locations to stumpy/faker [\#636](https://github.com/stympy/faker/pull/636) ([shinwang1](https://github.com/shinwang1))
|
1879
|
-
- Added shorthand for self-assignment on date.rb [\#635](https://github.com/stympy/faker/pull/635) ([Newman101](https://github.com/Newman101))
|
1880
|
-
- Fixed a method call in date.rb [\#633](https://github.com/stympy/faker/pull/633) ([Newman101](https://github.com/Newman101))
|
1881
|
-
- Add Game of Thrones faker [\#629](https://github.com/stympy/faker/pull/629) ([duduribeiro](https://github.com/duduribeiro))
|
1882
|
-
- Add German translations for Commerce [\#626](https://github.com/stympy/faker/pull/626) ([laurens](https://github.com/laurens))
|
1883
|
-
- Solved Issue \#623 [\#625](https://github.com/stympy/faker/pull/625) ([Newman101](https://github.com/Newman101))
|
1884
|
-
|
1885
|
-
## v1.6.5 (2016-07-08)
|
1886
|
-
* Removed Faker::ChuckNorris.name
|
1887
|
-
|
1888
|
-
## v1.6.4 (2016-07-06)
|
1889
|
-
* Removed support for Ruby 1.9.3
|
1890
|
-
* Added Faker::ChuckNorris, Faker::Crypto, Faker::Educator, Faker::File, Faker::Music, Faker::Space, Faker::Vehicle, and Faker::Yoda
|
1891
|
-
* Fixed bug with credit card types
|
1892
|
-
* DST fixes in Faker::Time
|
1893
|
-
* Added Faker::Name.name_with_middle
|
1894
|
-
* Added Faker::Code.imei
|
1895
|
-
* Added Faker::Code.asin
|
1896
|
-
* Added Faker::Lorem.question and Faker::Lorem.questions
|
1897
|
-
* Added Faker::Internet.private_ip_v4_address
|
1898
|
-
* Added Faker::Company.australian_business_number
|
1899
|
-
* Other miscellaneous fixes and locale updates
|
1900
|
-
|
1901
|
-
## v1.6.3 (2016-02-23)
|
1902
|
-
* Fix for UTF problem in Ruby 1.9.3
|
1903
|
-
* Fix for Faker::StarWars.character
|
1904
|
-
* Updated sv locale
|
1905
|
-
|
1906
|
-
## v1.6.2 (2016-02-20)
|
1907
|
-
* Fix for locale-switching (Russian email addresses)
|
1908
|
-
* Added Faker::Beer, Faker::Boolean, Faker::Cat, Faker::StarWars, and Faker::Superhero
|
1909
|
-
* Added Faker::Color.color_name
|
1910
|
-
* Added Faker::Date.between_except
|
1911
|
-
* Fixed Faker::Internet.ip_v4_cidr and Faker::Internet.ip_v6_cidr
|
1912
|
-
* Added locales: ca, ca-CAT, da-DK, fi-FI, and pt
|
1913
|
-
|
1914
|
-
## v1.6.1 (2015-11-23)
|
1915
|
-
* Fix for locale issues in tests
|
1916
|
-
|
1917
|
-
## v1.6.0 (2015-11-23)
|
1918
|
-
* Lots of bug fixes -- most notably, a fix for email addresses and domains in non-en locales
|
1919
|
-
* Updated locales: de, en-AU, en-NZ, en-SG, en-US, en-au-ocker, en, es, fr, he, it, ja, nb-NO, pl, pt-BR, sk, and zh-CN
|
1920
|
-
* Updated classes: Address, Avatar, Book, Code, Commerce, Company, Hipster, IDNumber, Internet, Number, Placeholdit, Shakespeare, and Time
|
1921
|
-
|
1922
|
-
## v1.5.0 (2015-08-17)
|
1923
|
-
* Added logos
|
1924
|
-
* Added Slack Emoji
|
1925
|
-
* Updated image generators
|
1926
|
-
* Updated Dutch Locale
|
1927
|
-
* Added support for generating RGB values, HSL colors, alpha channel, and HSLA colors
|
1928
|
-
* Added locale for Uganda
|
1929
|
-
* Added basic Ukrainian support
|
1930
|
-
* Added university name generator
|
1931
|
-
* Updated documentation
|
1932
|
-
* Updated a variety of locales
|
1933
|
-
* Various fixes
|
1934
|
-
|
1935
|
-
## v1.4.3 (2014-08-15)
|
1936
|
-
* Updated Russian locale
|
1937
|
-
* Added EIN generator
|
1938
|
-
* Fixed Swedish locale
|
1939
|
-
* Added birthday to Faker::Date
|
1940
|
-
* Added Faker::App
|
1941
|
-
|
1942
|
-
## v1.4.2 (2014-07-15)
|
1943
|
-
* Added Swedish locale
|
1944
|
-
* README update
|
1945
|
-
|
1946
|
-
## v1.4.1 (2014-07-04)
|
1947
|
-
* Bugfix and cleanup
|
1948
|
-
|
1949
|
-
## v1.4.0 (2014-07-03)
|
1950
|
-
* Many enhancements and bugfixes
|
1951
|
-
|
1952
|
-
## v1.3.0 (2014-03-08)
|
1953
|
-
* Many enhancements and few bugfixes
|
1954
|
-
|
1955
|
-
## v1.2.0 (2013-07-27)
|
1956
|
-
* Many major and minor enhancements :)
|
1957
|
-
|
1958
|
-
## v1.1.2 (2012-09-18)
|
1959
|
-
* 1 minor change:
|
1960
|
-
* Fixed Ruby 1.8 compatibility
|
1961
|
-
|
1962
|
-
## v1.1.1 (2012-09-17)
|
1963
|
-
* 1 minor change:
|
1964
|
-
* Removed ja locale because of parse errors
|
1965
|
-
|
1966
|
-
## v1.1.0 (2012-09-15)
|
1967
|
-
* 1 major change:
|
1968
|
-
* Removed deprecated methods from Address: earth_country, us_state, us_state_abbr, uk_postcode, uk_county
|
1969
|
-
* Many minor changes (please see github pull requests for credits)
|
1970
|
-
* Added many localizations
|
1971
|
-
* Added range and array support for Lorem
|
1972
|
-
|
1973
|
-
## v1.0.1 (2011-09-27)
|
1974
|
-
* 1 minor enhancement
|
1975
|
-
* Added safe_email method to get someaddress@example.com [Kazimierz Kiełkowicz]
|
1976
|
-
* 1 bug fix:
|
1977
|
-
* Use the locale fallback properly when parsing string formats
|
1978
|
-
|
1979
|
-
## v1.0.0 (2011-09-08)
|
1980
|
-
* 2 major enhancements
|
1981
|
-
* Moved all formats to locale files
|
1982
|
-
* Stopped interfering with I18n's global settings for fallbacks
|
1983
|
-
* 3 minor bug fixes:
|
1984
|
-
* Ruby 1.9.2 fixes [eMxyzptlk]
|
1985
|
-
* UTF8 fixes [maxmiliano]
|
1986
|
-
* Updated IPv4 generator to return valid addresses [Sylvain Desbureaux]
|
1987
|
-
* Many minor enhancements:
|
1988
|
-
* Added bork locale for bork-ified lorem [johnbentcope]
|
1989
|
-
* Added IPv6 address generator [jc00ke]
|
1990
|
-
* Removed deprecation warnings for Array#rand [chrismarshall]
|
1991
|
-
* Added German translation and I18n improvments [Matthias Kühnert]
|
1992
|
-
* Added Dutch translation [moretea]
|
1993
|
-
* Added Lat/Long generator [Andy Callaghan]
|
1994
|
-
* Added buzzword-laden title generator [supercleanse]
|
1995
|
-
* Added optional extended wordlist for lorem [chriskottom]
|
1996
|
-
* Updated German translation [Jan Schwenzien]
|
1997
|
-
* Locale improvements [suweller]
|
1998
|
-
* Added limit to lorem generator [darrenterhune]
|
1999
|
-
* Added Brazilian Portuguese translation [maxmiliano]
|
2000
|
-
* Added Australian translation [madeindata]
|
2001
|
-
* Added Canadian translation [igbanam]
|
2002
|
-
* Added Norwegian translation [kytrinyx]
|
2003
|
-
* Lots of translation-related cleanup [kytrinyx]
|
2004
|
-
|
2005
|
-
|
2006
|
-
## v0.9.5 (2011-01-27)
|
2007
|
-
* 1 minor bug fix:
|
2008
|
-
* Fixed YAML [Aaron Patterson]
|
2009
|
-
* 3 minor enhancements:
|
2010
|
-
* Added default rake task to run all tests [Aaron Patterson]
|
2011
|
-
* Removed shuffle method [Aaron Patterson]
|
2012
|
-
* Use psych if present [Aaron Patterson]
|
2013
|
-
|
2014
|
-
## v0.9.4 (2010-12-29)
|
2015
|
-
* 1 minor bug fix:
|
2016
|
-
* Stopped getting in the way of Rails' late locale loading
|
2017
|
-
|
2018
|
-
## v0.9.3 (2010-12-28)
|
2019
|
-
* 1 minor enhancement:
|
2020
|
-
* Added a faker namespace for translations
|
2021
|
-
|
2022
|
-
## v0.9.2 (2010-12-22)
|
2023
|
-
* 1 bug fix:
|
2024
|
-
* Stopped stomping on I18n load path
|
2025
|
-
|
2026
|
-
## v0.9.1 (2010-12-22)
|
2027
|
-
* 1 bug fix:
|
2028
|
-
* Stopped setting I18n default locale
|
2029
|
-
* 1 major enhancement:
|
2030
|
-
* Added method_missing to Address to add methods based on data in locale files
|
2031
|
-
* 1 minor enhancement:
|
2032
|
-
* Added Swiss locale [Lukas Westermann]
|
2033
|
-
|
2034
|
-
## v0.9.0 (2010-12-21)
|
2035
|
-
* 1 major enhancement:
|
2036
|
-
* Moved strings and some formats to locale files
|
2037
|
-
|
2038
|
-
## v0.3.1 (2008-04-03)
|
2039
|
-
* 1 minor enhancement:
|
2040
|
-
* Added city to Address
|
2041
|
-
|
2042
|
-
## v0.3.0 (2008-01-01)
|
2043
|
-
* 3 major enhancements:
|
2044
|
-
* Added Lorem to generate fake Latin
|
2045
|
-
* Added secondary_address to Address, and made inclusion of
|
2046
|
-
secondary address in street_address optional (false by
|
2047
|
-
default).
|
2048
|
-
* Added UK address methods [Caius Durling]
|
2049
|
-
|
2050
|
-
## v0.2.1 (2007-12-05)
|
2051
|
-
* 1 major enhancement:
|
2052
|
-
* Dropped facets to avoid conflict with ActiveSupport
|
2053
|
-
* 2 minor enhancements:
|
2054
|
-
* Changed the output of user_name to randomly separate with a . or _
|
2055
|
-
* Added a few tests
|
2056
|
-
|
2057
|
-
## v0.1.0 (2007-11-22)
|
2058
|
-
|
2059
|
-
* 1 major enhancement:
|
2060
|
-
* Initial release
|
2061
|
-
|
2062
|
-
|
2063
|
-
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
|