module Neri::Ayame

Public Instance Methods

new(filename) click to toggle source
Calls superclass method
# File lib/neri/ayame.rb, line 7
def new(filename)
  if Neri.exist_in_datafile?(filename)
    ayame = load_from_memory(Neri.file_read(path))
    return ayame
  else
    return super
  end
end