Class: HMap::PodsSpecification

Inherits:
Object
  • Object
show all
Defined in:
lib/hmap/pods_specification.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initializePodsSpecification

Returns a new instance of PodsSpecification.



17
18
19
20
21
# File 'lib/hmap/pods_specification.rb', line 17

def initialize
  @workspace_path = workspace
  @analyze = pod_analyze
  workspace_build_dir
end

Instance Attribute Details

#analyzeObject (readonly)

Returns the value of attribute analyze.



5
6
7
# File 'lib/hmap/pods_specification.rb', line 5

def analyze
  @analyze
end

#app_build_dirObject (readonly)

Returns the value of attribute app_build_dir.



5
6
7
# File 'lib/hmap/pods_specification.rb', line 5

def app_build_dir
  @app_build_dir
end

#project_temp_dirObject (readonly)

Returns the value of attribute project_temp_dir.



5
6
7
# File 'lib/hmap/pods_specification.rb', line 5

def project_temp_dir
  @project_temp_dir
end

#workspace_pathObject (readonly)

Returns the value of attribute workspace_path.



5
6
7
# File 'lib/hmap/pods_specification.rb', line 5

def workspace_path
  @workspace_path
end

Class Method Details

.instanceObject



13
14
15
# File 'lib/hmap/pods_specification.rb', line 13

def self.instance
  @instance ||= new
end