Class: Project

Inherits:
Object
  • Object
show all
Defined in:
ext/ae-dir-projects/ae-dir-projects.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(_dir) ⇒ Project

Returns a new instance of Project.



17
18
19
20
21
# File 'ext/ae-dir-projects/ae-dir-projects.rb', line 17

def initialize(_dir)
  @dir = _dir
  @loaded = false
  @cache_dirs = Array.new
end

Instance Attribute Details

#cache_dirsObject (readonly)

Returns the value of attribute cache_dirs.



16
17
18
# File 'ext/ae-dir-projects/ae-dir-projects.rb', line 16

def cache_dirs
  @cache_dirs
end

#dirObject

Returns the value of attribute dir.



14
15
16
# File 'ext/ae-dir-projects/ae-dir-projects.rb', line 14

def dir
  @dir
end

#loadedObject

Returns the value of attribute loaded.



15
16
17
# File 'ext/ae-dir-projects/ae-dir-projects.rb', line 15

def loaded
  @loaded
end