class Faker::JapaneseMedia::StudioGhibli

Public Class Methods

character() click to toggle source

Produces a character from the Studio Ghibli.

@return [String]

@example

Faker::JapaneseMedia::StudioGhibli.character #=> "Chihiro"

@faker.version next

# File lib/faker/japanese_media/studio_ghibli.rb, line 16
def character
  fetch('studio_ghibli.characters')
end
movie() click to toggle source

Produces a movie from Studio Ghibli.

@return [String]

@example

Faker::JapaneseMedia::StudioGhibli.movie #=> "Kiki's Delivery Service"

@faker.version next

# File lib/faker/japanese_media/studio_ghibli.rb, line 42
def movie
  fetch('studio_ghibli.movies')
end
quote() click to toggle source

Produces a quote from Studio Ghibli’s movies.

@return [String]

@example

Faker::JapaneseMedia::StudioGhibli.quote #=> "One thing you can always count on is that hearts change."

@faker.version next

# File lib/faker/japanese_media/studio_ghibli.rb, line 29
def quote
  fetch('studio_ghibli.quotes')
end