mirror of
https://github.com/zhigang1992/redpotion.git
synced 2026-01-12 09:24:35 +08:00
27 lines
597 B
Ruby
27 lines
597 B
Ruby
# -*- coding: utf-8 -*-
|
|
$:.unshift("/Library/RubyMotion/lib")
|
|
|
|
require "motion/project/template/ios"
|
|
require "bundler/gem_tasks"
|
|
require "bundler/setup"
|
|
require "motion_print"
|
|
require "webstub"
|
|
|
|
Bundler.require
|
|
|
|
Motion::Project::App.setup do |app|
|
|
# Use `rake config' to see complete project settings.
|
|
app.identifier = "com.infinitered.redpotion"
|
|
app.name = "RedPotion"
|
|
|
|
app.interface_orientations = [:portrait, :landscape_left, :landscape_right, :portrait_upside_down]
|
|
|
|
app.pods do
|
|
pod "JMImageCache"
|
|
end
|
|
|
|
app.development do
|
|
end
|
|
end
|
|
task :"build:simulator" => :"schema:build"
|