class Pod::LocalSpec

Public Class Methods

import_local_pod(path) { || ... } click to toggle source
# File lib/helper/podfile.rb, line 8
def self.import_local_pod(path)
  @@local_spec_importing = true
  @@local_spec_path = path
  yield if block_given?
  @@local_spec_path = nil
  @@local_spec_importing = false
end
local_spec_importing?() click to toggle source
# File lib/helper/podfile.rb, line 15
def self.local_spec_importing?
  @@local_spec_importing
end
local_spec_path() click to toggle source
# File lib/helper/podfile.rb, line 18
def self.local_spec_path
  @@local_spec_path
end