Class: ExampleCacheLoader

Inherits:
Object
  • Object
show all
Defined in:
lib/examples.rb,
lib/examples.rb

Instance Method Summary collapse

Instance Method Details

#closeObject



67
68
69
# File 'lib/examples.rb', line 67

def close
  puts 'CacheLoader is closing'
end

#load(helper) ⇒ Object



63
64
65
66
# File 'lib/examples.rb', line 63

def load(helper)
  puts 'Loading ' + YAML::load(helper.getKey).to_s 
  'V' + YAML::load(helper.getKey).to_s
end