Class: Faker::Boolean
Constant Summary
Constants inherited from Base
Faker::Base::LLetters, Faker::Base::Letters, Faker::Base::NOT_GIVEN, Faker::Base::Numbers, Faker::Base::ULetters
Class Method Summary collapse
-
.boolean(legacy_true_ratio = NOT_GIVEN, true_ratio: 0.5) ⇒ Boolean
Produces a boolean.
Methods inherited from Base
bothify, disable_enforce_available_locales, fetch, fetch_all, flexible, letterify, method_missing, numerify, parse, rand, rand_in_range, regexify, resolve, respond_to_missing?, sample, shuffle, translate, unique, with_locale
Class Method Details
.boolean(legacy_true_ratio = NOT_GIVEN, true_ratio: 0.5) ⇒ Boolean
Produces a boolean
18 19 20 21 22 23 |
# File 'lib/faker/default/boolean.rb', line 18 def boolean(legacy_true_ratio = NOT_GIVEN, true_ratio: 0.5) warn_for_deprecated_arguments do |keywords| keywords << :true_ratio if legacy_true_ratio != NOT_GIVEN end (rand < true_ratio) end |