module Pod

Public Class Methods

all_framework_static() click to toggle source
# File lib/cocoapods-force-static-framework/command/framework.rb, line 9
def self.all_framework_static
  @@all_static
end
static_framework_names() click to toggle source
# File lib/cocoapods-force-static-framework/command/framework.rb, line 19
def self.static_framework_names
  @@static_frameworks
end
store_all_framework_static(bool) click to toggle source
# 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) click to toggle source
# File lib/cocoapods-force-static-framework/command/framework.rb, line 15
def self.store_static_framework_names(names)
  @@static_frameworks = names
end