Class: HMap::PodsSpecification

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

Constant Summary collapse

BUILD_DIR =
'BUILD_DIR'
PROJECT_TEMP_DIR =
'PROJECT_TEMP_DIR'

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initializePodsSpecification

Returns a new instance of PodsSpecification.



12
13
14
15
16
# File 'lib/cocoapods-hmap/pods_specification.rb', line 12

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

Instance Attribute Details

#analyzeObject (readonly)

Returns the value of attribute analyze.



3
4
5
# File 'lib/cocoapods-hmap/pods_specification.rb', line 3

def analyze
  @analyze
end

#app_build_dirObject (readonly)

Returns the value of attribute app_build_dir.



3
4
5
# File 'lib/cocoapods-hmap/pods_specification.rb', line 3

def app_build_dir
  @app_build_dir
end

#project_temp_dirObject (readonly)

Returns the value of attribute project_temp_dir.



3
4
5
# File 'lib/cocoapods-hmap/pods_specification.rb', line 3

def project_temp_dir
  @project_temp_dir
end

#workspace_pathObject (readonly)

Returns the value of attribute workspace_path.



3
4
5
# File 'lib/cocoapods-hmap/pods_specification.rb', line 3

def workspace_path
  @workspace_path
end

Class Method Details

.instanceObject



8
9
10
# File 'lib/cocoapods-hmap/pods_specification.rb', line 8

def self.instance
  @instance ||= new
end