Class: EacLauncher::Paths::Logical

Inherits:
Object
  • Object
show all
Includes:
EacRubyUtils::SimpleCache
Defined in:
lib/eac_launcher/paths/logical.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(context, parent_path, real, logical) ⇒ Logical

Returns a new instance of Logical.



20
21
22
23
24
25
# File 'lib/eac_launcher/paths/logical.rb', line 20

def initialize(context, parent_path, real, logical)
  @context = context
  @parent_path = parent_path
  @real = ::EacLauncher::Paths::Real.new(real)
  @logical = logical
end

Instance Attribute Details

#contextObject (readonly)

Returns the value of attribute context.



18
19
20
# File 'lib/eac_launcher/paths/logical.rb', line 18

def context
  @context
end

#logicalObject (readonly)

Returns the value of attribute logical.



18
19
20
# File 'lib/eac_launcher/paths/logical.rb', line 18

def logical
  @logical
end

#parent_pathObject (readonly)

Returns the value of attribute parent_path.



18
19
20
# File 'lib/eac_launcher/paths/logical.rb', line 18

def parent_path
  @parent_path
end

#realObject (readonly)

Returns the value of attribute real.



18
19
20
# File 'lib/eac_launcher/paths/logical.rb', line 18

def real
  @real
end

Class Method Details

.from_h(context, hash) ⇒ Object



12
13
14
15
# File 'lib/eac_launcher/paths/logical.rb', line 12

def from_h(context, hash)
  parent_path = hash[:parent_path] ? from_h(context, hash[:parent_path]) : nil
  new(context, parent_path, hash[:real], hash[:logical])
end

Instance Method Details

#childrenObject



39
40
41
42
43
44
45
46
47
48
49
# File 'lib/eac_launcher/paths/logical.rb', line 39

def children
  r = []
  Dir.entries(warped).each do |c|
    c_path = ::File.join(warped, c)
    next unless ::File.directory?(c_path)
    next if c.start_with?('.')

    r << build_child(c)
  end
  r
end

#included?Boolean

Returns:

  • (Boolean)


51
52
53
# File 'lib/eac_launcher/paths/logical.rb', line 51

def included?
  !context.settings.excluded_paths.include?(logical)
end

#project?Boolean

Returns:

  • (Boolean)


35
36
37
# File 'lib/eac_launcher/paths/logical.rb', line 35

def project?
  stereotypes.any?
end

#to_hObject



31
32
33
# File 'lib/eac_launcher/paths/logical.rb', line 31

def to_h
  { logical: logical, real: real.to_s, parent_path: parent_path ? parent_path.to_h : nil }
end

#to_sObject



27
28
29
# File 'lib/eac_launcher/paths/logical.rb', line 27

def to_s
  logical
end