Sha256: f6495631cdadf035439fa5db579769366143e2a4a75b8c87f6c2557ea6df8c70
Contents?: true
Size: 552 Bytes
Versions: 43
Compression:
Stored size: 552 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 = app.files.find_index { |file| file =~ /^(?:\.\/)?app\// } || 0 Dir.glob(File.join(File.dirname(__FILE__), 'sugarcube-awesome/**/*.rb')).reverse.each do |file| app.files.insert(insert_point, file) end end
Version data entries
43 entries across 43 versions & 1 rubygems