class Motion::Project::App

Public Class Methods

build(platform, opts = {})
Also aliased as: build_without_cocoapods
build_with_cocoapods(platform, opts = {}) click to toggle source
# File lib/motion/project/monkeypatches.rb, line 39
def build_with_cocoapods(platform, opts = {})
  unless File.exist?(Motion::Pods::PODS_ROOT)
    $stderr.puts(
      "[!] No CocoaPods dependencies found in " \
      "#{Motion::Pods::PODS_ROOT}, run the " \
      "`[bundle exec] rake pod:install` task."
    )
    exit 1
  end
  build_without_cocoapods(platform, opts)
end
Also aliased as: build
build_without_cocoapods(platform, opts = {})
Alias for: build