Class: Faker::Mountain

Inherits:
Base
  • Object
show all
Defined in:
lib/faker/default/mountain.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

.nameString

Produces a name of a mountain

@faker.version next

Examples:

Faker::Mountain.name #=> "Mount Everest"

Returns:

  • (String)


15
16
17
# File 'lib/faker/default/mountain.rb', line 15

def name
  fetch('mountain.name')
end

.rangeString

Produces a name of a range

Examples:

Faker::Mountain.range #=> "Dhaulagiri Himalaya"

Returns:

  • (String)

Available since:

  • next



28
29
30
# File 'lib/faker/default/mountain.rb', line 28

def range
  fetch('mountain.range')
end