lib/sugarcube.rb in sugarcube-0.20.25 vs lib/sugarcube.rb in sugarcube-1.0.0
- old
+ new
@@ -5,19 +5,14 @@
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
+ insert_point = app.files.find_index { |file| file =~ /^(?:\.\/)?app\// } || 0
Dir.glob(File.join(File.dirname(__FILE__), 'sugarcube/**/*.rb')).reverse.each do |file|
app.files.insert(insert_point, file)
end
end
+
+require File.join(File.dirname(__FILE__), "sugarcube-coregraphics.rb")
+require File.join(File.dirname(__FILE__), "sugarcube-to_s.rb")