Class: HMap::PodsSpecification
- Inherits:
-
Object
- Object
- HMap::PodsSpecification
- 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
-
#analyze ⇒ Object
readonly
Returns the value of attribute analyze.
-
#app_build_dir ⇒ Object
readonly
Returns the value of attribute app_build_dir.
-
#project_temp_dir ⇒ Object
readonly
Returns the value of attribute project_temp_dir.
-
#workspace_path ⇒ Object
readonly
Returns the value of attribute workspace_path.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize ⇒ PodsSpecification
constructor
A new instance of PodsSpecification.
Constructor Details
#initialize ⇒ PodsSpecification
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
#analyze ⇒ Object (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_dir ⇒ Object (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_dir ⇒ Object (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_path ⇒ Object (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
.instance ⇒ Object
8 9 10 |
# File 'lib/cocoapods-hmap/pods_specification.rb', line 8 def self.instance @instance ||= new end |