mirror of
https://github.com/zhigang1992/rmq.git
synced 2026-01-12 09:33:43 +08:00
23 lines
639 B
Ruby
Executable File
23 lines
639 B
Ruby
Executable File
# -*- coding: utf-8 -*-
|
|
$:.unshift("/Library/RubyMotion/lib")
|
|
require 'motion/project/template/ios'
|
|
require "bundler/gem_tasks"
|
|
require "bundler/setup"
|
|
Bundler.require
|
|
|
|
Motion::Project::App.setup do |app|
|
|
#app.sdk_version = '8.1'
|
|
#app.deployment_target = '7.1'
|
|
|
|
app.name = 'rmq'
|
|
app.identifier = 'com.infinitered.rmq'
|
|
app.device_family = [:iphone, :ipad]
|
|
app.prerendered_icon = true
|
|
app.interface_orientations = [:portrait, :landscape_left, :landscape_right, :portrait_upside_down]
|
|
app.frameworks += %w(QuartzCore CoreGraphics)
|
|
|
|
app.development do
|
|
app.info_plist["ProjectRootPath"] = File.dirname(__FILE__)
|
|
end
|
|
end
|