class BigKeeper::PodOperator

Public Class Methods

pod_install(path) click to toggle source
# File lib/big_keeper/util/pod_operator.rb, line 5
def self.pod_install(path)
  Logger.highlight('Start pod install, waiting...')

  # pod install
  `pod repo update`
  `pod install --project-directory=#{path}`

  Logger.highlight('Finish pod install.')
end