Class: Faker::Adjective

Inherits:
Base
  • Object
show all
Defined in:
lib/faker/default/adjective.rb

Constant Summary

Constants inherited from Base

Base::LLetters, Base::Letters, Base::NOT_GIVEN, Base::Numbers, Base::ULetters

Class Method Summary collapse

Methods inherited from Base

bothify, disable_enforce_available_locales, fetch, fetch_all, flexible, generate, letterify, method_missing, numerify, parse, rand, rand_in_range, regexify, resolve, respond_to_missing?, sample, shuffle, translate, unique, with_locale

Class Method Details

.negativeString

Produces a negative adjective.

Examples:

Faker::Adjective.negative #=> "Creepy"

Returns:

  • (String)

Available since:

  • next



30
31
32
# File 'lib/faker/default/adjective.rb', line 30

def negative
  fetch('adjective.negative')
end

.positiveString

Produces a positive adjective.

Examples:

Faker::Adjective.positive #=> "Kind"

Returns:

  • (String)

Available since:

  • next



17
18
19
# File 'lib/faker/default/adjective.rb', line 17

def positive
  fetch('adjective.positive')
end