Sha256: 93f760ae464d84103fee9a31e6056fb348e840c30f7f12a3ac2ddc8f0f70422c
Contents?: true
Size: 686 Bytes
Versions: 41
Compression:
Stored size: 686 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-attributedstring/**/*.rb')).reverse.each do |file| app.files.insert(insert_point, file) end end
Version data entries
41 entries across 41 versions & 1 rubygems
Version | Path |
---|---|
sugarcube-0.18.6 | lib/sugarcube-attributedstring.rb |