mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-03-30 17:43:26 +08:00
10 lines
302 B
Ruby
10 lines
302 B
Ruby
$:.unshift("../../lib")
|
|
require 'motion/project/template/ios'
|
|
# require 'motion/project/template/osx'
|
|
|
|
Motion::Project::App.setup do |app|
|
|
# Use `rake config' to see complete project settings.
|
|
app.name = 'TestTime'
|
|
app.deployment_target = ENV['deployment_target'] if ENV['deployment_target']
|
|
end
|