mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-04-09 09:40:15 +08:00
134 lines
4.5 KiB
Ruby
134 lines
4.5 KiB
Ruby
# encoding: utf-8
|
|
|
|
# Copyright (c) 2012, HipByte SPRL and contributors
|
|
# All rights reserved.
|
|
#
|
|
# Redistribution and use in source and binary forms, with or without
|
|
# modification, are permitted provided that the following conditions are met:
|
|
#
|
|
# 1. Redistributions of source code must retain the above copyright notice, this
|
|
# list of conditions and the following disclaimer.
|
|
# 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
# this list of conditions and the following disclaimer in the documentation
|
|
# and/or other materials provided with the distribution.
|
|
#
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
|
# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
require 'motion/project/app'
|
|
|
|
App = Motion::Project::App
|
|
App.template = :osx
|
|
|
|
require 'motion/project'
|
|
require 'motion/project/template/osx/config'
|
|
require 'motion/project/template/osx/builder'
|
|
|
|
desc "Build the project, then run it"
|
|
task :default => :run
|
|
|
|
namespace :build do
|
|
desc "Build the project for development"
|
|
task :development do
|
|
App.build('MacOSX')
|
|
App.codesign('MacOSX') if App.config_without_setup.codesign_for_development
|
|
end
|
|
|
|
desc "Build the project for release"
|
|
task :release do
|
|
App.config_without_setup.build_mode = :release
|
|
App.build('MacOSX')
|
|
App.codesign('MacOSX') if App.config_without_setup.codesign_for_release
|
|
end
|
|
end
|
|
|
|
desc "Build everything"
|
|
task :build => ['build:development', 'build:release']
|
|
|
|
desc "Run the project"
|
|
task :run do
|
|
unless ENV["skip_build"]
|
|
Rake::Task["build:development"].invoke
|
|
end
|
|
exec = App.config.app_bundle_executable('MacOSX')
|
|
env = ''
|
|
env << 'SIM_SPEC_MODE=1 ' if App.config.spec_mode
|
|
if App.config.needs_repl_sandbox_entitlements?
|
|
env << "REPL_SOCKET_PATH='#{App.config.app_sandbox_repl_socket_path}' "
|
|
end
|
|
sim = File.join(App.config.bindir, 'osx/sim')
|
|
debug = (ENV['debug'] ? 1 : (App.config.spec_mode ? '0' : '2'))
|
|
target = App.config.sdk_version
|
|
app_args = (ENV['args'] or '')
|
|
App.info 'Run', exec
|
|
at_exit { system("stty echo") } if $stdout.tty? # Just in case the process crashes and leaves the terminal without echo.
|
|
Signal.trap(:INT) { } if ENV['debug']
|
|
system "#{env} #{sim} #{debug} #{target} \"#{exec}\" #{app_args}"
|
|
App.config.print_crash_message if $?.exitstatus != 0 && !App.config.spec_mode
|
|
exit($?.exitstatus)
|
|
end
|
|
|
|
desc "Run the test/spec suite"
|
|
task :spec do
|
|
App.config_without_setup.spec_mode = true
|
|
Rake::Task["run"].invoke
|
|
end
|
|
|
|
desc "Create a .pkg archive"
|
|
task :archive => 'build:release' do
|
|
App.archive
|
|
end
|
|
|
|
namespace :archive do
|
|
desc "Create a .pkg archive for distribution (AppStore)"
|
|
task :distribution do
|
|
App.config_without_setup.distribution_mode = true
|
|
Rake::Task['archive'].invoke
|
|
end
|
|
end
|
|
|
|
desc "Create a .a static library"
|
|
task :static do
|
|
App.build('MacOSX', :static => true)
|
|
end
|
|
|
|
OSX_INSTRUMENTS_TEMPLATES = [
|
|
'Allocations', 'Leaks', 'Zombies',
|
|
'GC Monitor', 'Activity Monitor', 'Time Profiler', 'Multicore',
|
|
'Dispatch', 'System Trace', 'Event Profiler', 'Counters',
|
|
'File Activity', 'Core Data', 'UI Recorder', 'Sudden Termination',
|
|
'Cocoa Layout'
|
|
]
|
|
|
|
namespace :profile do
|
|
%w{ development release }.each do |mode|
|
|
desc "Run a #{mode} build through Instruments"
|
|
task mode => "build:#{mode}" do
|
|
plist = App.config.profiler_config_plist('MacOSX', "-NSDocumentRevisionsDebugMode YES #{ENV['args']}", ENV['template'], OSX_INSTRUMENTS_TEMPLATES)
|
|
App.profile('MacOSX', plist)
|
|
end
|
|
end
|
|
|
|
desc 'List all built-in OS X Instruments templates'
|
|
task :templates do
|
|
puts "Built-in OS X Instruments templates:"
|
|
OSX_INSTRUMENTS_TEMPLATES.each do |template|
|
|
puts "* #{template}"
|
|
end
|
|
end
|
|
end
|
|
|
|
desc 'Same as profile:development'
|
|
task :profile => 'profile:development'
|
|
|
|
desc "Open the latest crash report generated for the app"
|
|
task :crashlog => :__local_crashlog
|