Class: Pod::Podfile
- Inherits:
-
Object
show all
- Defined in:
- lib/cocoapods-cafswitcher/podfile_switch.rb
Defined Under Namespace
Modules: DSL
Classes: TargetDefinition
Constant Summary
collapse
- @@sourceList =
[]
- @@unspecifiedList =
[]
- @@frameworkList =
[]
- @@debugPackageList =
Array.new
- @@releasePackageList =
Array.new
- @@allPodName =
[]
- @@gitPathList =
[]
Class Method Summary
collapse
Class Method Details
.allPodName ⇒ Object
64
65
66
|
# File 'lib/cocoapods-cafswitcher/podfile_switch.rb', line 64
def self.allPodName
@@allPodName
end
|
.debugPackageList ⇒ Object
51
52
53
|
# File 'lib/cocoapods-cafswitcher/podfile_switch.rb', line 51
def Podfile.debugPackageList
@@debugPackageList
end
|
.frameworkList ⇒ Object
45
46
47
|
# File 'lib/cocoapods-cafswitcher/podfile_switch.rb', line 45
def self.frameworkList
@@frameworkList
end
|
.gitPathList ⇒ Object
70
71
72
|
# File 'lib/cocoapods-cafswitcher/podfile_switch.rb', line 70
def self.gitPathList
@@gitPathList
end
|
.isDebugPackage ⇒ Object
21
22
23
|
# File 'lib/cocoapods-cafswitcher/podfile_switch.rb', line 21
def self.isDebugPackage
:isDebugPackage
end
|
.isFramework ⇒ Object
15
16
17
|
# File 'lib/cocoapods-cafswitcher/podfile_switch.rb', line 15
def self.isFramework
:isFramework
end
|
.isReleasePackage ⇒ Object
add flag :isReleasePackage
27
28
29
|
# File 'lib/cocoapods-cafswitcher/podfile_switch.rb', line 27
def self.isReleasePackage
:isReleasePackage
end
|
.isSource ⇒ Object
add flag :isSource => true
9
10
11
|
# File 'lib/cocoapods-cafswitcher/podfile_switch.rb', line 9
def self.isSource
:isSource
end
|
.releasePackageList ⇒ Object
57
58
59
|
# File 'lib/cocoapods-cafswitcher/podfile_switch.rb', line 57
def Podfile.releasePackageList
@@releasePackageList
end
|
.sourceList ⇒ Object
33
34
35
|
# File 'lib/cocoapods-cafswitcher/podfile_switch.rb', line 33
def self.sourceList
@@sourceList
end
|
.unspecifiedList ⇒ Object
39
40
41
|
# File 'lib/cocoapods-cafswitcher/podfile_switch.rb', line 39
def self.unspecifiedList
@@unspecifiedList
end
|