Module: Pod
- Defined in:
- lib/cocoapods-force-static-framework/command/framework.rb,
lib/cocoapods-force-static-framework/command/framework.rb
Defined Under Namespace
Classes: Podfile, Specification
Constant Summary
collapse
- @@all_static =
false
- @@static_frameworks =
[]
Class Method Summary
collapse
Class Method Details
.all_framework_static ⇒ Object
9
10
11
|
# File 'lib/cocoapods-force-static-framework/command/framework.rb', line 9
def self.all_framework_static
@@all_static
end
|
.static_framework_names ⇒ Object
19
20
21
|
# File 'lib/cocoapods-force-static-framework/command/framework.rb', line 19
def self.static_framework_names
@@static_frameworks
end
|
.store_all_framework_static(bool) ⇒ Object
5
6
7
|
# File 'lib/cocoapods-force-static-framework/command/framework.rb', line 5
def self.store_all_framework_static(bool)
@@all_static = bool
end
|
.store_static_framework_names(names) ⇒ Object
15
16
17
|
# File 'lib/cocoapods-force-static-framework/command/framework.rb', line 15
def self.store_static_framework_names(names)
@@static_frameworks = names
end
|