Method: IdStore#load
- Defined in:
- lib/ea_support/id_store.rb
#load ⇒ Object
18 19 20 21 22 23 24 |
# File 'lib/ea_support/id_store.rb', line 18 def load if @idsFileName && File.exist?(@idsFileName) @idHash = YAML.load_file(@idsFileName) || {} else @idHash = {} end end |