Sha256: 8f06bdec06017c16eaee4b2e322af463a40778a238f10f21441ac153f9a5db1f
Contents?: true
Size: 595 Bytes
Versions: 25
Compression:
Stored size: 595 Bytes
Contents
unless defined?(Motion::Project::Config) raise "The sugarcube gem must be required within a RubyMotion project Rakefile." end require 'sugarcube' 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__), SugarCube.platform, 'sugarcube-constants/**/*.rb')).reverse.each do |file| app.files.insert(insert_point, file) end end
Version data entries
25 entries across 25 versions & 1 rubygems