Method: FFaker::Game#title

Defined in:
lib/ffaker/game.rb

#titleObject



8
9
10
11
12
13
# File 'lib/ffaker/game.rb', line 8

def title
  case rand(0..1)
  when 0 then simple_title
  when 1 then title_with_prefix
  end
end