Sha256: 27de1e28df08f9bf760e383192a763070fd978100be7e972a8022a8fabecf63d
Contents?: true
Size: 600 Bytes
Versions: 29
Compression:
Stored size: 600 Bytes
Contents
unless defined?(Motion::Project::Config) raise "The sugarcube gem must be required within a RubyMotion project Rakefile." end require 'sugarcube' SugarCube.ios_only!('568') Motion::Project::App.setup do |app| # scans app.files until it finds app/ (the default) # if found, it inserts just before those files, otherwise it will insert to # the end of the list insert_point = app.files.find_index { |file| file =~ /^(?:\.\/)?app\// } || 0 Dir.glob(File.join(File.dirname(__FILE__), 'ios/sugarcube-568/**/*.rb')).reverse.each do |file| app.files.insert(insert_point, file) end end
Version data entries
29 entries across 29 versions & 1 rubygems