Class: Motion::Project::App

Inherits:
Object
  • Object
show all
Defined in:
lib/motion-objc.rb

Class Method Summary collapse

Class Method Details

.setup_with_motion_objcObject Also known as: setup



16
17
18
19
20
21
22
23
24
25
# File 'lib/motion-objc.rb', line 16

def setup_with_motion_objc
  setup_without_motion_objc do |app|
    yield app

    if app.objc_files && app.objc_files != []
      generator = LibGenerator.new(app.objc_files)
      generator.vendor(app)
    end
  end
end