class Faker::Emotion

Public Class Methods

adjective() click to toggle source

Produces an emotion adjective.

@return [String]

@example

Faker::Emotion.adjective # => "nonplussed"

@faker.version next

# File lib/faker/default/emotion.rb, line 28
def adjective
  fetch('emotion.adjective')
end
noun() click to toggle source

Produces an emotion noun.

@return [String]

@example

Faker::Emotion.noun #=> "amazement"

@faker.version next

# File lib/faker/default/emotion.rb, line 15
def noun
  fetch('emotion.noun')
end