mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-04-21 19:43:03 +08:00
17 lines
368 B
Plaintext
17 lines
368 B
Plaintext
# -*- coding: utf-8 -*-
|
|
$:.unshift("/Library/RubyMotion/lib")
|
|
require 'motion/project/template/ios'
|
|
require './lib/<%= name %>'
|
|
|
|
begin
|
|
require 'bundler'
|
|
require 'motion/project/template/gem/gem_tasks'
|
|
Bundler.require
|
|
rescue LoadError
|
|
end
|
|
|
|
Motion::Project::App.setup do |app|
|
|
# Use `rake config' to see complete project settings.
|
|
app.name = '<%= name %>'
|
|
end
|