class Pod::Freezer::FrozenPod

Attributes

pod_name[R]
String
product_name[R]
String

Public Class Methods

new(pod_name, product_name) click to toggle source
# File lib/cocoapods-freezer/freezer.rb, line 201
def initialize(pod_name, product_name)
  raise "Params error" unless pod_name.length > 0 && product_name.length > 0
  @pod_name = pod_name
  @product_name = product_name
end