Sha256: 4683f6f1b2577d30ec5cee863ba3b9aebeb1533f8c63cd293b35a026374a03fa
Contents?: true
Size: 669 Bytes
Versions: 98
Compression:
Stored size: 669 Bytes
Contents
unless defined?(Motion::Project::Config) raise "The sugarcube gem must be required within a RubyMotion project Rakefile." end 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 = 0 app.files.each_index do |index| file = app.files[index] if file =~ /^(?:\.\/)?app\// # found app/, so stop looking break end insert_point = index + 1 end Dir.glob(File.join(File.dirname(__FILE__), 'sugarcube/**/*.rb')).reverse.each do |file| app.files.insert(insert_point, file) end end
Version data entries
98 entries across 98 versions & 1 rubygems