Class: Faker::Cosmere
Constant Summary
Constants inherited from Base
Base::LLetters, Base::Letters, Base::NOT_GIVEN, Base::Numbers, Base::ULetters
Class Method Summary collapse
-
.allomancer ⇒ String
Produces a random allomancer.
-
.aon ⇒ String
Produces a random aon.
-
.feruchemist ⇒ String
Produces a random feruchemist.
-
.herald ⇒ String
Produces a random herald.
-
.knight_radiant ⇒ String
Produces a random knight radiant.
-
.metal ⇒ String
Produces a random metal.
-
.shard ⇒ String
Produces a random shard.
-
.shard_world ⇒ String
Produces a random shard world.
-
.spren ⇒ String
Produces a random spren.
-
.surge ⇒ String
Produces a random surge.
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, shuffle!, translate, unique, with_locale
Class Method Details
.allomancer ⇒ String
Produces a random allomancer.
94 95 96 |
# File 'lib/faker/default/cosmere.rb', line 94 def allomancer sample(allomancers) end |
.aon ⇒ String
Produces a random aon.
16 17 18 |
# File 'lib/faker/default/cosmere.rb', line 16 def aon sample(aons) end |
.feruchemist ⇒ String
Produces a random feruchemist.
107 108 109 |
# File 'lib/faker/default/cosmere.rb', line 107 def feruchemist sample(feruchemists) end |
.herald ⇒ String
Produces a random herald.
120 121 122 |
# File 'lib/faker/default/cosmere.rb', line 120 def herald sample(heralds) end |
.knight_radiant ⇒ String
Produces a random knight radiant.
68 69 70 |
# File 'lib/faker/default/cosmere.rb', line 68 def knight_radiant sample(knights_radiant) end |
.metal ⇒ String
Produces a random metal.
81 82 83 |
# File 'lib/faker/default/cosmere.rb', line 81 def sample() end |
.shard ⇒ String
Produces a random shard.
42 43 44 |
# File 'lib/faker/default/cosmere.rb', line 42 def shard sample(shards) end |
.shard_world ⇒ String
Produces a random shard world.
29 30 31 |
# File 'lib/faker/default/cosmere.rb', line 29 def shard_world sample(shard_worlds) end |
.spren ⇒ String
Produces a random spren.
133 134 135 |
# File 'lib/faker/default/cosmere.rb', line 133 def spren sample(sprens) end |
.surge ⇒ String
Produces a random surge.
55 56 57 |
# File 'lib/faker/default/cosmere.rb', line 55 def surge sample(surges) end |