module RpgNaming

Constants

VERSION

Public Class Methods

names() click to toggle source
# File lib/rpg_naming.rb, line 40
def self.names
  @names ||= YAML.load_file(File.expand_path(File.join('../..', 'config', 'names.yml'), __FILE__))
end
range(min = 1, max = nil) click to toggle source
# File lib/rpg_naming.rb, line 32
def self.range(min = 1, max = nil)
  Base.new(min, max)
end