mirror of
https://github.com/zhigang1992/RubyMotion-PixateFreestyle.git
synced 2026-01-12 17:52:19 +08:00
18 lines
410 B
Ruby
18 lines
410 B
Ruby
# -*- coding: utf-8 -*-
|
|
$:.unshift("/Library/RubyMotion/lib")
|
|
require 'motion/project/template/ios'
|
|
require 'rubygems'
|
|
require 'motion-pixatefreestyle'
|
|
|
|
begin
|
|
require 'bundler'
|
|
Bundler.require
|
|
rescue LoadError
|
|
end
|
|
|
|
Motion::Project::App.setup do |app|
|
|
# Use `rake config' to see complete project settings.
|
|
app.name = 'HelloWorld'
|
|
app.pixatefreestyle.framework = 'vendor/PixateFreestyle.framework'
|
|
end
|