Rakefile 472 B

12345678910111213141516
  1. # -*- coding: utf-8 -*-
  2. $:.unshift("/Library/RubyMotion/lib")
  3. require 'motion/project/template/ios'
  4. begin
  5. require 'bundler'
  6. Bundler.require
  7. rescue LoadError
  8. end
  9. Motion::Project::App.setup do |app|
  10. # Use `rake config' to see complete project settings.
  11. app.name = 'RealmRubyMotionSimpleExample'
  12. app.external_frameworks << '../../../../build/ios-static/Realm.framework'
  13. app.vendor_project 'models', :static, :cflags => '-F ../../../../../build/ios-static/'
  14. end