lib/sugarcube-gestures.rb in sugarcube-1.7.0 vs lib/sugarcube-gestures.rb in sugarcube-2.0.0
- old
+ new
@@ -1,15 +1,18 @@
unless defined?(Motion::Project::Config)
raise "The sugarcube gem must be required within a RubyMotion project Rakefile."
end
+require 'sugarcube'
+SugarCube.ios_only!('gestures')
+
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-gestures/**/*.rb')).reverse.each do |file|
+ Dir.glob(File.join(File.dirname(__FILE__), 'ios/sugarcube-gestures/**/*.rb')).reverse.each do |file|
app.files.insert(insert_point, file)
end
end