Rakefile in ProMotion-0.0.2 vs Rakefile in ProMotion-0.1.0

- old
+ new

@@ -1,5 +1,20 @@ $:.unshift("/Library/RubyMotion/lib") require 'motion/project' require 'bundler/gem_tasks' Bundler.setup Bundler.require +require 'motion-table' + +Motion::Project::App.setup do |app| + # Use `rake config' to see complete project settings. + app.name = 'ProMotionTest' + app.version = "0.1.0" + + + # Devices + app.deployment_target = "4.3" + app.device_family = [:iphone, :ipad] + + # Preload screens + # app.files = Dir.glob(File.join(app.project_dir, 'lib/**/*.rb')) | app.files +end