Method: Configer::Cache.object
- Defined in:
- lib/configer/cache.rb
.object ⇒ Object
5 6 7 8 9 10 11 12 13 14 15 |
# File 'lib/configer/cache.rb', line 5 def object @dir ||= Configer.pwd if @dir == Configer.pwd return @cache ||= Object.parse(Configer.mount_all) else @dir = Configer.pwd return @cache = Object.parse(Configer.mount_all) end end |