mirror of
https://github.com/zhigang1992/rmq.git
synced 2026-01-12 22:51:53 +08:00
16 lines
440 B
Ruby
Executable File
16 lines
440 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.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]
|
|
end
|
|
|