sxross/MotionModel

View on GitHub
Rakefile

Summary

Maintainability
Test Coverage
# -*- coding: utf-8 -*-
require "bundler/gem_tasks"
$:.unshift("/Library/RubyMotion/lib")
require 'motion/project/template/ios'
require 'bundler'
Bundler.require

$:.unshift(File.expand_path('../lib', __FILE__))
require 'motion_model'

Motion::Project::App.setup do |app|
  # Use `rake config' to see complete project settings.
  app.name = 'MotionModel'
  app.delegate_class = 'FakeDelegate'
  app.sdk_version = "8.1"
  app.deployment_target = "8.1"
  app.files = (app.files + Dir.glob('./app/**/*.rb')).uniq
end